diff --git a/aalot b/aalot new file mode 100755 index 0000000..0458ad0 --- /dev/null +++ b/aalot @@ -0,0 +1,5 @@ +#!/bin/sh + +cd /home/users/nico/p/foreign/alot +export PYTHONPATH=$(pwd -P) +python2 ./bin/alot diff --git a/add-new-package b/add-new-package new file mode 100644 index 0000000..b8c4fcc --- /dev/null +++ b/add-new-package @@ -0,0 +1,3 @@ +/root/scripts/add-links "$1" +/root/scripts/rekursivperms "$1" +chown -R .util "$1" diff --git a/add.wddb-to-fsdb b/add.wddb-to-fsdb new file mode 100755 index 0000000..ce8a5f5 --- /dev/null +++ b/add.wddb-to-fsdb @@ -0,0 +1,80 @@ +BASEDIR=/home/server/www/org/wddb/www/ +tmp=/tmp/wddb-$$ + +function report() +{ + # sender + UFLINE + + # return path + RPLINE + + # we + RECIPIENT + + # delivered to.. + DTLINE + # set +} + +function init() +{ + cat > $tmp + + +} + +# continent +continent=`grep "^continent" "$1" | sed 's/.*="\(.*\)"/\1/'` + +case "$continent" in + africa|asia|australia|europe|northamerica|southamerica) ;; + *) report "Allowed continents: africa|asia|australia|europe|northamerica|southamerica" ;; +esac + +# other vars +essid=`grep "^essid" "$1" | sed 's/.*="\(.*\)"/\1/'` + +# remove possible dots +country=`grep "^country" "$1" | sed 's/.*="\(.*\)"/\1/' | sed 's/\.\.//g'` +area=`grep "^area" "$1" | sed 's/.*="\(.*\)"/\1/' | sed 's/\//-/g' | sed 's/ //c'` +mac=`grep "^mac" "$1" | sed 's/.*="\(.*\)"/\1/'` +rate=`grep "^rate" "$1" | sed 's/.*="\(.*\)"/\1/'` +wep=`grep "^wep" "$1" | sed 's/.*="\(.*\)"/\1/'` +hints=`grep "^hints" "$1" | sed 's/.*="\(.*\)"/\1/'` +location=`grep "^location" "$1" | sed 's/.*="\(.*\)"/\1/'` + +# check for empty fields +for a in essid country area mac rate wep hints location; do + eval tmp="\$$a" + if [ -z "$tmp" ]; then + report "Empty field: $a" + fi +done + +if [ ! -f $BASEDIR/$continent/$country/$area.html ]; then + cat << EOF > "$1" + + + wddb.org - WarDriver's DataBase + + + + + +else + lines=`cat "$BASEDIR/$continent/$country/$area.html" | wc |awk '{ print $1 }'` + use_lines=$[$lines-7] + head -n $use_lines "$BASEDIR/$continent/$country/$area.html" > "$1" + +fi + +cat << EOF >> "$1" + +
+ << One step back +

Submit new network or changes + + + +EOF diff --git a/add_usb_storage b/add_usb_storage new file mode 100644 index 0000000..4f64f02 --- /dev/null +++ b/add_usb_storage @@ -0,0 +1,3 @@ +modprobe usb-storage +modprobe ohci-hcd +modprobe sd_mod diff --git a/archive_mails.sh b/archive_mails.sh new file mode 100755 index 0000000..d15db7f --- /dev/null +++ b/archive_mails.sh @@ -0,0 +1,15 @@ +#!/bin/sh +# Nico Schottelius +# clean current mailbox, so imap connections are faster + +set -e + +maildir="$HOME/Maildir" +curdir="$maildir/cur" +date=$(date +%Y-%m-%d) +archiv="$HOME/mail-archiv" +ddir="${archiv}/${date}/" + +mkdir -p "$ddir" + +find "$curdir" -type f -exec mv {} "$ddir" \; diff --git a/archlinux-all-depending-packages.sh b/archlinux-all-depending-packages.sh new file mode 100755 index 0000000..b5725f0 --- /dev/null +++ b/archlinux-all-depending-packages.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +if [ "$#" -ne 1 ]; then + echo "$0 package" >&2 + exit 1 +fi + +deps=$(pacman -Qi "$1" | awk -F: '/Depends On/ { print $2 }') + +echo $1 -- $deps + +alldeps="" + +for dep in $deps; do + [ "$dep" = "None" ] && continue + + pkg=$(echo $dep | sed 's/>=.*//') + alldeps="$alldeps $("$0" "$pkg")" +done + +echo "$alldeps" diff --git a/attach b/attach new file mode 100755 index 0000000..3f101b2 --- /dev/null +++ b/attach @@ -0,0 +1,153 @@ +#!/usr/bin/perl -wT +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html + +# Set library paths in @INC, at compile time +BEGIN { unshift @INC, '.'; require 'setlib.cfg'; } + +use CGI::Carp qw( fatalsToBrowser ); +use CGI; +use TWiki; + +use strict; + +#open(STDERR,'>&STDOUT'); # redirect error to browser +$| = 1; # no buffering + +&main(); + + +# ========================= +sub listVersions +{ + my( $web, $topic, $attachment ) = @_; + + my $latestRev = TWiki::Store::getRevisionNumber( $web, $topic, $attachment ); + $latestRev =~ /\.(.*)/; + my $maxRevNum = $1; + + my $found = 0; + + my $result = "\n| *Version:* | *Action:* | *Date:* | *Who:* | *Comment:* |\n"; + + for( my $version = $maxRevNum; $version >= 1; $version-- ) { + + my $rev = "1.$version"; + + my( $date, $userName, $dummy, $comment ) = + TWiki::Store::getRevisionInfo( $web, $topic, $rev, "TWiki date", $attachment ); + my $wikiUserName = &TWiki::userToWikiName( $userName ); + + my $viewAction = "view"; + $result .= "| 1.$version | $viewAction | $date | $wikiUserName | $comment |\n"; + } + + $result = "$result"; + return $result; +} + + +# ========================= +sub main +{ + my $query = new CGI; + my $thePathInfo = $query->path_info(); + my $theRemoteUser = $query->remote_user(); + my $theTopic = $query->param( 'topic' ); + my $theUrl = $query->url; + + my( $topic, $webName, $dummy, $userName ) = + &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query ); + $dummy = ""; # to suppress warning + + my $tmpl = ""; + my $text = ""; + my $meta = ""; + my $atext = ""; + my $fileName = ""; + my $fileUser = ""; + my $wikiUserName = &TWiki::userToWikiName( $userName ); + + my $isHideChecked = ""; + + if( ! &TWiki::Store::webExists( $webName ) ) { + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsnoweb" ); + TWiki::redirect( $query, $url ); + return; + } + + my( $mirrorSiteName, $mirrorViewURL ) = &TWiki::readOnlyMirrorWeb( $webName ); + if( $mirrorSiteName ) { + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsmirror", $mirrorSiteName, $mirrorViewURL ); + TWiki::redirect( $query, $url ); + return; + } + + # check access permission + if( ! &TWiki::Access::checkAccessPermission( "change", $wikiUserName, "", $topic, $webName ) ) { + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsaccesschange" ); + TWiki::redirect( $query, $url ); + return; + } + + $fileName = $query->param( 'filename' ) || ""; + + if( &TWiki::Store::topicExists( $webName, $topic ) ) { + ( $meta, $text ) = &TWiki::Store::readTopic( $webName, $topic ); + } + + my %args = $meta->findOne( "FILEATTACHMENT", $fileName ); + %args = ( "attr" => "", "path" => "", "comment" => "" ) if( ! % args ); + + if ( $args{"attr"} =~ /h/o ) { + $isHideChecked = "checked"; + } + + if ( $fileName ) { + $atext = listVersions( $webName, $topic, $fileName ); + } + + # why log attach before post is called? + # FIXME: Move down, log only if successful (or with error msg?) + # Attach is a read function, only has potential for a change + if( $TWiki::doLogTopicAttach ) { + # write log entry + &TWiki::Store::writeLog( "attach", "$webName.$topic", $fileName ); + } + + my $fileWikiUser = ""; + my $skin = $query->param( "skin" ) || TWiki::Prefs::getPreferencesValue( "SKIN" ); + if( $fileName && %args ) { + $tmpl = TWiki::Store::readTemplate( "attachagain", $skin ); + $fileWikiUser = &TWiki::userToWikiName( $args{"user"} ); + } else { + $tmpl = TWiki::Store::readTemplate( "attachnew", $skin ); + } + $tmpl =~ s/%ATTACHTABLE%/$atext/go; + $tmpl =~ s/%FILEUSER%/$fileWikiUser/go; + $tmpl = &TWiki::handleCommonTags( $tmpl, $topic ); + $tmpl = &TWiki::getRenderedVersion( $tmpl ); + $tmpl = &TWiki::handleMetaTags( $webName, $topic, $tmpl, $meta ); + $tmpl =~ s/%HIDEFILE%/$isHideChecked/go; + $tmpl =~ s/%FILENAME%/$fileName/go; + $tmpl =~ s/%FILEPATH%/$args{"path"}/go; + $tmpl =~ s/%FILECOMMENT%/$args{"comment"}/go; + TWiki::writeHeader( $query ); + print $tmpl; +} + +# EOF diff --git a/backup.to.eiche b/backup.to.eiche new file mode 100755 index 0000000..145dcf3 --- /dev/null +++ b/backup.to.eiche @@ -0,0 +1,10 @@ +HOST=eiche +DESTDIR=/mnt/datennirvana/backup/bruehe +EXCLUDE_FILE=/root/.backup-exclude + +#time rsync -e ssh -av --exclude-from=/root/.backup-exclude / 192.168.23.33:/mnt/backup/bruehe + +time rsync -e ssh -av --exclude-from=$EXCLUDE_FILE / "$HOST":"$DESTDIR" + +#echo "Shutting down $HOST..." +#ssh $HOST "shutdown -h now" diff --git a/backup_to_eiche.nfs b/backup_to_eiche.nfs new file mode 100644 index 0000000..28f747d --- /dev/null +++ b/backup_to_eiche.nfs @@ -0,0 +1,18 @@ +NEWROOT=/mnt/eiche +DATA_DIRS="bin boot etc home lib opt root sbin tmp usr var" +SCRIPTS="/root/scripts/to_eiche" + +# display how long we backup +date +for script in $SCRIPTS; do + $script +done + +# create empty dirs +mkdir -p $NEWROOT/dev $NEWROOT/proc $NEWROOT/mnt +for a in /mnt/*; do mkdir -p $NEWROOT/$a; done + +cd / +tar cf - $DATA_DIRS | ( cd $NEWROOT; tar xf - ) + +date diff --git a/bootstrap b/bootstrap new file mode 100644 index 0000000..85970db --- /dev/null +++ b/bootstrap @@ -0,0 +1,4 @@ +#!/bin/sh + +mkdir ~/p/ +mr checkout diff --git a/change.old.new b/change.old.new new file mode 100755 index 0000000..8c73c52 --- /dev/null +++ b/change.old.new @@ -0,0 +1,9 @@ +#!/bin/sh +OLD='\[ Nico at Schottelius dot org \]' +NEM='\[ info: use finger @schottelius.org ]' + +if [ ! -d "$1" ]; then + cat "$1" | sed "s/$OLD/$NEW/g" + #> $1.tmp + #mv $1.tmp $1 +fi diff --git a/clear-link-dirs b/clear-link-dirs new file mode 100644 index 0000000..87c630c --- /dev/null +++ b/clear-link-dirs @@ -0,0 +1,29 @@ + +check_file() +{ + if [ ! -h "$1" ]; then + echo "$1" is not a link\! Please FIXME\! + if [ ! -e "$1" ]; then + echo "$1" is broken. removing. + #rm "$1" + fi + fi +} + +for a in /usr/bin/* ; do + check_file "$a" +done + +for a in /usr/lib/* ; do + check_file "$a" +done + +for a in /usr/sbin/*; do + check_file "$a" +done + +for a in /usr/include/*; do + check_file "$a" +done + + diff --git a/console_dvd b/console_dvd new file mode 100644 index 0000000..396bb7f --- /dev/null +++ b/console_dvd @@ -0,0 +1,4 @@ + +~/scripts/enab_fbdev +~/scripts/enab_sound +mplayer -nogui -vo fbdev -dvd 1 /dev/cdroms/cdrom0 "$@" diff --git a/console_vcd b/console_vcd new file mode 100644 index 0000000..c91caaf --- /dev/null +++ b/console_vcd @@ -0,0 +1,4 @@ + +~/scripts/enab_fbdev +~/scripts/enab_sound +mplayer -nogui -vo fbdev -vcd 1 /dev/cdroms/cdrom0 "$@" diff --git a/create-logdir b/create-logdir new file mode 100755 index 0000000..1a06bd9 --- /dev/null +++ b/create-logdir @@ -0,0 +1 @@ + mkdir logs; chown www-data:www-data logs diff --git a/cron/check_pppd b/cron/check_pppd new file mode 100755 index 0000000..6dc4142 --- /dev/null +++ b/cron/check_pppd @@ -0,0 +1,10 @@ +#!/bin/sh + +PID="" +PROG="pppd call dsl-provider" +PID=`ps ax | grep "$PROG" | grep -v grep | awk '{ print $1 }'` + +if [ -z "$PID" ]; then + echo "Starte Internet neu" + pppd call dsl-provider +fi diff --git a/cron/clean-nico-mailbox.sh b/cron/clean-nico-mailbox.sh new file mode 100755 index 0000000..deffbee --- /dev/null +++ b/cron/clean-nico-mailbox.sh @@ -0,0 +1,16 @@ +#!/bin/sh +# Nico Schottelius +# clean current mailbox, so imap connections are faster + +set -e + +maildir="/home/server/mail/schottelius.org/nico/" +curdir="$maildir/cur" +date=$(date +%Y-%m-%d) +archiv="/home/user/nico/mail-archiv" +ddir="${archiv}/${date}/" + +mkdir -p "$ddir" + +find "$curdir" -type f -exec mv {} "$ddir" \; + diff --git a/cron/lighty-rrd-graph.sh b/cron/lighty-rrd-graph.sh new file mode 100755 index 0000000..7d5a292 --- /dev/null +++ b/cron/lighty-rrd-graph.sh @@ -0,0 +1,59 @@ +#!/bin/sh + +RRDTOOL=/usr/bin/rrdtool +OUTDIR=/home/server/www/nico/org/schottelius/home/www/stats +INFILE=/home/server/www/rrd/lighttpd.rrd +OUTPRE=lighttpd-traffic + +DISP="-v bytes --title TrafficWebserver \ + DEF:binraw=$INFILE:InOctets:AVERAGE \ + DEF:binmaxraw=$INFILE:InOctets:MAX \ + DEF:binminraw=$INFILE:InOctets:MIN \ + DEF:bout=$INFILE:OutOctets:AVERAGE \ + DEF:boutmax=$INFILE:OutOctets:MAX \ + DEF:boutmin=$INFILE:OutOctets:MIN \ + CDEF:bin=binraw,-1,* \ + CDEF:binmax=binmaxraw,-1,* \ + CDEF:binmin=binminraw,-1,* \ + CDEF:binminmax=binmax,binmin,- \ + CDEF:boutminmax=boutmax,boutmin,- \ + AREA:binmin#ffffff: \ + STACK:binminmax#f00000: \ + LINE1:binmin#a0a0a0: \ + LINE1:binmax#a0a0a0: \ + LINE2:bin#a0a735:incoming \ + GPRINT:bin:MIN:%.2lf \ + GPRINT:bin:AVERAGE:%.2lf \ + GPRINT:bin:MAX:%.2lf \ + AREA:boutmin#ffffff: \ + STACK:boutminmax#00f000: \ + LINE1:boutmin#a0a0a0: \ + LINE1:boutmax#a0a0a0: \ + LINE2:bout#a0a735:outgoing \ + GPRINT:bout:MIN:%.2lf \ + GPRINT:bout:AVERAGE:%.2lf \ + GPRINT:bout:MAX:%.2lf \ + " + + +$RRDTOOL graph $OUTDIR/$OUTPRE-hour.png -a PNG --start -14400 $DISP +$RRDTOOL graph $OUTDIR/$OUTPRE-day.png -a PNG --start -86400 $DISP +$RRDTOOL graph $OUTDIR/$OUTPRE-month.png -a PNG --start -2592000 $DISP + +OUTPRE=lighttpd-requests + +DISP="-v req --title RequestsperSecond -u 1 \ + DEF:req=$INFILE:Requests:AVERAGE \ + DEF:reqmax=$INFILE:Requests:MAX \ + DEF:reqmin=$INFILE:Requests:MIN \ + CDEF:reqminmax=reqmax,reqmin,- \ + AREA:reqmin#ffffff: \ + STACK:reqminmax#0e0e0e: \ + LINE1:reqmin#a0a0a0: \ + LINE1:reqmax#a0a0a0: \ + LINE2:req#00a735:requests" + + +$RRDTOOL graph $OUTDIR/$OUTPRE-hour.png -a PNG --start -14400 $DISP +$RRDTOOL graph $OUTDIR/$OUTPRE-day.png -a PNG --start -86400 $DISP +$RRDTOOL graph $OUTDIR/$OUTPRE-month.png -a PNG --start -2592000 $DISP diff --git a/cron/ping_pong b/cron/ping_pong new file mode 100755 index 0000000..175469c --- /dev/null +++ b/cron/ping_pong @@ -0,0 +1,12 @@ +#HOSTS="www.spiegel.de www.lernen.de www.isc.org B.ROOT-SERVERS.NET" +HOSTS="www.heise.de www.netcraft.com " + +STATUS=offline + +for myh in $HOSTS; do + ping -c1 $myh >/dev/null 2>&1 && STATUS=online +done + +if [ "$STATUS" = offline ]; then + echo 'Offline.'`date` +fi diff --git a/cron/webalizer.cron b/cron/webalizer.cron new file mode 100755 index 0000000..7eed3af --- /dev/null +++ b/cron/webalizer.cron @@ -0,0 +1,28 @@ +#!/bin/sh +# Date: 27. May 1999 +# Author: Nico Schottelius ( webmaster@schottelius.org ) +# webalizer.cron; do webalizer for every server +# Last Modified: 20. Mai 2003 +# Version : 1.02 + +# Preperations + + # unset / set varibales + SERV="" + WEBALIZER="/usr/bin/nice -n 20 webalizer" + ERR_LOG="/var/log/webalizer.err" + STD_LOG="/var/log/webalizer.log" + +## Startup + echo Starting at : `date` + +# MAIN + for SERV in `find /home/server/www/ -name webalizer.conf`; do + echo "Using $SERV" + LOGDIR=`dirname $SERV`/.. + $WEBALIZER -c $SERV $LOGDIR/access.log* +# $WEBALIZER -c $SERV $LOGDIR/access.log.1 $LOGDIR/access.log* + done + +## Shutdown + echo Stopping at : `date` diff --git a/cron/webalizer.cron-v0.2 b/cron/webalizer.cron-v0.2 new file mode 100644 index 0000000..093c9bc --- /dev/null +++ b/cron/webalizer.cron-v0.2 @@ -0,0 +1,32 @@ +#!/bin/sh +# Date: 27. May 1999 +# Author: Nico Schottelius ( webmaster@schottelius.org ) +# webalizer.cron; do webalizer for every server +# Last Modified: 20. Mai 2003 +# Version : 1.02 + +# Preperations + + # unset / set varibales + SERV="" + WEBALIZER="/usr/bin/nice -n 20 webalizer -c" + ERR_LOG="/var/log/webalizer.err" + STD_LOG="/var/log/webalizer.log" + +## Startup + echo Starting at : `date` + +# MAIN + for SERV in `find /home/server/www/ -name webalizer.conf`; do + echo "Using $SERV" + LOGDIR=`dirname $SERV`/.. + for log in $LOGDIR/access.log $LOGDIR/access.log.1; do + echo "$log ..." + $WEBALIZER $SERV $log + cat $log | $WEBALIZER $SERV + done + zcat $LOGDIR/access*.gz | $WEBALIZER $SERV + done + +## Shutdown + echo Stopping at : `date` diff --git a/cron/webalizer.unix b/cron/webalizer.unix new file mode 100755 index 0000000..58c3fb8 --- /dev/null +++ b/cron/webalizer.unix @@ -0,0 +1,3 @@ +#!/bin/sh +cd /home/server/www/nico/org/schottelius/unix +webalizer -c webalizer/webalizer.conf logs/access.log.1 diff --git a/dcl-ip-converter.py b/dcl-ip-converter.py new file mode 100755 index 0000000..1a213ef --- /dev/null +++ b/dcl-ip-converter.py @@ -0,0 +1,57 @@ +#!/usr/bin/env python3 + +import ipaddress +import sys + +def hexstr2int(string): + return int(string.replace(':', ''), 16) + +FIRST_MAC = hexstr2int('02:00:b3:39:79:4d') +FIRST_V4 = ipaddress.ip_address('185.203.112.2') +FIRST_V6 = "2a0a:e5c0:0:2:400:b3ff:fe39:794d" + +V6_NAT64_BASE = ipaddress.ip_address("2a0a:e5c0:0:1:0:1::") + +def v4_from_mac(mac): + """Calculates the IPv4 address from a MAC address. + + mac: string (the colon-separated representation) + returns: ipaddress.ip_address object with the v4 address + """ + return FIRST_V4 + (hexstr2int(mac) - FIRST_MAC) + +def v4_from_v6(ipv6ip): + """Calculates the IPv4 address from the IPv4 address + + ipv6ip: the ip + returns: ipaddress.ip_address object with the v4 address + """ + + return FIRST_V4 + (hexstr2int(ipv6ip) - (hexstr2int(FIRST_V6))) + +def v6_from_v4(ipv4): + v4addr = ipaddress.ip_address(ipv4) + return V6_NAT64_BASE + int(v4addr) + +if __name__ == "__main__": + addr = sys.argv[1] + out = [] + + try: + out.append(v4_from_v6(addr)) + except: + pass + + try: + out.append(v6_from_v4(addr)) + except: + pass + + + print("{}".format(out)) + +# test.ch +# 2a0a:e5c0:0:1:0:1:504a:8a8c +# 80.74.138.140 +# 1347062412 +# diff --git a/dhcp-abuse b/dhcp-abuse new file mode 100644 index 0000000..cf17ff8 --- /dev/null +++ b/dhcp-abuse @@ -0,0 +1,28 @@ +# virtull devices +vdev=0 +dev=eth0 + + +l6="0" +while [ "$l6" -lt 256 ]; do + l5="0" + while [ "$l5" -lt 256 ]; do + l4="0" + while [ "$l4" -lt 256 ]; do + l3="0" + while [ "$l3" -lt 256 ]; do + l2="0" + while [ "$l2" -lt 256 ]; do + echo ifconfig $dev:$vdev hw ether `printf 00:%x:%x:%x:%x:%x $l2 $l3 $l4 $l5 $l6` + ifconfig $dev:$vdev hw ether `printf 00:%x:%x:%x:%x:%x $l2 $l3 $l4 $l5 $l6` + l2=$[$l2+1] + vdev=$[$vdev+1] + done + l3=$[$l3+1] + done + l4=$[$l4+1] + done + l5=$[$l5+1] + done + l6=$[$l6+1] +done diff --git a/dhw2ps.pl b/dhw2ps.pl new file mode 100755 index 0000000..520b070 --- /dev/null +++ b/dhw2ps.pl @@ -0,0 +1,251 @@ +#!/usr/bin/env perl + +# ------------------------------------------------------------------------- +# file: dhw2ps.pl +# task: convert the internal dwh file format of DigiMemo A501 to +# ps or pdf files +# authors: Jan Theofel (theofel@etes.de) +# Harald Koenig +# version: 0.1 +# license: free to use, an official license will follow +# ------------------------------------------------------------------------- +# TODO: +# - code cleanup +# - code optimisation (the array of chars is very slow) +# - adding a real license +# - add documentation +# ------------------------------------------------------------------------- + +use strict; +use Getopt::Long qw(:config gnu_getopt); + +my $pdfout = ($0 =~ /dhw2pdf/);; +my $debug = 0; +my $verbose = 0; +my $usage = 0; +my $quiet = 0; +my $colorlayers = 0; + +sub usage +{ + print "usage: $0 [params] [dwh file(s)]\n\n"; + print "Where params can be:\n"; + print "-c|--colorlayers color layers\n"; + print "-d|--debug run in debug mode\n"; + print "-h|--help display this usage message\n"; + print "-q|--quiet run in quite mode\n"; + print "-v|--verbose run in verbose mode\n"; + print "--pdf create pdf files (nneds ps2pdf)\n"; + print "--ps create ps files\n"; + exit $_[0]; +} + +GetOptions ( + 'c' => \$colorlayers, 'colorlayers!' => \$colorlayers, + 'd' => \$debug, 'debug!' => \$debug, + 'h' => \$usage, 'help' => \$usage, + 'q' => \$quiet, 'quiet!' => \$quiet, + 'v' => \$verbose, 'verbose!' => \$verbose, + 'pdf!' => \$pdfout, + 'ps!' => sub { $pdfout = 0 }, + ) or usage(1); + +my $inname = shift(); + +usage(0) if ($usage || !$inname); + +if ($pdfout) +{ + my $check_ps2pdf = `which ps2pdf`; + if($check_ps2pdf eq "") + { + die "ERROR: ps2pdf is needed in pdf mode.\n"; + } +} + + +while ($inname) { # loop for all input files + + my ($buffer, $skip, $data); + my ($fileversion, $paperwidth, $paperheight, $paperformat); + my $file_content; + + + + print "INFO: input file: $inname\n" if (!$quiet); + open(IN, "$inname"); + + my $count = 32; + read(IN, $data, $count); + + if($data ne "ACECAD_DIGIMEMO_HANDWRITING_____") { + die "Invalid INK file $inname\n"; + } + +# read rest of input file in 64K junks + while(read(IN, $buffer, 64*1024)) { + $data .= $buffer; + } + close(IN); + + my @data = split(//, $data); + + +# decode header data + + $fileversion = ord($data[$count++]); + + $paperwidth = ord($data[$count+0]) + (ord($data[$count+1]) << 8); + $count += 2; + + $paperheight = ord($data[$count+0]) + (ord($data[$count+1]) << 8); + $count += 2; + + my $pagetype = ord($data[$count++]); + + ord($data[$count++]); # skip header byte + ord($data[$count++]); # skip header byte + + my $paper = ("a5", "a4", "??2", "??3", "??4", "??5", "??6", "??7", "b5", "b4")[$pagetype]; + my $orientation = ("Portrait", "Landscape")[ $paperheight < $paperwidth ]; + + my $llx = 0; # 87 for A4 centering on A4 + my $lly = 0; # 123 for A4 centering on A4 + my $urx = $llx + int($paperwidth / 1000. * 72. + 0.999999); + my $ury = $lly + int($paperheight / 1000. * 72. + 0.999999); + + my $now = gmtime; + + print "DEBUG: ink file version: $fileversion\n" if ($debug); + print "DEBUG: width / height: $paperwidth / $paperheight\n" if ($debug); + print "DEBUG: pagetype: $pagetype ($paper)\n" if ($debug); + + + my $outfile; + + if ($pdfout) { + $outfile = "|ps2pdf -sPAPERSIZE=$paper - $inname"; + $outfile =~ s/\.dhw$//; + $outfile .= ".pdf"; + } else { + $outfile = ">$inname"; + $outfile =~ s/\.dhw$//; + $outfile .= ".ps"; + } + + print "DEBUG: output file: $outfile\n" if ($debug); + open(OUT, "$outfile"); + + + print OUT <> 1) + ($layer * $colorlayers)) & 0x03; + print "DEBUG pen color $color\n" if ($debug); + if ($color != $lastcolor) { + $lastcolor = $color; + print OUT "%%Color: $color\n"; + print OUT ("0 0 0", "1 0 0", "0 1 0", "0 0 1")[$color] . " RGB\n"; + } + } + elsif ($next == 0x88) { # time stamp + my $timestamp = ord($data[$count++]); + print "DEBUG TimeStamp $timestamp\n" if ($debug); + print OUT "%%TimeStamp: $timestamp\n" if ($timestamp < 0x7f); + } + elsif ($next == 0x90) { ## end of layer + $layer = ord($data[$count++]); + print "DEBUG End of LAYER $layer\n" if ($debug); + die("Layer # $layer > 127") if ($layer & 0x80); + print OUT "%%EndOfLayer: $layer\n\n"; + } + elsif (!($next & ~0x7f)) { ## coordinates + my ($b1, $b2, $b3, $b4) = ($next, ord($data[$count+0]), ord($data[$count+1]), ord($data[$count+2])); + $count += 3; + printf "DEBUG CHECK position $count A %02x %02x %02x %02x\n", $b1, $b2, $b3, $b4 if ($debug); + # die("MSB set in coordinate bytes") if (($b1 | $$b2 | $b3 | $b4) & ~0x7f); + + my $x = $b1 + ($b2 << 7); + my $y = $b3 + ($b4 << 7); + print "DEBUG $count: x = $x / y = $y\n" if ($debug); + print OUT "$x $y " . $pointcmd . "\n"; + $points++; + + $pointcmd = "L"; + } else { + die("unknown byte " . sprintf("0x%02x", $next) . " at position $count"); + } + } + + print OUT <. +# +# Export an internal puppet module to an own git repo +# Usage: $0 module desc pseudo-owner +# + +srcdir=/home/users/nico/ethz/vcs/puppet +dstdir=/home/users/nico/p/puppet/ +export module="$1"; shift +export mdir="modules/${module}" + + +mv "${srcdir}/${module}" "${dstdir}" + +( cd "${srcdir} && git rm -r "${mdir}" && git c -m "-- ${mdir}" "${mdir} ) + +# allow display via gitweb +touch "${GIT_DIR}/git-daemon-export-ok" + +# add description +echo "${desc}" > "${GIT_DIR}/description" + +# make sure group rights are kept +cat << eof > "${GIT_DIR}/config" +[core] + filemode = true + bare = true + sharedRepository = group +[gitweb] + owner = "${powner:-"sans"}" +eof + +chgrp sans -R "${GIT_DIR}" +chmod g+rw -R "${GIT_DIR}" diff --git a/firewall-masq b/firewall-masq new file mode 100644 index 0000000..3787bfb --- /dev/null +++ b/firewall-masq @@ -0,0 +1,104 @@ +################################################################################ +# LINUX FIREWALL +# Nico Schottelius +# Dec 2001 +################################################################################ + +########## TEST #### #DEV_OUT="eth1" +DEV_OUT="eth0" +DEV_INT="eth1" +NET_INT="192.168.1.0/255.255.255.0" + +# Das NAT-Modul laden (dies zieht all die andern mit). +modprobe iptable_nat + +# erstmal aufraeumen: +# benutzerdefinierte chains von filter loeschen +iptables -X + +# filter aufraeumen. loescht alle chains +iptables -F + +# auch in nat +iptables -t nat -F + + +################## +# +# NAT/Masquarading +# + +# In der NAT-Tabelle (-t nat) eine Regel fuer alle an ppp0 (-o ppp0) +# ausgehenden Pakete hinter dem Routing (POSTROUTING), die maskiert +# werden sollen, anhaengen (-A). +iptables -t nat -A POSTROUTING -o $DEV_OUT -j MASQUERADE + +# IP-Forwarding aktivieren +echo 1 > /proc/sys/net/ipv4/ip_forward + +# auch dynamische Adresse +echo "1" > /proc/sys/net/ipv4/ip_dynaddr + +################# +# +# INPUT Pakete an diesen Rechner +# + +# von intranet alles erlauben +iptables -A INPUT -s $NET_INT -j ACCEPT + +# erlaube SSH von ueberall (auch inet) +iptables -A INPUT -p tcp --dport ssh -j ACCEPT + +# civ +iptables -A INPUT -p tcp --dport 5555 -j ACCEPT + +# UDP Pakete aus lokalem Netz passieren lassen +# iptables -A INPUT -p udp -s $NET_INT -j ACCEPT + +# UDP-Pakete von Name-Servern durchlassen +iptables -A INPUT -p udp --sport 53 -j ACCEPT + +# ICMP-Pakete (z.B. Ping) aus lokalem Netz erlauben +iptables -A INPUT -p icmp -s $NET_INT -j ACCEPT + +# ICMP-Pakete (z.B. Ping) generell verbieten +#iptables -A INPUT -p icmp -j DROP + +# lokale arbeit zulassen (loopback) +iptables -A INPUT -i lo -j ACCEPT + +# sonst nur packete aus vorhandenen verbindungen +iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT + +# Policy (Standardverhalten am Regelende): Paket verwerfen +iptables -P INPUT DROP + +############### +# +# FORWARD Geroutete Packete +# + +# Policy (Standardverhalten am Regelende): Paket verwerfen +iptables -P FORWARD DROP + +# Pakete aus lokalem Netz erlauben und routen +iptables -A FORWARD -s $NET_INT -j ACCEPT + +# man koennte es auch nur auf ftp beschraenken: +##iptables -A FORWARD -o $DEV_OUT -p tcp --sport 1024:65535 --dport ftp -m state --state NEW -j ACCEPT + +# zu routende Pakete nur durchlassen, wenn von innen oder zu einer +# bestehenden Verbindung gehörig +# +iptables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT + + +################## +# +# OUTPUI von uns (lokal) +# + +# Policy (Standardverhalten am Regelende): Paket durchlassen +iptables -P OUTPUT ACCEPT + diff --git a/fix_broken_2.5er b/fix_broken_2.5er new file mode 100644 index 0000000..971dae5 --- /dev/null +++ b/fix_broken_2.5er @@ -0,0 +1,6 @@ +#!/bin/sh + +cd /lib/modules/"$1" + +cp `find -name \*.ko` kernel +~nico/bin/mmv ko o diff --git a/fsdb-web/show-pages.fsdb b/fsdb-web/show-pages.fsdb new file mode 100755 index 0000000..16d2d00 --- /dev/null +++ b/fsdb-web/show-pages.fsdb @@ -0,0 +1,21 @@ +DB=/home/user/nico/DB/wddb/ +HTMLDB=/home/user/nico/DB/wddb-html/ + + +DATA_1=`echo $1 | sed 's/\.\.\///g'` +echo $DATA_1 + +CONTINENT=`echo $DATA_1 | awk -F"/" '{ print $1 }'` +#CONTINENT=`echo $DATA_1 | sed 's/^\(.*\)\/.*/\1/g'` +echo $CONTINENT + +DATADIR=`echo $DATA_1 | sed 's/\(.*\)\/\(.*\)/\1/g'` +HTML=`echo $DATA_1 | sed 's/\(.*\)\/\(.*\)/\2/g'` +echo $DATADIR +echo $HTML + +if [ ! -d $DB/$CONTINENT ]; then + show_error +fi + +grep diff --git a/generate.rb b/generate.rb new file mode 100755 index 0000000..ab56d24 --- /dev/null +++ b/generate.rb @@ -0,0 +1,224 @@ +#!/usr/bin/env ruby + +require 'misen/style-sgml' +require 'misen/util' + +require 'getoptlong' +require 'fileutils' +require 'digest/sha1' + +@version = '0.2' +@verbose = 0 +@force = false +@outpath = "#{Dir.pwd}/generated" +@inpath = "#{Dir.pwd}/source" +@template = "#{Dir.pwd}/templates" +@default = 'default.html' + +@datadir = "#{Dir.pwd}/data" +@filehash = Hash.new + +def printMsg(prefix, msg, descriptor = $stdout) + descriptor.puts '%-12s %s' % [prefix + ':', msg] +end + +def panic(msg) + printMsg('PANIC', msg, $stderr) + Kernel.exit(-1) +end + +def error(msg) + printMsg('ERROR', msg, $stderr) +end + +def warn(msg) + printMsg('WARNING', msg) +end + +def info(msg) + printMsg('INFO', msg) +end + +def debug(msg, verbosity = 1) + if(@verbose >= verbosity) + printMsg("DEBUG(#{verbosity})", msg, $stderr) + end +end + +def generateMenu(dir, file = nil, level = 0) + debug("call generateMenu('#{dir}', '#{file}', #{level})") + template = '> + +

  • >
  • + + ' + + dir = dir + '/' if(!dir.empty? && dir[-1].chr != '/') + menu = File.new("#{dir}menu.def").readlines + + data = Hash.new + menuentries = Array.new + + menu.each { |x| + entry = x.split(/\s*\|\s*/, 2) + e = Hash.new + e[:class] = (file && dir + entry[0] == file ? ' class="active"' : '') + if(file && dir + entry[0] == file) + e[:class] = data[:class] = ' class="active"' + end + e[:url] = "/#{dir}#{entry[0]}" # TODO: make relative paths + e[:desc] = entry[1].strip + if(FileTest.directory?("#{dir}#{entry[0]}") && FileTest.exists?("#{dir}#{entry[0]}/menu.def")) + e[:menu] = generateMenu("#{dir}#{entry[0]}", file, level + 1) + end + menuentries << e + } + + return '' if(menuentries.empty?) + + data[:menuentries] = menuentries + + return removeEmptyLine(Misen.expand_text(Misen::STYLE_SGML, template, data)) + +end + +def generateFiles(dir = '') + debug("call generateFiles('#{dir}')") + dir = dir + '/' if(!dir.empty? && dir[-1].chr != '/') + Dir.foreach(dir.empty? ? '.' : dir) { |x| + next if(x =~ /^(\.|\.\.)$/) + + if(x =~ /\.html$/) + if(!FileTest.exists?(@outpath + '/' + dir + x) || @filehash[dir + x] != Digest::SHA1.hexdigest(File.new(dir + x).read) || @force) + info("Transforming #{dir}#{x}") + data = {:style => getStylePath(dir) + 'style.css', :content => File.new("#{dir}#{x}").read, :menu => generateMenu('', dir + File.basename(x, '.html'))} + Dir.mkdir("#{@outpath}/#{dir}") if(!FileTest.exists?("#{@outpath}/#{dir}")) + File.open("#{@outpath}/#{dir}#{x}", "w") { |file| + file.print removeEmptyLine(Misen.expand_text(Misen::STYLE_SGML_EX, @source, data)) + } + @filehash[dir + x] = Digest::SHA1.hexdigest(File.new(dir + x).read) + else + info("Nothing to do for #{dir}#{x}") + end + elsif(FileTest.directory?(dir + x)) + begin + Dir.mkdir("#{@outpath}/#{dir}#{x}") if(!FileTest.exists?("#{@outpath}/#{dir}#{x}")) + rescue + panic("Could not create #{@outpath}/#{dir}#{x}: #{$!}") + end + generateFiles("#{dir}#{x}") + elsif(x !~ /(\.def|\.swp)$/) + if(!FileTest.exists?(@outpath + '/' + dir + x) || @filehash[dir + x] != Digest::SHA1.hexdigest(File.new(dir + x).read) || @force) + info("Copying file #{dir}#{x}") + FileUtils.cp(dir + x, @outpath + '/' + dir + x) + @filehash[dir + x] = Digest::SHA1.hexdigest(File.new(dir + x).read) + else + info("No need to copy #{dir}#{x}. Already latest.") + end + end + } +end + +def removeEmptyLine(str) + str.split($/).collect{ |x| x =~ /^\s*$/ ? nil : x}.compact.join($/) +end + +def getPath(path) + return path if(path[0].chr == '/') + return "#{Dir.pwd}/#{path}" +end + +def getStylePath(dir) + newdir = '' + + dir.split('/').each { + newdir += '../' + } + + return newdir +end + +def usage + info("Usage: #{File.basename(__FILE__)} [options]") + info('') + info('%20s %s' % ['--verbose, -v', 'Verbose output. Add v for more verbose output']) + info('%20s %s' % ['--inpath, -i', 'Specify where to search for input files [./source]']) + info('%20s %s' % ['--outpath, -o', 'Specify where to write the output files [./generated]']) + info('%20s %s' % ['--template, -t', 'Specify where to search for template files [./templates]']) + info('%20s %s' % ['--default, -d', 'The default template name [default.html]']) + info('%20s %s' % ['--force, -f', 'Force the new generating of all files [false]']) + info('%20s %s' % ['--help, -h', 'Print this screen']) + info('%20s %s' % ['--version, -V', 'Print the version and exit']) +end + +puts "This is #{File.basename(__FILE__)} v#{@version} 2005 by René Nussbaumer" +puts + +opts = GetoptLong.new( + ['--verbose', '-v', GetoptLong::OPTIONAL_ARGUMENT], + ['--inpath', '-i', GetoptLong::REQUIRED_ARGUMENT], + ['--outpath', '-o', GetoptLong::REQUIRED_ARGUMENT], + ['--template', '-t', GetoptLong::REQUIRED_ARGUMENT], + ['--default', '-d', GetoptLong::REQUIRED_ARGUMENT], + ['--force', '-f', GetoptLong::NO_ARGUMENT], + ['--help', '-h', GetoptLong::NO_ARGUMENT], + ['--version', '-V', GetoptLong::NO_ARGUMENT] +) + +opts.each { |arg,value| + case arg + when '--verbose' + @verbose += 1 + value.each_byte { |x| + if(x.chr == 'v') + @verbose += 1 + end + } + debug("Verbosity set to: #{@verbose}") + when '--inpath' + @inpath = getPath(value) + when '--outpath' + @outpath = getPath(value) + when '--template' + @template = getPath(value) + when '--default' + @default = value + when '--force' + @force = true + when '--help' + usage + Kernel.exit(0) + when '--version' + Kernel.exit(0) + else + warn("Unknown option #{arg}#{value && !value.empty? ? ('with value ' + value) : ''}") + end +} + +debug("Current configuration:") +debug('%-10s %s' % ['Inpath:', @inpath]) +debug('%-10s %s' % ['Outpath:', @outpath]) +debug('%-10s %s' % ['Template:', @template]) +debug('%-10s %s' % ['Default:', @default]) + +begin + Dir.mkdir(@inpath) if(!FileTest.directory?(@inpath)) + Dir.mkdir(@outpath) if(!FileTest.directory?(@outpath)) + Dir.mkdir(@template) if(!FileTest.directory?(@template)) + Dir.mkdir(@datadir) if(!FileTest.directory?(@datadir)) +rescue + panic("Could not create directory: #{$!}") +end + +panic("#{@template}/#{@default} does not exist! Please create at least the default template.") if(!FileTest.exists?("#{@template}/#{@default}")) + +@source = File.new("#{@template}/#{@default}").read + +Dir.chdir(@inpath) +panic("Init directory needs a menu.def!") if(!FileTest.exists?('menu.def')) + +@filehash = Marshal.load(File.new(@datadir + '/digest').read) if(FileTest.exists?(@datadir + '/digest')) +generateFiles +File.open(@datadir + '/digest', 'w') { |file| + file.print Marshal.dump(@filehash) +} diff --git a/geturl b/geturl new file mode 100755 index 0000000..b0cb805 --- /dev/null +++ b/geturl @@ -0,0 +1,53 @@ +#!/usr/bin/perl -w +# +# Simple utility to fetch an HTML page from a server +# (Utility for TWiki Collaboration Platform, http://TWiki.org/) +# +# Copyright (C) 1999 Jon Udell, BYTE +# Copyright (C) 2000-2003 Peter Thoeny, peter@thoeny.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html + +use Socket; + +if( ! $ARGV[1] ) { + print "Usage: geturl [ [
    ]]\n"; + print "Example: geturl some.domain /some/dir/file.html 80\n"; + print "will get: http://some.domain:80/some/dir/file.html\n"; + exit 1; +} +my $host = $ARGV[0]; +my $url = $ARGV[1]; +my $port = $ARGV[2] || "80"; +my $header = $ARGV[3] || "Host: $host"; +print getUrl( $host, $port, $url, $header ); + +# ========================= +sub getUrl +{ + my ( $theHost, $thePort, $theUrl, $theHeader ) = @_; + my $result = ''; + my $req = "GET $theUrl HTTP/1.1\r\n$theHeader\r\n\r\n"; + my ( $iaddr, $paddr, $proto ); + $iaddr = inet_aton( $theHost ); + $paddr = sockaddr_in( $thePort, $iaddr ); + $proto = getprotobyname( 'tcp' ); + socket( SOCK, PF_INET, SOCK_STREAM, $proto ) or die "socket: $!"; + connect( SOCK, $paddr ) or die "connect: $!"; + select SOCK; $| = 1; + print SOCK $req; + while( ) { $result .= $_; } + close( SOCK ) or die "close: $!"; + select STDOUT; + return $result; +} diff --git a/git-mv.sh b/git-mv.sh new file mode 100755 index 0000000..9745740 --- /dev/null +++ b/git-mv.sh @@ -0,0 +1,15 @@ +DIR="$1" +DEST="$2" +hier="/home/server/git/$DIR/" +there="git.schottelius.org:/home/server/git/$DEST" + +echo "$hier to $there?" +read bar + + +rsync -av "$hier" "$there" + + +echo "ok?" +read foo +echo rm -rf "$hier" diff --git a/gpm b/gpm new file mode 100644 index 0000000..ffb1d1f --- /dev/null +++ b/gpm @@ -0,0 +1,33 @@ +#! /bin/sh +# Copyright (c) 1995-1998 S.u.S.E. GmbH Fuerth, Germany. +# +# Author: +# +# /sbin/init.d/gpm +# +# and symbolic its link +# +# /sbin/rcgpm +# +### BEGIN INIT INFO + +case "$1" in + start) + gpm -m /dev/misc/psaux -t ps2 + ;; + stop) + killall -TERM gpm + ;; + restart|reload) + $0 stop && $0 start + ;; + status) + echo -n "Checking for console mouse support (gpm): " + checkproc /usr/sbin/gpm && echo OK || echo No process + ;; + *) + echo "Usage: $0 {start|stop|status|restart|reload}" + exit 1 + ;; +esac +rc_exit diff --git a/gta.sh b/gta.sh new file mode 100755 index 0000000..40d3887 --- /dev/null +++ b/gta.sh @@ -0,0 +1,2 @@ +#!/bin/sh +wine ~/.wine/drive_c/Program\ Files\ \(x86\)/Rockstar\ Games/Grand\ Theft\ Auto/WINO/Grand\ Theft\ Auto.exe diff --git a/historic_interest_only/backup-script b/historic_interest_only/backup-script new file mode 100644 index 0000000..a226572 --- /dev/null +++ b/historic_interest_only/backup-script @@ -0,0 +1,44 @@ +#!/bin/sh +# +# 2003-2015 Nico Schottelius (nico-nsbin at schottelius.org) +# +# This file is part of nsbin. +# +# nsbin is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# nsbin is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with nsbin. If not, see . +# +# +# Copy / to some other place +# + +HOST=fs2 +NEWROOT=/mnt/data/spezial/edv/backup/nico +DATA_DIRS="bin boot etc home lib opt root sbin tmp usr var" +#SCRIPTS="/root/scripts/to_eiche" + +# display how long we backup +#for script in $SCRIPTS; do +# $script +#done + +# create empty dirs +#ssh $HOST "mkdir -p $NEWROOT/dev $NEWROOT/proc $NEWROOT/mnt ; for a in /mnt/*; do mkdir -p $NEWROOT/$a; done" + +#date + +cd / +# wdt-old +#ssh $HOST "mkdir -p $NEWROOT/`date +%d-%b-%Y`" +#tar cf - $DATA_DIRS | ssh $HOST "( cd $NEWROOT/`date +%d-%b-%Y`; tar xf - )" + +time tar cf - $DATA_DIRS | ssh $HOST "gzip -c > $NEWROOT/`date +%d-%b-%Y`.tar.gz " diff --git a/historic_interest_only/communicator b/historic_interest_only/communicator new file mode 100644 index 0000000..74e6a86 --- /dev/null +++ b/historic_interest_only/communicator @@ -0,0 +1,405 @@ +#!/bin/bash +# +# This small shell script is the starter for the +# Netscape Communicator. +# +# SuSE, 1996-2000 +# + +trap "echo" 31 + +prog="" +if [ -x /opt/netscape/netscape ] ; then + prog="/opt/netscape/netscape" +else + prog="$prog $(type -p netscape)" + prog="$prog $(type -p Mosaic)" + prog="$prog $(type -p mosaic)" + prog="$prog $(type -p arena)" + prog="$prog $(type -p amaya)" +fi + +preloader () +{ + # + # See which binary type we have: libc6 or libc5. + # + lddout="$(ldd $1 2>/dev/null)" + nspipepatch=libnspipepatch.so.0.0 + while read line; do + case "$line" in + libc.so.5*) lib=libc5 ;; + libBrokenLocale.so.*) + lib=libc6n ;; + libc.so.6*) lib=libc6o ;; + libXext.so.6*) + set -- $line + case "$(find $3 -printf '%l\n')" in + libXext.so.6.[0-3]) nspipepatch=libnspipepatch.so.0.0 ;; + *) nspipepatch=libnspipepatch.so.0.1 ;; + esac + ;; + esac + done < <(exec echo "$lddout") + + # + # For libc5 programs this should be preloaded + # + if test -e /usr/i486-linux-libc5/lib/libgnumalloc.so.5 ; then + LIBGNUMALLOC=/usr/i486-linux-libc5/lib/libgnumalloc.so.5 + else + LIBGNUMALLOC=/usr/lib/libgnumalloc.so.5 + fi + if test $lib = libc5 -a -e $LIBGNUMALLOC ; then + if test -n "$LD_PRELOAD" ; then + LD_PRELOAD="$LIBGNUMALLOC $LD_PRELOAD" + else + LD_PRELOAD="$LIBGNUMALLOC" + fi + export LD_PRELOAD + fi + + # + # For libc6 only based systems + # + if test $lib = libc6o -a -e /lib/libBrokenLocale.so.1 ; then + # + # This glibc based netscape isn't linked against libBrokenLocale + # + if test -n "$LD_PRELOAD" ; then + LD_PRELOAD="/lib/libBrokenLocale.so.1 $LD_PRELOAD" + else + LD_PRELOAD="/lib/libBrokenLocale.so.1" + fi + export LD_PRELOAD + fi + + if test -e $MOZILLA_HOME/$nspipepatch ; then + NSFIX_LIB=/lib/libc.so.6 + test $lib = "libc5" && NSFIX_LIB=/lib/libc.so.5 + export NSFIX_LIB + if test -n "$LD_PRELOAD" ; then + LD_PRELOAD="$MOZILLA_HOME/$nspipepatch $LD_PRELOAD" + else + LD_PRELOAD="$MOZILLA_HOME/$nspipepatch" + fi + export LD_PRELOAD + fi +} + +# +for p in $prog ; do + case "${p##*/}" in + netscape*) + # Switch from alarm(2) to select(2) in + # netscape's thread handling + # NSPR_NOCLOCK=1; export NSPR_NOCLOCK + # + lang="${LANG%[_@]*}" + if test ${#lang} -gt 2 -a -r /usr/share/locale/locale.alias ;then + while read alias real ; do + case "$alias" in + \#*|"") ;; + *) if test "${lang}" = "${alias%[_@]*}" ; then + LANG=${real} + break + fi ;; + esac + done < <(exec grep -vE '^#|^$' /usr/share/locale/locale.alias) + fi + # + # Multi-Language is buggy in netscape + # + test -z "$LANG" && LANG=POSIX + export LANG + enable -n printf >/dev/null 2>&1 + if test "`printf "%1.1f" 1 2>/dev/null`" != "1.0" ; then + LC_NUMERIC=POSIX + export LC_NUMERIC + fi + if test "`printf "%1.1f" 1 2>/dev/null`" != "1.0" ; then + LC_COLLATE=$LANG + LC_CTYPE=$LANG + LC_MONETARY=$LANG + LC_MESSAGES=$LANG + LC_TIME=$LANG + LC_ALL="" + export LC_COLLATE LC_CTYPE LC_MONETARY LC_MESSAGES LC_TIME LC_ALL + fi + # + # Find Mozillas home + # + for d in /opt/netscape /usr/local/netscape \ + /usr/lib/netscape /usr/local/lib/netscape \ + /usr/netscape + do + if test -d $d ; then + MOZILLA_HOME=$d + d=$d/app-defaults + XFILESEARCHPATH=%D:$d/%L/%N:$d/%l_%t/%N:$d/%l/%N:$d/%N + unset d + break + fi + done + test -n "$MOZILLA_HOME" && export MOZILLA_HOME + test -n "$XFILESEARCHPATH" && export XFILESEARCHPATH + if test -s "$MOZILLA_HOME/registry" ; then + MOZILLA_SHARED_REGISTRY=$MOZILLA_HOME/registry + export MOZILLA_SHARED_REGISTRY + fi + # + # netscape should find it's movemail and nethelp + # + PATH=$MOZILLA_HOME:$PATH + export PATH + # + # Motif-Datenbank der Tastensymbole + # + if [ ! -r /usr/X11R6/lib/X11/XKeysymDB ] ; then + XKEYSYMDB=${MOZILLA_HOME}/XKeysymDB + export XKEYSYMDB + fi + # + # Time zone + # + TZ=:/etc/localtime + export TZ + # + # Disable X Color Management System + # + XCMSDB=/dev/null + export XCMSDB + # + # Workaround for XFree Bug (< XFree86[tm]-4.0) ?? + # + MOZILLA_LINUX_INSERT_LINK_FIX=1 + export MOZILLA_LINUX_INSERT_LINK_FIX + # + # Who needs this? + # + test -z "$DISPLAY" && DISPLAY=:0 + display=$DISPLAY + for o in ${1+"$@"} ; do + if test "$o" = -display; then + display="" + continue + fi + test -z "$display" && display="$o" + done + export DISPLAY display + # + # Acrobat plugin + # + adir="" + for d in /usr/lib/Acrobat[1-9] \ + /usr/X11R6/lib/Acrobat[1-9] \ + /usr/Acrobat[1-9] \ + /usr/local/Acrobat[1-9] \ + /opt/Acrobat[1-9] + do + test -d $d && { adir=$d/Browsers/intellinux; break; } + done + if test -n "$adir" -a -d "$adir" ; then + adir=$HOME/.netscape/plugins:$adir:$MOZILLA_HOME/plugins + if test -n "$NPX_PLUGIN_PATH" ; then + NPX_PLUGIN_PATH=$adir:$NPX_PLUGIN_PATH + else + NPX_PLUGIN_PATH=$adir + fi + export NPX_PLUGIN_PATH + fi + # + # Class path + # + for d in $HOME/.netscape/java/classes \ + $HOME/.netscape/java/download \ + $HOME/.netscape/java \ + $HOME/.netscape/plugins \ + $HOME/.netscape + do + test -d $d || continue + if test -n "$CLASSPATH" ; then + CLASSPATH=$CLASSPATH:$d + else + CLASSPATH=$d + fi + done + if test -n "$CLASSPATH" ; then + jars="" + rest="" + for j in $MOZILLA_HOME/java/classes/*.jar \ + $MOZILLA_HOME/plugins/*.jar + do + case "$j" in + */java[0-9]*.jar) jars=$j ;; + */*.jar) rest=$rest:$j ;; + esac + done + CLASSPATH=$MOZILLA_HOME/java/classes:$CLASSPATH + CLASSPATH=$MOZILLA_HOME/plugins:$CLASSPATH + CLASSPATH=$jars$rest:$CLASSPATH + export CLASSPATH + fi + + # + # Real Player + # + rdir="" + for d in /opt/{rv,rvplayer,rvplayer?.?} \ + /usr/lib/{rv,rvplayer,rvplayer?.?} \ + /usr/local/{rv,rvplayer,rvplayer?.?} \ + /usr/local/lib/{rv,rvplayer,rvplayer?.?} + do + if test -d $d ; then + rdir=$d + break + fi + done + if test -n "$rdir" ; then + if test -n "$LD_LIBRARY_PATH" ; then + LD_LIBRARY_PATH=$rdir:$LD_LIBRARY_PATH + else + LD_LIBRARY_PATH=$rdir + fi + export LD_LIBRARY_PATH + fi + # + # General expansion of Java, Plugins, and shared libraries + # + OIFS="$IFS" + IFS=': ,' + for d in ${MOZILLA_ADDONS:-""} + do + test -d "$d" || continue + if test -r "$d/mozilla.rc" ; then + # Hopefully they do not chrash this + # script or Netscape its self + . "$d/mozilla.rc" + else + if test -d "$d/plugins/" ; then + if test -n "$NPX_PLUGIN_PATH" ; then + NPX_PLUGIN_PATH=$d/plugins:$NPX_PLUGIN_PATH + else + NPX_PLUGIN_PATH=$d/plugins + fi + export NPX_PLUGIN_PATH + fi + if test -d "$d/classes/" ; then + jars= + for j in $d/classes/*.jar ; do + test -r "$j" || continue + jars=$jars:$j + done + if test -n "$CLASSPATH" ; then + CLASSPATH=${CLASSPATH}$jars + else + CLASSPATH=$MOZILLA_HOME/java/classes$jars + fi + export CLASSPATH + fi + if test -d "$d/lib/" ; then + if test -n "$LD_LIBRARY_PATH" ; then + LD_LIBRARY_PATH=$d/lib:$LD_LIBRARY_PATH + else + LD_LIBRARY_PATH=$d/lib + fi + export LD_LIBRARY_PATH + fi + test -d "$d/bin/" && PATH=$d/bin:$PATH + fi + done + IFS="$OIFS" + # + # Security + # + HN=$HOME/.netscape + if [ ! -d $HN ] ; then + mkdir -m 0700 $HN + mkdir -m 0700 $HN/cache + mkdir -m 0700 $HN/archive + fi + if [ ! -e $HN/preferences.js ] ; then + default='HP="http://www.suse.de/"' + /sbin/pidof httpd > /dev/null 2>&1 && default='HP="http://localhost/"' + umask 077 + set -f + cat > $HN/preferences.js <<-EOF + // Netscape User Preferences + // This is a generated file! Do not edit. + + user_pref("browser.cache.disk_cache_size", 7680); + user_pref("browser.cache.memory_cache_size", 1024); + user_pref("browser.enable_style_sheets", false); + user_pref("browser.fe_java_xt_app_timeout", 1); + user_pref("browser.startup.homepage", $default); + user_pref("browser.startup.homepage_override", false); + user_pref("editor.dont_lock_spell_files", true); + user_pref("helpers.global_mailcap_file", "/etc/mailcap"); + user_pref("helpers.global_mime_types_file", "/etc/mime.types"); + user_pref("java.applets.stop_on_iconify", true); + user_pref("javascript.allow.mailnews", false); + user_pref("javascript.enabled", false); + user_pref("ldap_2.servers.pab.locale", "C"); + user_pref("li.client.javasecurity", true); + user_pref("mail.default_html_action", 1); + user_pref("mail.html_compose", false); + user_pref("mail.quoted_style", 0); + user_pref("mail.strictly_mime", true); + user_pref("network.dnsAttempt", 30); + user_pref("network.dnsCacheExpiration", 5000); + user_pref("network.dnsTimout", 30); + user_pref("network.max_connections", 8); + user_pref("network.tcpbufsize", 256); + user_pref("network.tcptimeout", 10); + user_pref("network.use_async_dns", false); + user_pref("offline.startup_mode", 1); + user_pref("security.enable_java", false); + EOF + set +f + fi + if [ -n "$SECURE_NETSCAPE" -a "$SECURE_NETSCAPE" = "yes" ]; then + test -L $HN/cookies || rm -rf $HN/cookies + test -e $HN/cookies || ln -sf /dev/null $HN/cookies + else + test -L $HN/cookies && rm -rf $HN/cookies + touch $HN/cookies + fi + chmod -f -R go-rxw $HN & + # + # Avoid crash and freezes + # + test -e $HN/cert7.db -a ! -s $HN/cert7.db && rm -f $HN/cert7.db + test -e $HN/pab.na2 -a ! -s $HN/pab.na2 && rm -f $HN/pab.na2 + ln -sf history.dat $HN/history.db + : ${TMPDIR=/tmp/${USER}-netscape} + test -d $TMPDIR || { mkdir -m 0700 $TMPDIR || exit 1; } + export TMPDIR + + # + # Try to make malloc safety + # + MALLOC_CHECK_=4; export MALLOC_CHECK_ + + # + # Start + # + dd if=$p of=/dev/null bs=8k conv=sync > /dev/null 2>&1 + preloader $p + arg0="" + test -n "$BASH_VERSINFO" && arg0="-a $p" + exec $arg0 $p ${1+"$@"} + ;; + *) + for param in $@ ; do + if test "$param" = "-remote" ; then + echo "Parameter \"-remote\" not supported. Exit." 1>&2 + exit 1 + fi + done + preloader $p + exec $p ${1+"$@"} + esac +done + +echo "$0: No WWW browser found in PATH" 1>&2 +exit 1 diff --git a/historic_interest_only/console_video b/historic_interest_only/console_video new file mode 100644 index 0000000..01401c6 --- /dev/null +++ b/historic_interest_only/console_video @@ -0,0 +1,5 @@ + +~/scripts/enab_fbdev +~/scripts/enab_sound +setterm -blank 0 +mplayer -vo fbdev /mnt/dvd/* "$@" diff --git a/historic_interest_only/devfs b/historic_interest_only/devfs new file mode 100644 index 0000000..024d54f --- /dev/null +++ b/historic_interest_only/devfs @@ -0,0 +1,47 @@ +#!/bin/sh +# +# Author: Nico Schottelius +# Date: 6th of May 2k+1 +# Last Changed: 18th of May 2k+1 +# Comment: Support for devfs +# + +. /etc/sys/combined +. /etc/sys/boot/devfs + +test `basename $0` = devfs && START_DEVFS="yes" +test "$START_DEVFS" = yes || exit 0 + +CHECK_DEVFS=`cat /proc/mounts | grep devfs | awk '{ print $1 }'` + +# Check whether devfs is mounted +if [ -z "$CHECK_DEVFS ]; then + $SYS_ECHO $FAIL $NO_DEVFS_THERE + exit 1 +fi + +case "$1" in + start) $SYS_ECHO "$START $DEVFS_TEXT" + + startproc /usr/sbin/named -u $NAMED_USER -g $NAMED_GROUP \ + || ( $SYS_ECHO "$FAIL" ; exit 1) + $SYS_ECHO $DONE + ;; + stop) $SYS_ECHO -n "$STOP $NAMED_TEXT " + killproc -TERM /usr/sbin/named || ( $SYS_ECHO "$FAIL" ; exit 1) + $SYS_ECHO $DONE + ;; + restart) + $0 stop && $0 start + ;; + reload) $SYS_ECHO -n "$RELOAD $NAMED_TEXT " + killproc -HUP /usr/sbin/named || ( $SYS_ECHO "$FAIL" ; exit 1) + $SYS_ECHO $DONE + ;; + status) checkproc /usr/sbin/named && $SYS_ECHO $OK || $SYS_ECHO $NOP + ;; + *) $SYS_ECHO "$USAGE $0 {start|stop|restart|reload|status}" + exit 1 +esac + +exit 0 diff --git a/historic_interest_only/fbset-1024 b/historic_interest_only/fbset-1024 new file mode 100644 index 0000000..562652e --- /dev/null +++ b/historic_interest_only/fbset-1024 @@ -0,0 +1 @@ +fbset -fb /dev/fb/0 -xres 1024 -yres 768 diff --git a/historic_interest_only/mksound b/historic_interest_only/mksound new file mode 100644 index 0000000..8ab32c5 --- /dev/null +++ b/historic_interest_only/mksound @@ -0,0 +1,4 @@ +modprobe sound +ln -s /dev/sound/dsp /dev/dsp +ln -s /dev/sound/mixer /dev/mixer +ln -s /dev/sound/mixer1 /dev/mixer1 diff --git a/historic_interest_only/modem_connect b/historic_interest_only/modem_connect new file mode 100644 index 0000000..86e05ad --- /dev/null +++ b/historic_interest_only/modem_connect @@ -0,0 +1,8 @@ +modprobe ppp_generic +modprobe ppp_async +modprobe ppp_deflate +modprobe ppp_synctty +modprobe 8250 #serial 2.5 +modprobe serial #serial 2.4 +modprobe bsd_comp +pppd user arcor diff --git a/historic_interest_only/mousepad-tuning b/historic_interest_only/mousepad-tuning new file mode 100755 index 0000000..30d7c1e --- /dev/null +++ b/historic_interest_only/mousepad-tuning @@ -0,0 +1,4 @@ +#!/bin/sh + +xinput --set-prop bcm5974 "Trackpad Sensitivity" 0.3 + diff --git a/hole_mails b/hole_mails index 7cfa86b..72e1116 100755 --- a/hole_mails +++ b/hole_mails @@ -1,7 +1,9 @@ #!/bin/sh -securemail -fetchmail +# Tue Jul 18 15:13:45 CEST 2017 +#securemail +#fetchmail +mbsync -a # Disabled by Mon Jun 20 10:56:19 CEST 2016 -- using mu now # notmuch new diff --git a/hole_mails2 b/hole_mails2 new file mode 100755 index 0000000..2dbe63e --- /dev/null +++ b/hole_mails2 @@ -0,0 +1,5 @@ +#!/bin/sh + +maildircommit +git pull +git push diff --git a/homestart b/homestart new file mode 100644 index 0000000..bb81dae --- /dev/null +++ b/homestart @@ -0,0 +1,2 @@ +~/bin/home/route start +ssh ozean -lroot diff --git a/ikn_init b/ikn_init new file mode 100755 index 0000000..7ad2732 --- /dev/null +++ b/ikn_init @@ -0,0 +1,7 @@ +#!/bin/sh +# + screen +# + x +xrandr --output LVDS1 --off +# use latest version +/home/users/nico/temp/build/synergy-read-only/bin/synergyc kr +sgterm & diff --git a/install.add.links b/install.add.links new file mode 100644 index 0000000..c2e601b --- /dev/null +++ b/install.add.links @@ -0,0 +1,19 @@ +cd /usr/bin +for a in "$1"/bin/*; do + ln -s $a +done + +cd /usr/lib +for a in "$1"/lib/*; do + ln -s $a +done + +cd /usr/sbin +for a in "$1"/sbin/*; do + ln -s $a +done + +cd /usr/include +for a in "$1"/include/*; do + ln -s $a +done diff --git a/install_product.sh b/install_product.sh new file mode 100755 index 0000000..057b10c --- /dev/null +++ b/install_product.sh @@ -0,0 +1,34 @@ +#!/bin/sh +# Nico Schottelius +# 2007-02-04 +# Install a product to listed instances, change permissions +# Nothing spectacular, but useful + +instances="/home/server/zope/instance/nico.schottelius.org.1 \ + /home/server/zope/instance/nico.schottelius.org.2" + +zope_user="zope" + +######################## NO CHANGES BELOW HERE NEEDED ########################## + +if [ $# -ne 1 ]; then + echo "$0: product (tar, gzipped)" + exit 23 +fi + +product="$1" +echo "Installing $product ..." +echo "" + +# do NOT continue on failure! +set -e +for instance in $instances; do + proddir="${instance}/Products" + echo "Extracting product to $instance ..." + tar xfz "$product" -C "$proddir" + echo "Changing owner to $zope_user (for all products) ..." + chown -R "$zope_user" "$proddir" +done + +echo "" +echo "Restart your zope server(s) now (if not running in debug mode)" diff --git a/installpasswd b/installpasswd new file mode 100755 index 0000000..18578c9 --- /dev/null +++ b/installpasswd @@ -0,0 +1,155 @@ +#!/usr/bin/perl -wT +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 2001 Klaus Wriessnegger, kw@sap.com +# Copyright (C) 2001 Andrea Sterbini, a.sterbini@flashnet.it +# Copyright (C) 2001-2003 Peter Thoeny, peter@thoeny.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.ai.mit.edu/copyleft/gpl.html +# +# 26-5-01 Password installation (only by the $superAdminGroup) +# + +#usage example: +# +#I n s t a l l +# +# +#
    +#Username:EncryptedPW
    +# +# +#
    + + +# Set library paths in @INC, at compile time +BEGIN { unshift @INC, '.'; require 'setlib.cfg'; } + +use CGI::Carp qw(fatalsToBrowser); +use CGI; +use TWiki; + +$query= new CGI; + +&main(); + +sub main +{ + # get all parameters from the form + my $wikiName = $query->param( 'username' ); + + #initialize + my $topicName = $query->param( 'TopicName' ); + my $thePathInfo = $query->path_info(); + my $theUrl = $query->url; + + ( $topic, $webName ) = + &TWiki::initialize( $thePathInfo, $wikiName, $topicName, $theUrl, $query ); + + my $text = ""; + my $url = ""; + + my $theRemoteUser = $query->remote_user(); + my ( $dummy1, $dummy2, $dummy3, $userName ) = + &TWiki::initialize( $thePathInfo, $theRemoteUser, $topicName, $theUrl, $query ); + my $wikiUserName = &TWiki::userToWikiName( $userName ); + + if( ! &TWiki::Access::userIsInGroup( $wikiUserName, $TWiki::superAdminGroup ) ) { + # user has no permission to install the password + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsaccessgroup", "$TWiki::mainWebname.$TWiki::superAdminGroup" ); + TWiki::redirect( $query, $url ); + return; + } + + my $theCryptPassword = $query->param( 'encryptedPassword' ) || ''; + if ( ! $theCryptPassword ) { + # missing username:encryptedpassword + $url = &TWiki::getOopsUrl( $webName, $topic, "oopsregrequ", ); + TWiki::redirect( $query, $url ); + return; + } + + # TODO: I18N fix here once basic auth problem with 8-bit user names is + # solved + if ( $theCryptPassword =~ m/^([A-Z][a-zA-Z]+[A-Z][a-zA-Z]*)\:.{13}$/ ) { + $wikiName = $1; + } else { + # bad format + $url = &TWiki::getOopsUrl( $webName, $topic, "oopsbadpwformat", $theCryptPassword); + TWiki::redirect( $query, $url ); + return; + } + + # check if user entry exists + if( ( $wikiName ) && (! htpasswdExistUser( $wikiName ) ) ){ + # PTh 20 Jun 2000: changed to getOopsUrl + $url = &TWiki::getOopsUrl( $webName, $topic, "oopsnotwikiuser", $wikiName ); + TWiki::redirect( $query, $url ); + return; + } + + # old password + my $oldcrypt = htpasswdReadPasswd( $wikiName ); + # OK - password may be changed + my $oldCryptPassword = "$wikiName\:$oldcrypt"; + htpasswdAddUser( $oldCryptPassword, $theCryptPassword ); + + # OK - password changed + $url = &TWiki::getOopsUrl( $webName, $topic, "oopschangepasswd" ); + TWiki::redirect( $query, $url ); + return; +} + +#========================= +sub htpasswdReadPasswd +{ + my ( $user ) = @_; + + if( ! $user ) { + return ""; + } + + my $text = &TWiki::Store::readFile( $TWiki::htpasswdFilename ); + if( $text =~ /$user\:(\S+)/ ) { + return $1; + } + return ""; +} + +sub htpasswdExistUser +{ + my ( $user ) = @_; + + if( ! $user ) { + return ""; + } + + my $text = &TWiki::Store::readFile( $TWiki::htpasswdFilename ); + if( $text =~ /$user\:/go ) { + return "1"; + } + return ""; +} + +sub htpasswdAddUser +{ + my ( $oldUserEntry, $newUserEntry ) = @_; + + # can't use `htpasswd $wikiName` because htpasswd doesn't understand stdin + # simply add name to file, but this is a security issue + my $text = &TWiki::Store::readFile( $TWiki::htpasswdFilename ); + $text =~ s/$oldUserEntry/$newUserEntry/; + &TWiki::Store::saveFile( $TWiki::htpasswdFilename, $text ); +} + diff --git a/ipg b/ipg new file mode 100644 index 0000000..b556c10 --- /dev/null +++ b/ipg @@ -0,0 +1,27 @@ + +#! /bin/sh + +modprobe pktgen + +PGDEV=/proc/net/pktgen/pg0 + +function pgset() { + local result + + echo $1 > $PGDEV + + result=`cat $PGDEV | fgrep "Result: OK:"` + if [ "$result" = "" ]; then + cat $PGDEV | fgrep Result: + fi +} + +function pg() { + echo inject > $PGDEV + cat $PGDEV +} + +pgset "odev eth0" +pgset "dst 0.0.0.0" + + diff --git a/ips-dup b/ips-dup new file mode 100644 index 0000000..e16d237 --- /dev/null +++ b/ips-dup @@ -0,0 +1,18 @@ + +START="1" +END="254" +DEVICE="eth0" +BASE_IP="192.168.0." + +i=$START + +if [ $# -lt 1 ]; then + echo "So nicht meister." + echo "$0 [up|down]" + exit 1 +fi + +while [ $i -lt $END ]; do + ifconfig "$DEVICE":"$[i+3]" "$BASE_IP""$i" $1 + i=$[$i+1] +done diff --git a/ips-hinzu.sh b/ips-hinzu.sh new file mode 100755 index 0000000..1204b49 --- /dev/null +++ b/ips-hinzu.sh @@ -0,0 +1 @@ +for i in $(seq 67 80); do ip addr add 62.65.138.$i dev eth0; done diff --git a/irda_connect b/irda_connect new file mode 100644 index 0000000..4979cb0 --- /dev/null +++ b/irda_connect @@ -0,0 +1,10 @@ +modprobe ppp_generic +modprobe ppp_async +modprobe ppp_deflate +modprobe ppp_synctty +modprobe 8250 #serial 2.5 +modprobe serial #serial 2.4 +modprobe bsd_comp +modprobe irport +modprobe irtty +pppd user arcor diff --git a/irkerd b/irkerd new file mode 100755 index 0000000..7cac11b --- /dev/null +++ b/irkerd @@ -0,0 +1,4 @@ +#!/bin/sh + +. /home/users/nico/p/foreign/irker/virtualenv/bin/activate +/home/users/nico/p/foreign/irker/irker/irkerd "$@" diff --git a/kbd b/kbd new file mode 100644 index 0000000..21590bc --- /dev/null +++ b/kbd @@ -0,0 +1,193 @@ +#! /bin/sh +# Copyright (c) 1995-2000 SuSE GmbH Nuernberg, Germany. +# +# Author: Burchard Steinbild +# Werner Fink +# +# /sbin/init.d/kbd +# +# and symbolic its link +# +# /sbin/rckbd +# +### BEGIN INIT INFO +# Provides: kbd +# Required-Start: $remote_fs +# Required-Stop: +# Default-Start: 1 2 3 5 S +# Default-Stop: +# Description: Keyboard settings +### END INIT INFO + +. /etc/rc.status +. /etc/rc.config + +MACHINE=`/bin/uname -m 2> /dev/null` +if [ "$MACHINE" = "sparc" -o "$MACHINE" = "sparc64" ]; then + # Test if we have a serial console. + (test -c /dev/tty1 && > /dev/tty1 ) > /dev/null 2>&1 || exit 0 +fi + +test -n "$KEYTABLE" -a "$KEYTABLE" != YAST_ASK || { + echo KEYTABLE is not set in /etc/rc.config. Exit. + exit 0 +} +KEYTABLE=${KEYTABLE%.map*} +# +# first search the wanted keytable. +# +if [ $MACHINE = ppc ]; then + test -f /proc/cpuinfo || mount -n -t proc proc /proc 2>/dev/null + while read line; do + case "$line" in + *MacRISC*) MACHINE="mac";; + *CHRP*) MACHINE="chrp";; + *PReP*) MACHINE="prep" ;; + esac + done < /proc/cpuinfo +fi + +case "$MACHINE" in + i?86|ia64|alpha|prep|chrp) KDBLIB="/usr/lib/kbd/keymaps/i386/*/" ;; + sparc*) + case "$KEYTABLE" in + sun*) KDBLIB="/usr/lib/kbd/keymaps/sun/" ;; + *) KDBLIB="/usr/lib/kbd/keymaps/i386/*/" ;; + esac + ;; + mac) KDBLIB="/usr/lib/kbd/keymaps/mac/" ;; + *) echo "No available keymaps for machine $MACHINE found"; exit 1 + ;; + +esac + +KEYMAP="" +if test -e /$KEYTABLE ; then + KEYMAP=$KEYTABLE +else + K="${KDBLIB}${KEYTABLE}" + case "$KEYTABLE" in + *.gz) KDBPATH="${K}" ;; + *.map) KDBPATH="${K} ${K}.gz" ;; + *) KDBPATH="${K} ${K}.gz ${K}.map.gz ${K}.map" ;; + esac + for K in ${KDBPATH} ; do + test -e "$K" || continue + test -n "$KEYMAP" && KEYMAP="$KEYMAP $K" || KEYMAP=$K + done +fi + +rc_reset +case "$1" in + start|restart|reload) + if test -z "$KEYMAP" ; then + if test -r /etc/defkeymap.map ; then + echo "Can not find a keymap for ${KEYTABLE}, trying fallback." + KEYMAP=/etc/defkeymap.map + else + echo "Can not find a keymap for ${KEYTABLE}, Exit." + rc_failed + fi + else + if test ! -e "$KEYMAP" ; then + echo "Found more than one keymap ${KEYTABLE}" + KEYMAP=$K + echo "Using $KEYMAP." + echo "If you want another one, please add complete path to" + echo "KEYTABLE in /etc/rc.config." + fi + fi + rc_status && retmsg="`loadkeys $KEYMAP 2>&1`" + if test $? -eq 0 && ( > /var/run/keymap ) > /dev/null 2>&1 ; then + echo "$KEYMAP" > /var/run/keymap + if test ! -s /etc/defkeymap.map ; then + ( dumpkeys > /etc/defkeymap.map ) > /dev/null 2>&1 + fi + else + rc_failed + fi + echo "Loading keymap ${retmsg#Loading*/usr/lib/kbd/keymaps/*/}" + rc_status -v1 -r + + # Load compose tables + if test ! -z "$COMPOSETABLE"; then + unset COMPOSELOADED COMPOSECLEAR + for name in $COMPOSETABLE; do + # Test for compose clear flag + if test "$name" = "-c" -o "$name" = "clear"; then + COMPOSECLEAR=-c + continue + fi + # Handle the first table differently ... + if test -z "$COMPOSELOADED"; then + echo -n "Loading compose table $name" + loadkeys $COMPOSECLEAR compose.$name >/dev/null 2>&1 + rc_check + if test $name = clear; then rc_reset; fi + COMPOSELOADED=1 + else + echo -n " $name" + loadkeys compose.$name >/dev/null 2>&1 + rc_check + fi + done + if test ! -z "$COMPOSELOADED"; then + rc_status -v -r + fi + fi + + # setfont + if test -d /usr/lib/kbd/consolefonts -a \ + -n "$CONSOLE_FONT" -a "$CONSOLE_FONT" != "YAST_ASK" + then + if test -x /usr/bin/setfont ; then + echo Loading console font $CONSOLE_FONT + /usr/bin/setfont $CONSOLE_FONT + rc_status -v1 -r + fi + # unimap + if test -n "$CONSOLE_UNICODEMAP" -a \ + "$CONSOLE_UNICODEMAP" != "none" -a \ + -x /usr/bin/setfont + then + echo Loading unimap $CONSOLE_UNICODEMAP + /usr/bin/setfont -u $CONSOLE_UNICODEMAP + rc_status -v1 -r + fi + # screenmap + if test -n "$CONSOLE_SCREENMAP" -a \ + "$CONSOLE_SCREENMAP" != "none" -a \ + -x /usr/bin/setfont + then + echo Loading screenmap $CONSOLE_SCREENMAP + /usr/bin/setfont -m $CONSOLE_SCREENMAP + rc_status -v1 -r + fi + # console magic init string + if test -n "$CONSOLE_MAGIC" -a "$CONSOLE_MAGIC" != "none" ; then + echo Setting up console ttys + for i in /dev/tty[1-24]; do + echo -en "\033$CONSOLE_MAGIC" > $i + rc_status + done + rc_status -v1 -r + fi + fi + + ;; + stop) + ;; + check|status) + if test -r /var/run/keymap ; then + read current < /var/run/keymap + echo "Keymap $current is loaded." + else + rc_failed + fi + ;; + *) + echo "Usage: $0 {start|stop|restart|reload|status|check}" + exit 1 + ;; +esac +rc_exit diff --git a/kbd.new b/kbd.new new file mode 100644 index 0000000..57e4c4b --- /dev/null +++ b/kbd.new @@ -0,0 +1,240 @@ +#!/bin/sh +# +# Author: Nico Schottelius +# Date: 30. April 2k+1 +# Last Changed: 30. April 2k+1 +# Comment: Keyboard (KBD) init script +# + +. /etc/sys/combined +. /etc/sys/boot/named + +test `basename $0` = named && START_KBD="yes" +test "$START_KBD" = yes || exit 0 + +back="$DONE" + +case "$1" in + start) $SYS_ECHO -n "$START $KBD_TEXT " + || back=$FAIL + $SYS_ECHO "$back" + ;; + stop) $SYS_ECHO -n "$STOP $NAMED_TEXT " + killproc -TERM /usr/sbin/named || back=$FAIL + $SYS_ECHO "$back" + ;; + restart) + $0 stop && $0 start || back=$FAIL + ;; + reload) $SYS_ECHO -n "$RELOAD $NAMED_TEXT" + killproc -HUP /usr/sbin/named || back=$FAIL + $SYS_ECHO "$back" + ;; + status) checkproc /usr/sbin/named && $SYS_ECHO $OK || $SYS_ECHO $NOP + ;; + *) $SYS_ECHO "$USAGE $0 {start|stop|restart|reload|status}" + exit 1 +esac + + +# Test if back is equal to DONE, if not exit 1. Else exit 0 +test "$back" = "$DONE" || exit 1 +exit 0 + + + + + +#! /bin/sh +# Copyright (c) 1995-2000 SuSE GmbH Nuernberg, Germany. +# +# Author: Burchard Steinbild +# Werner Fink +# +# /sbin/init.d/kbd +# +# and symbolic its link +# +# /sbin/rckbd +# +### BEGIN INIT INFO +# Provides: kbd +# Required-Start: $remote_fs +# Required-Stop: +# Default-Start: 1 2 3 5 S +# Default-Stop: +# Description: Keyboard settings +### END INIT INFO + +. /etc/rc.status +. /etc/rc.config + +MACHINE=`/bin/uname -m 2> /dev/null` +if [ "$MACHINE" = "sparc" -o "$MACHINE" = "sparc64" ]; then + # Test if we have a serial console. + (test -c /dev/tty1 && > /dev/tty1 ) > /dev/null 2>&1 || exit 0 +fi + +test -n "$KEYTABLE" -a "$KEYTABLE" != YAST_ASK || { + echo KEYTABLE is not set in /etc/rc.config. Exit. + exit 0 +} +KEYTABLE=${KEYTABLE%.map*} +# +# first search the wanted keytable. +# +if [ $MACHINE = ppc ]; then + test -f /proc/cpuinfo || mount -n -t proc proc /proc 2>/dev/null + while read line; do + case "$line" in + *MacRISC*) MACHINE="mac";; + *CHRP*) MACHINE="chrp";; + *PReP*) MACHINE="prep" ;; + esac + done < /proc/cpuinfo +fi + +case "$MACHINE" in + i?86|ia64|alpha|prep|chrp) KDBLIB="/usr/lib/kbd/keymaps/i386/*/" ;; + sparc*) + case "$KEYTABLE" in + sun*) KDBLIB="/usr/lib/kbd/keymaps/sun/" ;; + *) KDBLIB="/usr/lib/kbd/keymaps/i386/*/" ;; + esac + ;; + mac) KDBLIB="/usr/lib/kbd/keymaps/mac/" ;; + *) echo "No available keymaps for machine $MACHINE found"; exit 1 + ;; + +esac + +KEYMAP="" +if test -e /$KEYTABLE ; then + KEYMAP=$KEYTABLE +else + K="${KDBLIB}${KEYTABLE}" + case "$KEYTABLE" in + *.gz) KDBPATH="${K}" ;; + *.map) KDBPATH="${K} ${K}.gz" ;; + *) KDBPATH="${K} ${K}.gz ${K}.map.gz ${K}.map" ;; + esac + for K in ${KDBPATH} ; do + test -e "$K" || continue + test -n "$KEYMAP" && KEYMAP="$KEYMAP $K" || KEYMAP=$K + done +fi + +rc_reset +case "$1" in + start|restart|reload) + if test -z "$KEYMAP" ; then + if test -r /etc/defkeymap.map ; then + echo "Can not find a keymap for ${KEYTABLE}, trying fallback." + KEYMAP=/etc/defkeymap.map + else + echo "Can not find a keymap for ${KEYTABLE}, Exit." + rc_failed + fi + else + if test ! -e "$KEYMAP" ; then + echo "Found more than one keymap ${KEYTABLE}" + KEYMAP=$K + echo "Using $KEYMAP." + echo "If you want another one, please add complete path to" + echo "KEYTABLE in /etc/rc.config." + fi + fi + rc_status && retmsg="`loadkeys $KEYMAP 2>&1`" + if test $? -eq 0 && ( > /var/run/keymap ) > /dev/null 2>&1 ; then + echo "$KEYMAP" > /var/run/keymap + if test ! -s /etc/defkeymap.map ; then + ( dumpkeys > /etc/defkeymap.map ) > /dev/null 2>&1 + fi + else + rc_failed + fi + echo "Loading keymap ${retmsg#Loading*/usr/lib/kbd/keymaps/*/}" + rc_status -v1 -r + + # Load compose tables + if test ! -z "$COMPOSETABLE"; then + unset COMPOSELOADED COMPOSECLEAR + for name in $COMPOSETABLE; do + # Test for compose clear flag + if test "$name" = "-c" -o "$name" = "clear"; then + COMPOSECLEAR=-c + continue + fi + # Handle the first table differently ... + if test -z "$COMPOSELOADED"; then + echo -n "Loading compose table $name" + loadkeys $COMPOSECLEAR compose.$name >/dev/null 2>&1 + rc_check + if test $name = clear; then rc_reset; fi + COMPOSELOADED=1 + else + echo -n " $name" + loadkeys compose.$name >/dev/null 2>&1 + rc_check + fi + done + if test ! -z "$COMPOSELOADED"; then + rc_status -v -r + fi + fi + + # setfont + if test -d /usr/lib/kbd/consolefonts -a \ + -n "$CONSOLE_FONT" -a "$CONSOLE_FONT" != "YAST_ASK" + then + if test -x /usr/bin/setfont ; then + echo Loading console font $CONSOLE_FONT + /usr/bin/setfont $CONSOLE_FONT + rc_status -v1 -r + fi + # unimap + if test -n "$CONSOLE_UNICODEMAP" -a \ + "$CONSOLE_UNICODEMAP" != "none" -a \ + -x /usr/bin/setfont + then + echo Loading unimap $CONSOLE_UNICODEMAP + /usr/bin/setfont -u $CONSOLE_UNICODEMAP + rc_status -v1 -r + fi + # screenmap + if test -n "$CONSOLE_SCREENMAP" -a \ + "$CONSOLE_SCREENMAP" != "none" -a \ + -x /usr/bin/setfont + then + echo Loading screenmap $CONSOLE_SCREENMAP + /usr/bin/setfont -m $CONSOLE_SCREENMAP + rc_status -v1 -r + fi + # console magic init string + if test -n "$CONSOLE_MAGIC" -a "$CONSOLE_MAGIC" != "none" ; then + echo Setting up console ttys + for i in /dev/tty[1-24]; do + echo -en "\033$CONSOLE_MAGIC" > $i + rc_status + done + rc_status -v1 -r + fi + fi + + ;; + stop) + ;; + check|status) + if test -r /var/run/keymap ; then + read current < /var/run/keymap + echo "Keymap $current is loaded." + else + rc_failed + fi + ;; + *) + echo "Usage: $0 {start|stop|restart|reload|status|check}" + exit 1 + ;; +esac +rc_exit diff --git a/latest-kernel b/latest-kernel new file mode 100755 index 0000000..3510a1c --- /dev/null +++ b/latest-kernel @@ -0,0 +1,61 @@ +#!/bin/sh +# +# Nico Schottelius +# Date: 21-Oct-2003 +# Last Modified: +# Versions: +# 1.6 2007-03-10 +# Only mail, if new kernel is newer. +# 1.5: 2006-03-20 +# Added URL to download kernel +# 1.4: 2006-02-03 +# Added Changelog + +#set -x + +MAILTO="kernel-announce@lists.schottelius.org" + +USERFILE=$HOME/.latest-kernel + +#VERSION=`curl ftp://ftp.kernel.org/pub/linux/kernel/v2.6/ | grep linux-2.6.0 | sort | tail -n 1 | awk ' { print $9 }' 2>/dev/null` +#VERSION=`curl ftp://ftp.kernel.org/pub/linux/kernel/v2.6/ | grep linux | awk '{ print $6 " " $7 " " $8 " " $9 }' | sort -M | tail -n 1` +#VERSION=`curl ftp://ftp.kernel.org/pub/linux/kernel/v2.6/ 2>/dev/null| awk '/linux/ { print $9 }' | sort | tail -n 1` +#VERSION=`curl ftp://ftp.kernel.org/pub/linux/kernel/v2.6/ 2>/dev/null| awk '/linux/ { print $9 }' | sort | tail -n 1 | sed 's/\.tar.*//'` +#VERSION=`curl ftp://ftp.kernel.org/pub/linux/kernel/v2.6/ 2>/dev/null| awk '/linux/ { print $9 }' | sed 's/\.tar.*//' | sort | tail -n 1` +#VERSION=$(curl -s http://ftp.kernel.org/pub/linux/kernel/v2.6/ 2>/dev/null | grep LATEST-IS | sed 's/.*LATEST-IS-//') + +VERSION=$(curl -s http://ftp.kernel.org/pub/linux/kernel/v2.6/ | grep LATEST-IS- | sed 's/.*LATEST-IS-\(.*\)<\/a.*/\1/') +OLDVERSION=`cat $USERFILE 2>/dev/null` + +if [ "$OLDVERSION" != "$VERSION" -a -n "$VERSION" ]; then + i=1 + newpart=$(echo $VERSION | cut -f${i} -d.) + + while [ "$newpart" ]; do + oldpart=$(echo $OLDVERSION | cut -f${i} -d.) + echo "${oldpart}::${newpart}" + if [ "$oldpart" -gt "$newpart" ]; then + echo "Abort: $VERSION is older then old $OLDVERSION" + exit 1 + fi + + i=$(($i+1)) + newpart=$(echo $VERSION | cut -f${i} -d.) + done + + CHANGELOG="http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-${VERSION}" + + BASEURL="http://www.kernel.org/pub/linux/kernel/v2.6/linux-" + EXTENSION=".tar.bz2" + FULL_URL=${BASEURL}${VERSION}${EXTENSION} + + ( + echo "Download kernel at $FULL_URL" + echo "" + curl -s ${CHANGELOG} + #) | mail -s "New Linux-Kernel: $VERSION" "$MAILTO" + ) | mutt -s "New Linux-Kernel: $VERSION" "$MAILTO" + + echo "$VERSION" > "$USERFILE" + echo "Neue Version ($VERSION) gesendet" +fi diff --git a/link-webs b/link-webs new file mode 100755 index 0000000..51448cc --- /dev/null +++ b/link-webs @@ -0,0 +1,16 @@ +#!/bin/sh + +WEBS=/home/server/www/webs +WWW=/home/server/www + +for tlds in $WEBS/*/*; do + mkdir -p $WWW/`basename $tlds` + cd $WWW/`basename $tlds`; + for domain in $tlds/*; do + mkdir -p `basename $domain` + cd `basename $domain` + for subdomain in $domain/*; do + ln -s $subdomain + done + done +done diff --git a/linkall b/linkall new file mode 100644 index 0000000..55beed0 --- /dev/null +++ b/linkall @@ -0,0 +1,19 @@ +cd /usr/bin +find /usr/*/bin/ | xargs ln -s + +cd /usr/lib +for a in /usr/*/lib/*; do + ln -s $a +done + +cd /usr/sbin +for a in /usr/*/sbin/*; do + ln -s $a +done + +cd /usr/include +for a in /usr/*/include/*; do + ln -s $a +done + + diff --git a/linux/get_logs.sh b/linux/get_logs.sh new file mode 100755 index 0000000..eb09fe1 --- /dev/null +++ b/linux/get_logs.sh @@ -0,0 +1,36 @@ +#!/bin/sh +# +# 2011 Nico Schottelius (nico-nsbin at schottelius.org) +# +# This file is part of nsbin. +# +# nsbin is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# nsbin is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with nsbin. If not, see . +# +# Initially written for SyGroup (www.sygroup.ch) +# Date: Mon Nov 14 11:45:11 CET 2005 +# +# Create report for kernel hackers +# + +# +# Standard variables (stolen from cconf) +# +__pwd="$(pwd -P)" +__mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" +__myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" + +prefix=$(uname -r) +dmesg > $prefix.dmesg +cp /var/log/Xorg.0.log $prefix.xorg +cp /proc/config.gz $prefix.config.gz diff --git a/loadipsec b/loadipsec new file mode 100644 index 0000000..c92d565 --- /dev/null +++ b/loadipsec @@ -0,0 +1,5 @@ +modprobe esp4 +modprobe ah4 +modprobe ip_gre +modprobe ipcomp +modprobe af_key diff --git a/loch2 b/loch2 new file mode 100755 index 0000000..1cb5623 --- /dev/null +++ b/loch2 @@ -0,0 +1 @@ +sshfs nutzer@loch.schottelius.org:/home/services/bibliothek/photos ~/photos diff --git a/logoff b/logoff new file mode 100755 index 0000000..cf376ac --- /dev/null +++ b/logoff @@ -0,0 +1,2 @@ +killall tail +killall tail diff --git a/logon b/logon new file mode 100755 index 0000000..259eb2a --- /dev/null +++ b/logon @@ -0,0 +1,4 @@ +/root/bin/show_apache_logs & +tail -f /var/log/syslog & +tail -f /var/log/mail.log & +tail -f /var/log/xferlog & diff --git a/mail.add.wddb b/mail.add.wddb new file mode 100755 index 0000000..93dcc18 --- /dev/null +++ b/mail.add.wddb @@ -0,0 +1,72 @@ +BASEDIR=/home/server/www/org/wddb/www/ + +function report() +{ + # sender + UFLINE + + # return path + RPLINE + + # we + RECIPIENT + + # delivered to.. + DTLINE + # set +} + +# continent +continent=`grep "^continent" "$1" | sed 's/.*="\(.*\)"/\1/'` + +case "$continent" in + africa|asia|australia|europe|northamerica|southamerica) ;; + *) report "Allowed continents: africa|asia|australia|europe|northamerica|southamerica" ;; +esac + +# other vars +essid=`grep "^essid" "$1" | sed 's/.*="\(.*\)"/\1/'` + +# remove possible dots +country=`grep "^country" "$1" | sed 's/.*="\(.*\)"/\1/' | sed 's/\.\.//g'` +area=`grep "^area" "$1" | sed 's/.*="\(.*\)"/\1/' | sed 's/\//-/g' | sed 's/ //c'` +mac=`grep "^mac" "$1" | sed 's/.*="\(.*\)"/\1/'` +rate=`grep "^rate" "$1" | sed 's/.*="\(.*\)"/\1/'` +wep=`grep "^wep" "$1" | sed 's/.*="\(.*\)"/\1/'` +hints=`grep "^hints" "$1" | sed 's/.*="\(.*\)"/\1/'` +location=`grep "^location" "$1" | sed 's/.*="\(.*\)"/\1/'` + +# check for empty fields +for a in essid country area mac rate wep hints location; do + eval tmp="\$$a" + if [ -z "$tmp" ]; then + report "Empty field: $a" + fi +done + +if [ ! -f $BASEDIR/$continent/$country/$area.html ]; then + cat << EOF > "$1" + + + wddb.org - WarDriver's DataBase + + + + + +else + lines=`cat "$BASEDIR/$continent/$country/$area.html" | wc |awk '{ print $1 }'` + use_lines=$[$lines-7] + head -n $use_lines "$BASEDIR/$continent/$country/$area.html" > "$1" + +fi + +cat << EOF >> "$1" + +
    + << One step back +

    Submit new network or changes + + + +EOF diff --git a/maildirnotmuchdump b/maildirnotmuchdump new file mode 100755 index 0000000..c40a051 --- /dev/null +++ b/maildirnotmuchdump @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +file=.notmuch/dump.xz + +cd ~/Maildir +notmuch dump | xz > "$file" +git commit -m "Update notmuch dump" "$file" diff --git a/mailnotify b/mailnotify new file mode 100755 index 0000000..86e5874 --- /dev/null +++ b/mailnotify @@ -0,0 +1,218 @@ +#!/usr/bin/perl -wT +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html + +# Colas (http://colas.nahaboo.net) +# modifications from mailnotify script from Dec 2001 release: +# - email is now optional, is fetched from the user homepage +# - webs not beginning by a capital letter are ignored ( _default, ...) +# - no mail is sent to TWikiGuest +# - if user is a group, recurses through its members + +# Set library paths in @INC, at compile time +BEGIN { unshift @INC, '.'; require 'setlib.cfg'; } + +use TWiki; +use TWiki::Net; + +my $debug = ! ( @ARGV && $ARGV[0] eq "-q" ); + +&main(); + +sub main +{ + &TWiki::basicInitialize(); + + $debug && print "TWiki mail notification\n"; + $debug && print "- to suppress all normal output: mailnotify -q\n"; + + my $dataDir = &TWiki::getDataDir(); + opendir( DIR, "$dataDir" ) or die "could not open $dataDir"; + @weblist = grep !/^\.\.?$/, readdir DIR; + closedir DIR; + foreach $web ( @weblist ) { + # Only process webs with normal names, i.e. not starting with '_' + if( -d "$dataDir/$web" && &TWiki::isWebName($web) ) { + processWeb( $web ); + + # remove obsolete .lock files + &TWiki::Store::removeObsoleteTopicLocks( $web ); + } + } + $debug && print "End TWiki mail notification\n"; +} + +sub processWeb +{ + my( $web) = @_; + + my ( $topic, $webName, $dummy, $userName, $dataDir) = + &TWiki::initialize( "/$web", "nobody" ); + $dummy = ""; # to suppress warning + + $debug && print "Checking TWiki.$webName\n"; + + if( ! &TWiki::Store::webExists( $webName ) ) { + print STDERR "* ERROR: TWiki mailnotify does not find web $webName\n"; + return; + } + + my @notifylist = TWiki::getEmailNotifyList($webName); + unless ( scalar @notifylist ) { + $debug && print "\n"; + return; + } + + my $emailbody = ""; + my $topiclist = ""; + + my $skin = TWiki::Prefs::getPreferencesValue( "SKIN" ); + my $text = TWiki::Store::readTemplate( "changes", $skin ); + my $changes= &TWiki::Store::readFile( "$dataDir/$webName/.changes" ); + + my %exclude; + + $text = &TWiki::handleCommonTags($text, $topic); + $text =~ s/\%META{.*?}\%//go; # remove %META{"parent"}% + + if( $TWiki::doRemoveImgInMailnotify ) { + # change images to [alt] text if there, else remove image + $text =~ s/]*>/[$1]/goi; + $text =~ s/]>//goi; + } + + my $before = ""; + my $after = ""; + ( $before, $text, $after) = split( /%REPEAT%/, $text ); + $emailbody = &TWiki::getRenderedVersion( $before ); + $after = &TWiki::getRenderedVersion( $after ); + + my $prevLastmodify = &TWiki::Store::readFile( "$dataDir/$webName/.mailnotify" ) || "0"; + my $currLastmodify = ""; + my $scriptSuffix = $TWiki::scriptSuffix; + my $scriptUrlPath = $TWiki::scriptUrlPath; + my $scriptUrl = "$TWiki::urlHost$scriptUrlPath"; + my $frev = ""; + + foreach( reverse split( /\n/, $changes ) ) { + # Parse lines from .changes: + # + # WebHome FredBloggs 1014591347 21 + + my ($topicName, $userName, $changeTime, $revision) = split( /\t/); + $newText = $text; # Repeating text from email template + + if( ( ! %exclude ) || ( ! $exclude{ $topicName } ) ) { + next unless TWiki::Store::topicExists( $webName, $topicName ); + + if( ! $currLastmodify ) { + # newest entry + $time = &TWiki::formatGmTime( $prevLastmodify ); + if( $prevLastmodify eq $changeTime ) { + # newest entry is same as at time of previous notification + $debug && print "- Note: No topics changed since $time\n"; + return; + } + $currLastmodify = $changeTime; + $debug && print "- Changed topics since $time: "; + } + + if( $prevLastmodify >= $changeTime ) { + #print "Date: found item of last notification\n"; + # found item of last notification + last; + } + $frev = ""; + if( $revision ) { + if( $revision > 1 ) { + $frev = "r1.$revision"; + } else { + $frev = "NEW"; + } + } + + # Create entry in HTML attachment + $newText = $text; + $newText =~ s/%TOPICNAME%/$topicName/go; + $wikiuser = &TWiki::userToWikiName( $userName ); + + $newText =~ s/%AUTHOR%/$wikiuser/go; + $newText =~ s/%LOCKED%//go; + $time = &TWiki::formatGmTime( $changeTime ); + $newText =~ s/%TIME%/$time/go; + $newText =~ s/%REVISION%/$frev/go; + $newText = &TWiki::getRenderedVersion( $newText ); + + $head = &TWiki::Store::readFileHead( "$dataDir\/$webName\/$topicName.txt", 16 ); + $head = &TWiki::makeTopicSummary( $head, $topicName, $webName ); + $newText =~ s/%TEXTHEAD%/$head/go; + + $emailbody .= $newText; + $exclude{ $topicName } = "1"; + + $debug && print "$topicName "; + + # URL-encode topic names for use of I18N topic names in plain text + $webNameEnc = TWiki::handleUrlEncode( $webName ); + my $topicNameEnc = TWiki::handleUrlEncode( $topicName ); + + # Create entry in plain-text email body + $newText = "- $topicName ($wikiuser)\n $scriptUrl/view$scriptSuffix/$webNameEnc/$topicNameEnc\n"; + $newText =~ s/Main\.//go; + $topiclist = "$topiclist$newText"; + } + } + + if( $topiclist eq "" ) { + $debug && print "- Note: Topic list is empty\n"; + return; + } + $debug && print "\n"; + + $emailbody .= $after; + + my $from = &TWiki::Prefs::getPreferencesValue("WIKIWEBMASTER"); + + my $notifylist = join ', ', @notifylist; + + $text = &TWiki::Store::readTemplate( "mailnotify", $skin ); + $text =~ s/%EMAILFROM%/$from/go; + $text =~ s/%EMAILTO%/$notifylist/go; + $text =~ s/%EMAILBODY%/$emailbody/go; + $text =~ s/%TOPICLIST%/$topiclist/go; + $text =~ s/%LASTDATE%/&TWiki::formatGmTime($prevLastmodify)/geo; + $text = &TWiki::handleCommonTags( $text, $topic ); + + # change absolute addresses to relative ones & do some cleanup + $text =~ s/(href=\")$scriptUrlPath/$1..\/../goi; + $text =~ s/(action=\")$scriptUrlPath/$1..\/../goi; + $text =~ s|( ?) *\n?|$1|gois; + + $debug && print "- Sending mail notification to: $notifylist\n"; + + my $error = &TWiki::Net::sendEmail( $text ); + if( $error ) { + print STDERR "* $error\n"; + $debug && print "- End TWiki.$webName\n"; + + } else { + &TWiki::Store::saveFile( "$dataDir/$webName/.mailnotify", $currLastmodify ); + + $debug && print "- End TWiki.$webName, mail notification sent\n"; + } +} + diff --git a/mainemacs b/mainemacs new file mode 100755 index 0000000..8fb818c --- /dev/null +++ b/mainemacs @@ -0,0 +1,2 @@ +#!/bin/sh +emacs --funcall "mu4e" --name mainemacs diff --git a/manage b/manage new file mode 100755 index 0000000..225312f --- /dev/null +++ b/manage @@ -0,0 +1,266 @@ +#!/usr/bin/perl -wT +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 2002-2003 Peter Thoeny, peter@thoeny.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html +# +# The manage script is used to manage some actions like creating +# a new web. + +# Set library paths in @INC, at compile time +BEGIN { unshift @INC, '.'; require 'setlib.cfg'; } + +use CGI::Carp qw( fatalsToBrowser ); +use CGI; +use File::Copy; +use TWiki; + +use strict; + +&main(); + +#========================= +sub main +{ + my $query = new CGI; + my $action = $query->param( 'action' ) || ""; + + if( $action eq "createweb" ) { + createWeb( $query ); + + # } elsif( $action eq "othercommand" ) { + + } elsif( $action ) { + oopsRedirectMsg( $query, "", "", "", "msg_unrecognized_action", $action ); + } else { + oopsRedirectMsg( $query, "", "", "", "msg_missing_action" ); + } +} + +#========================= +sub oopsRedirectMsg +{ + my( $theQuery, $theWeb, $theTopic, $theOopsTmpl, $theTmplVar, $theMsg2, $theMsg3, $theMsg4 ) = @_; + + $theWeb = $TWiki::mainWebname unless( $theWeb ); + $theTopic = $TWiki::mainTopicname unless( $theTopic ); + $theOopsTmpl = "oopsmanage" unless( $theOopsTmpl ); + my $url = &TWiki::getOopsUrl( $theWeb, $theTopic, $theOopsTmpl, + "%TMPL:P{\"$theTmplVar\"}%", $theMsg2, $theMsg3, $theMsg4 ); + TWiki::redirect( $theQuery, $url ); +} + +#========================= +sub createWeb +{ + my( $query ) = @_; + + my $thePathInfo = $query->path_info(); + my $theRemoteUser = $query->remote_user(); + my $theTopic = $query->param( 'topic' ); + + my $newWeb = $query->param( 'newweb' ) || ""; + my $newTopic = $query->param( 'newtopic' ) || ""; + my $baseWeb = $query->param( 'baseweb' ) || ""; + my $webBgColor = $query->param( 'webbgcolor' ) || ""; + my $siteMapWhat = $query->param( 'sitemapwhat' ) || ""; + my $siteMapUseTo = $query->param( 'sitemapuseto' ) || ""; + my $noSearchAll = $query->param( 'nosearchall' ) || ""; + my $theUrl = $query->url; + my $oopsTmpl = "oopsmngcreateweb"; + + # initialize TWiki + my( $topicName, $webName, $dummy, $userName ) = + &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query ); + $dummy = ""; # avoid warning + + # check permission, user authorized to create webs? + my $wikiUserName = &TWiki::userToWikiName( $userName ); + unless( &TWiki::Access::checkAccessPermission( "manage", $wikiUserName, "", + $topicName, $webName ) ) { + # user has not permission to change the topic + my $url = &TWiki::getOopsUrl( $webName, $topicName, "oopsaccesscreateweb" ); + TWiki::redirect( $query, $url ); + return; + } + + if( $newWeb =~ /^_[a-zA-Z0-9_]+$/ ) { + # valid template web name, untaint + $newWeb =~ /(.*)/; + $newWeb = $1; + } elsif( TWiki::isWebName( $newWeb ) ) { + # valid web name, untaint + $newWeb =~ /(.*)/; + $newWeb = $1; + } elsif( $newWeb ) { + oopsRedirectMsg( $query, "", "", $oopsTmpl, "msg_web_name" ); + return; + } else { + oopsRedirectMsg( $query, "", "", $oopsTmpl, "msg_web_missing" ); + return; + } + + if( TWiki::Store::topicExists( $newWeb, $TWiki::mainTopicname ) ) { + oopsRedirectMsg( $query, "", "", $oopsTmpl, "msg_web_exist", $newWeb ); + return; + } + + $baseWeb =~ s/$TWiki::securityFilter//go; + $baseWeb =~ /(.*)/; + $baseWeb = $1; + + unless( TWiki::Store::topicExists( $baseWeb, $TWiki::mainTopicname ) ) { + oopsRedirectMsg( $query, "", "", $oopsTmpl, "msg_base_web", $baseWeb ); + return; + } + + unless( $webBgColor =~ /\#[0-9a-f]{6}/i ) { + oopsRedirectMsg( $query, "", "", $oopsTmpl, "msg_web_color" ); + return; + } + + # create the empty web + my $err = createEmptyWeb( $newWeb ); + if( $err ) { + oopsRedirectMsg( $query, "", "", $oopsTmpl, "msg_web_create", $err ); + return; + } + + # copy needed topics from base web + $err = copyWebTopics( $baseWeb, $newWeb ); + if( $err ) { + oopsRedirectMsg( $query, $newWeb, "", $oopsTmpl, "msg_web_copy_topics", $err ); + return; + } + + # patch WebPreferences + $err = patchWebPreferences( $newWeb, $TWiki::webPrefsTopicname, $webBgColor, + $siteMapWhat, $siteMapUseTo, $noSearchAll ); + if( $err ) { + oopsRedirectMsg( $query, $newWeb, $TWiki::webPrefsTopicname, $oopsTmpl, "msg_patch_webpreferences", $err ); + return; + } + + # everything OK, redirect to last message + $newTopic = $TWiki::mainTopicname unless( $newTopic ); + oopsRedirectMsg( $query, $newWeb, $newTopic, $oopsTmpl, "msg_create_web_ok" ); + return; +} + +#========================= +sub createEmptyWeb +{ + my ( $theWeb ) = @_; + + my $dir = "$TWiki::dataDir/$theWeb"; + umask( 0 ); + unless( mkdir( $dir, 0775 ) ) { + return( "Could not create $dir, error: $!" ); + } + + if ( $TWiki::useRcsDir ) { + unless( mkdir( "$dir/RCS", 0775 ) ) { + return( "Could not create $dir/RCS, error: $!" ); + } + } + + unless( open( FILE, ">$dir/.changes" ) ) { + return( "Could not create changes file $dir/.changes, error: $!" ); + } + print FILE ""; # empty file + close( FILE ); + + unless( open( FILE, ">$dir/.mailnotify" ) ) { + return( "Could not create mailnotify timestamp file $dir/.mailnotify, error: $!" ); + } + print FILE ""; # empty file + close( FILE ); + return ""; +} + +#========================= +sub copyWebTopics +{ + my ( $theBaseWeb, $theNewWeb ) = @_; + + my $err = ""; + my @topicList = &TWiki::Store::getTopicNames( $theBaseWeb ); + unless( $theBaseWeb =~ /^_/ ) { + # not a template web, so filter for only Web* topics + @topicList = grep { /^Web/ } @topicList; + } + foreach my $topic ( @topicList ) { + $topic =~ s/$TWiki::securityFilter//go; + $topic =~ /(.*)/; + $topic = $1; + $err = copyOneTopic( $theBaseWeb, $topic, $theNewWeb ); + return( $err ) if( $err ); + } + return ""; +} + +#========================= +sub copyOneTopic +{ + my ( $theFromWeb, $theTopic, $theToWeb ) = @_; + + # FIXME: This should go into TWiki::Store + + # copy topic file + my $from = "$TWiki::dataDir/$theFromWeb/$theTopic.txt"; + my $to = "$TWiki::dataDir/$theToWeb/$theTopic.txt"; + unless( copy( $from, $to ) ) { + return( "Copy file ( $from, $to ) failed, error: $!" ); + } + umask( 002 ); + chmod( 0644, $to ); + + # copy repository file + # FIXME: Hack, no support for RCS subdirectory + $from .= ",v"; + $to .= ",v"; + unless( copy( $from, $to ) ) { + return( "Copy file ( $from, $to ) failed, error: $!" ); + } + umask( 002 ); + chmod( 0644, $to ); + + # FIXME: Copy also attachments if present + + return ""; +} + +#========================= +sub patchWebPreferences +{ + my ( $theWeb, $theTopic, $theWebBgColor, $theSiteMapWhat, $theSiteMapUseTo, $doNoSearchAll ) = @_; + + my( $meta, $text ) = &TWiki::Store::readTopic( $theWeb, $theTopic ); + + my $siteMapList = ""; + $siteMapList = "on" if( $theSiteMapWhat ); + $text =~ s/(\s\* Set WEBBGCOLOR =)[^\n\r]*/$1 $theWebBgColor/os; + $text =~ s/(\s\* Set SITEMAPLIST =)[^\n\r]*/$1 $siteMapList/os; + $text =~ s/(\s\* Set SITEMAPWHAT =)[^\n\r]*/$1 $theSiteMapWhat/os; + $text =~ s/(\s\* Set SITEMAPUSETO =)[^\n\r]*/$1 $theSiteMapUseTo/os; + $text =~ s/(\s\* Set NOSEARCHALL =)[^\n\r]*/$1 $doNoSearchAll/os; + + my $err = &TWiki::Store::saveTopic( $theWeb, $theTopic, $text, $meta ); + + return $err; +} + +#========================= +# EOF diff --git a/map-touchscreen b/map-touchscreen new file mode 100755 index 0000000..c3787e2 --- /dev/null +++ b/map-touchscreen @@ -0,0 +1,2 @@ +#!/bin/sh +xinput map-to-output "ELAN Touchscreen" eDP1 diff --git a/minifirewall b/minifirewall new file mode 100644 index 0000000..0cbad06 --- /dev/null +++ b/minifirewall @@ -0,0 +1,3 @@ +modprobe ip_tables +iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE +echo 1 > /proc/sys/net/ipv4/ip_forward diff --git a/monotone-snapshotting b/monotone-snapshotting new file mode 100755 index 0000000..801f359 --- /dev/null +++ b/monotone-snapshotting @@ -0,0 +1,36 @@ +#!/bin/sh +# +# Nico Schottelius (nico-linux@schottelius.org) +# Juli 2004 +# extract a snapshot from a monotone database +# Version: 0.1 +# + +######### must be changed ############ +DESTINATION=/home/server/ftp/pub/linux/gpm/ +PACKAGE=gpm +DB=/home/server/monotone/gpm-new.db +BRANCH=org.schottelius.gpm + +######### may be changed ############ +MONOTONE=/usr/packages/monotone-0.17/bin/monotone +TMP=/tmp + +########### no changes below here needed ######## +DATE=`date +%Y-%m-%d` +YESTERDAY=`date -d yesterday +%Y-%m-%d` +DIRNAME="$PACKAGE"-snapshot-"$DATE" +TARNAME="${DIRNAME}.tar.bz2" +YESTERDAY_TARFILE="${DESTINATION}/${PACKAGE}-snapshot-${YESTERDAY}.tar.bz2" + +########### program code ######## +cd "$TMP" + +"$MONOTONE" --db="$DB" --branch="$BRANCH" co "$DIRNAME" 2>/dev/null + +tar cfj "$TARNAME" "$DIRNAME" && mv "$TARNAME" "$DESTINATION" + +# cleanup +rm -f "$YESTERDAY_TARFILE" +rm -fr "$DIRNAME" "$TARNAME" + diff --git a/mount-luchsingen b/mount-luchsingen new file mode 100755 index 0000000..cea3025 --- /dev/null +++ b/mount-luchsingen @@ -0,0 +1 @@ +sshfs nutzer@luchsingen.schottelius.org:/ ~/.loch diff --git a/mplayer-audio-hdmi b/mplayer-audio-hdmi new file mode 100755 index 0000000..7c922c3 --- /dev/null +++ b/mplayer-audio-hdmi @@ -0,0 +1,3 @@ +#!/bin/sh + +mplayer -ao alsa:device=hw=0.7 "$@" diff --git a/mysql-db-dump.sh b/mysql-db-dump.sh new file mode 100755 index 0000000..8cd7a2b --- /dev/null +++ b/mysql-db-dump.sh @@ -0,0 +1,53 @@ +#!/bin/sh +# Nico Schottelius +# written for SyGroup (www.sygroup.ch) +# Date: Fr Nov 18 11:41:25 CET 2005 +# Last Modified: + +if [ $# -ne 1 ]; then exit 23; fi + +DB=$1 + +export DESTDIR=/home/server/backup/db/ +export GITDIR=/home/server/git/datenbank +export LOG=/var/log/gitdump.log +export DATUM=$(date +%Y-%m-%d) +export ZEIT=$(date +%H:%M) + +export DDIR="$DESTDIR/$DATUM" +export DFILE="$DDIR/$ZEIT" +export GITFILE="$GITDIR/current" + +echo "Start: $(date) $DB" >> "$LOG" + +mkdir -p "$DDIR" +# +# -u root \ +# -p \ +# Dump ins archiv mit heilen umlauten, unlesbar +mysqldump \ + --opt \ + --add-drop-table \ + --add-locks \ + --all \ + --quick \ + --lock-tables \ + "$DB" > ${DFILE} + +#ln -f "$DFILE" "$GITDIR/current" + +# Dump ins git mit kaputten umlauten, aber lesbar +mysqldump \ + --skip-opt \ + --add-drop-table \ + --add-locks \ + --all \ + --quick \ + --lock-tables \ + -c \ + "$DB" > ${GITFILE} + +( cd "$GITDIR"; cg-commit -m "DB-Dump: $DB vom $DATUM um $ZEIT" >> "$LOG" 2>&1 ) + +echo "Ende: $(date) $DB" >> "$LOG" + diff --git a/new.wddb.entry b/new.wddb.entry new file mode 100644 index 0000000..95e59d7 --- /dev/null +++ b/new.wddb.entry @@ -0,0 +1,27 @@ +# continent="africa|asia|australia|europe|northamerica|southamerica" +continent="europe" + +# the country, spoken in english +country="germany" + +# use: state/city/part_of_city/anymoredetailedinfo +# you need to follow the '/' syntax! +area="niedersachsen/garbsen/garbsen-mitte/" + +# network id +essid="Waevelan" + +# mac +mac="00:00:00:00:00" + +# rate in Mbit/s +rate="11" + +# Wireless Insecure Privacy? (y/n) +wep="n" + +# any hints? +hints="dhcp available" + +# exact location description +location="on the road from Schloss Ricklingen to Garbsen" diff --git a/newnameserver b/newnameserver new file mode 100644 index 0000000..3b5b8f0 --- /dev/null +++ b/newnameserver @@ -0,0 +1,118 @@ +#!/bin/bash +# Author: Nico Schottelius ( nicos@pcsystems.de ) +# Last Modified by: +# Date: 20th of January 2000 +# Last Changed: 20th of January +# Description: Skript which does mapping and reverse +# + +# My variables :-) +host="" +ip="" +choice="y" +class="" +domain="mignet.magrathea.de" + + +# Title +echo "## Neuer Nameserver-Eintrag ##" +read -p "Bitte Domain eingeben ($domain) : " domain + +# Check if zero domain +if [ -z "$domain" ]; then domain="mignet.magrathea.de";fi + +# Main loop for more than one host in a domain +while [ "$choice" = "y" -o "$choice" = "Y" ] +do + +read -p "Hostname tippen: " host +read -p "IP klopfen: " ip +read -p "NetClass eingeben: (a,b,c): " class + +echo -n "Uno momento..." + + +# The real program + +# First mapping +if [ -e /var/named/$domain ]; + then + echo "$host IN A $ip" >> /var/named/$domain +else + cat << EOF >> /etc/named.conf + +zone "$domain" in { + type master; + file "$domain"; +}; +EOF + cat /var/named/sample/domain > /var/named/$domain + echo "$host IN A $ip" >> /var/named/$domain +fi +echo -n "." + +# Lookup the host and net id, to choose the right arpa file +# For A it is net=172 host=16.1.1 +if [ $class = a -o $class = A ]; + then + # Get the arpa file + net=`echo $ip | cut -d. -f1` + + # Get the hostid. + ho=`echo $ip |cut -d. -f2-4` + + # The reverse Net + rnet=$net + +# For B it is net=172.16 host=1.1 +elif [ $class = b -o $class = B ]; + then + # Get the arpa file + net=`echo $ip | cut -d. -f1-2` + + # Get the hostid. + ho=`echo $ip | cut -d. -f3-4` + + # The reverse Net + rnet1=`echo $ip | cut -d. -f1` + rnet2=`echo $ip | cut -d. -f2` + rnet="$rnet2.$rnet1" + +# For C it is net=172.16.1 host=1 +elif [ $class = c -o $class = C ]; + then + # Get the arpa file + net=`echo $ip | cut -d. -f1-3` + + # Get the hostid. + ho=`echo $ip | cut -d. -f4` + + # The reverse Net + rnet1=`echo $ip | cut -d. -f1` + rnet2=`echo $ip | cut -d. -f2` + rnet3=`echo $ip | cut -d. -f3` + rnet="$rnet3.$rnet2.$rnet1" +fi + +echo -n "." + +if [ -e /var/named/reverse/$net ]; + then + echo "$ho IN PTR $host.$domain." >> /var/named/reverse/$net + +else + cat << EOF >> /etc/named.conf + +zone "${rnet}.in-addr.arpa" in { + type master; + file "reverse/$net"; +}; +EOF + + cat /var/named/sample/reverse > /var/named/reverse/$net + echo "$ho IN PTR $host.$domain." >> /var/named/reverse/$net +fi +echo -n "." +echo 'Finito :-)' +read -p "Noch einen Host in $domain eintragen ? " choice +done diff --git a/nmapscan b/nmapscan new file mode 100644 index 0000000..b3ef628 --- /dev/null +++ b/nmapscan @@ -0,0 +1,9 @@ +BASE=192.168.0 +SMBCLIENT="nmap" + +i=0 + +while [ $i -lt 255 ]; do + $SMBCLIENT "$BASE"."$i" + i=$[$i+1] +done diff --git a/notmuch-emacs-mua b/notmuch-emacs-mua new file mode 100644 index 0000000..4404cd7 --- /dev/null +++ b/notmuch-emacs-mua @@ -0,0 +1,151 @@ +#!/usr/bin/env bash +# +# notmuch-emacs-mua - start composing a mail on the command line +# +# Copyright © 2014 Jani Nikula +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see http://www.gnu.org/licenses/ . +# +# Authors: Jani Nikula +# + +set -eu + +# escape: "expand" '\' as '\\' and '"' as '\"' +# calling convention: escape -v var "$arg" (like in bash printf). +escape () +{ + local __escape_arg__=${3//\\/\\\\} + printf -v $2 '%s' "${__escape_arg__//\"/\\\"}" +} + +EMACS=${EMACS:-emacs} +EMACSCLIENT=${EMACSCLIENT:-emacsclient} + +PRINT_ONLY= +NO_WINDOW= +USE_EMACSCLIENT= +AUTO_DAEMON= +CREATE_FRAME= + +# The crux of it all: construct an elisp progn and eval it. +ELISP="(prog1 'done (require 'notmuch) (notmuch-mua-new-mail)" + +# Short options compatible with mutt(1). +while getopts :s:c:b:i:h opt; do + # Handle errors and long options. + case "${opt}" in + :) + echo "$0: short option -${OPTARG} requires an argument." >&2 + exit 1 + ;; + \?) + opt=$1 + if [ "${OPTARG}" != "-" ]; then + echo "$0: unknown short option -${OPTARG}." >&2 + exit 1 + fi + + case "${opt}" in + # Long options with arguments. + --subject=*|--to=*|--cc=*|--bcc=*|--body=*) + OPTARG=${opt#--*=} + opt=${opt%%=*} + ;; + # Long options without arguments. + --help|--print|--no-window-system|--client|--auto-daemon|--create-frame) + ;; + *) + echo "$0: unknown long option ${opt}, or argument mismatch." >&2 + exit 1 + ;; + esac + # getopts does not do this for what it considers errors. + OPTIND=$((OPTIND + 1)) + ;; + esac + + escape -v OPTARG "${OPTARG-none}" + + case "${opt}" in + --help|h) + exec man notmuch-emacs-mua + ;; + --subject|s) + ELISP="${ELISP} (message-goto-subject) (insert \"${OPTARG}\")" + ;; + --to) + ELISP="${ELISP} (message-goto-to) (insert \"${OPTARG}, \")" + ;; + --cc|c) + ELISP="${ELISP} (message-goto-cc) (insert \"${OPTARG}, \")" + ;; + --bcc|b) + ELISP="${ELISP} (message-goto-bcc) (insert \"${OPTARG}, \")" + ;; + --body|i) + ELISP="${ELISP} (message-goto-body) (cd \"${PWD}\") (insert-file \"${OPTARG}\")" + ;; + --print) + PRINT_ONLY=1 + ;; + --no-window-system) + NO_WINDOW="-nw" + ;; + --client) + USE_EMACSCLIENT="yes" + ;; + --auto-daemon) + AUTO_DAEMON="--alternate-editor=" + CREATE_FRAME="-c" + ;; + --create-frame) + CREATE_FRAME="-c" + ;; + *) + # We should never end up here. + echo "$0: internal error (option ${opt})." >&2 + exit 1 + ;; + esac + + shift $((OPTIND - 1)) + OPTIND=1 +done + +# Positional parameters. +for arg; do + escape -v arg "${arg}" + ELISP="${ELISP} (message-goto-to) (insert \"${arg}, \")" +done + +# Kill the terminal/frame if we're creating one. +if [ -z "$USE_EMACSCLIENT" -o -n "$CREATE_FRAME" -o -n "$NO_WINDOW" ]; then + ELISP="${ELISP} (setq message-exit-actions (list #'save-buffers-kill-terminal))" +fi + +# End progn. +ELISP="${ELISP})" + +if [ -n "$PRINT_ONLY" ]; then + echo ${ELISP} + exit 0 +fi + +if [ -n "$USE_EMACSCLIENT" ]; then + # Evaluate the progn. + exec ${EMACSCLIENT} ${NO_WINDOW} ${CREATE_FRAME} ${AUTO_DAEMON} --eval "${ELISP}" +else + exec ${EMACS} ${NO_WINDOW} --eval "${ELISP}" +fi diff --git a/nottoomuch-addresses.sh b/nottoomuch-addresses.sh new file mode 100755 index 0000000..ce5cd5a --- /dev/null +++ b/nottoomuch-addresses.sh @@ -0,0 +1,527 @@ +#!/bin/sh +# -*- cperl -*- + +case $* in (''|--*) exec perl -x "$0" "$@" ;; (???*) ;; (*) exit 0 ;; esac +grep -aiF "$*" "${XDG_CONFIG_HOME:-$HOME/.config}/nottoomuch/addresses.active" +case $? in 0|1) exit 0; esac +exit $? + +# $ nottoomuch-addresses.sh $ +# +# Created: Thu 27 Oct 2011 17:38:46 EEST too +# Last modified: Sat 29 Mar 2014 17:12:14 +0200 too + +# Add this to your notmuch elisp configuration file: +# +# (require 'notmuch-address) +# (setq notmuch-address-command "/path/to/nottoomuch-addresses.sh") +# (notmuch-address-message-insinuate) + +# Documentation at the end. Encoding: utf-8. + +#!perl +# line 24 +# - 24 -^ + +# HISTORY +# +# Version 2.2 2014-03-29 15:12:14 UTC +# * In case there is both {phrase} and (comment) in an email address, +# append comment to the phrase. This will make more duplicates to be +# removed. Now there can be: +# +# "phrase" +# "phrase (comment)" +# (comment) +# * In case email address is in form "someuser@somehost" +# i.e. the phrase is exactly the same as

    , phrase is dropped. +# +# Version 2.1 2012-02-22 14:58:58 UTC +# * Fixed a bug where decoding matching but unknown or malformed =?...?=- +# encoded parts in email addresses lead to infinite loop. +# +# Version 2.0 2012-01-14 03:45:00 UTC +# * Added regexp-based ignores using /regexp/[i] syntax in ignore file. +# * Changed addresses file header to v4; 'addresses' file now contains all +# found addresses plus some metainformation added at the end of the file. +# Filtered (by ignores) address list is now in new 'addresses.active' +# file and the fgrep code at the beginning now uses this "active" file. +# Addresses file with header v2 and v3 are supported for reading. +# * Encoded address content is now recursively decoded. +# +# Version 1.6 2011-12-29 06:42:42 UTC +# * Fixed 'encoded-text' recognition and concatenations, and underscore +# to space replacements. Now quite RFC 2047 "compliant". +# +# Version 1.5 2011-12-22 20:20:32 UTC +# * Changed search to exit with zero value (also) if no match found. +# * Changed addresses file header (v3) to use \t as separator. Addresses +# file containing previous version header (v2) can also be read. +# * Removed outdated information about sorting in ASCII order. +# +# Version 1.4 2011-12-14 19:24:28 UTC +# * Changed to run notmuch search --sort=newest-first --output=files ... +# (instead of notmuch show ...) and read headers from files internally. +# * Fixed away joining uninitialized $phrase value to address line. +# +# Version 1.3 2011-12-12 15:41:05 UTC +# * Changed to store/show addresses in 'newest first' order. +# * Changed addresses file header to force address file rebuild. +# +# Version 1.2 2011-12-06 18:00:00 UTC +# * Changed search work case-insensitively -- grep(1) does it locale-aware. +# * Changed this program execute from /bin/sh (wrapper). +# +# Version 1.1 2011-12-02 17:11:33 UTC +# * Removed Naïve assumption that no-one runs update on 'dumb' terminal. +# * Check address database file first line whether it is known to us. +# +# Thanks to Bart Bunting for providing a good bug report. +# +# Version 1.0 2011-11-30 20:56:10 UTC +# * Initial release. + +use 5.8.1; +use strict; +use warnings; + +use Encode qw/encode_utf8 find_encoding/; +use MIME::Base64 'decode_base64'; +use MIME::QuotedPrint 'decode_qp'; + +no encoding; + +my $configdir = ($ENV{XDG_CONFIG_HOME}||$ENV{HOME}.'/.config').'/nottoomuch'; +my $adbpath = $configdir . '/addresses'; +my $ignpath = $configdir . '/addresses.ignore'; +my $actpath = $configdir . '/addresses.active'; + +unless (@ARGV) +{ + require Pod::Usage; + Pod::Usage::pod2usage( -verbose => 0, -exitval => 0 ); + exit 1; +} + +if ($ARGV[0] eq '--help') +{ + $SIG{__DIE__} = sub { + $SIG{__DIE__} = 'DEFAULT'; + require Pod::Usage; + Pod::Usage::pod2usage( -verbose => 2, -exitval => 0, -noperldoc => 1 ); + exit 1; + }; + require Pod::Perldoc; + $SIG{__DIE__} = 'DEFAULT'; + # in case PAGER is not set, perldoc runs /usr/bin/perl -isr ... + if ( ($ENV{PAGER} || '') eq 'less') { + $ENV{LESS} .= 'R' if ($ENV{LESS} || '') !~ /[rR]/; + } + @ARGV = ( $0 ); + exit ( Pod::Perldoc->run() ); +} + +my @list; + +if ($ARGV[0] eq '--update') +{ + sub mkdirs($); + sub mkdirs($) { + die "'$_[0]': not a (writable) directory\n" if -e $_[0]; + return if mkdir $_[0]; # no mode: 0777 & ~umask used + local $_ = $_[0]; + mkdirs $_ if s|/?[^/]+$|| and $_; + mkdir $_[0] or die "Cannot create '$_[0]': $!\n"; + } + + mkdirs $configdir unless -d $configdir; + + unlink $adbpath if defined $ARGV[1] and $ARGV[1] eq '--rebuild'; + + my ($sstr, $acount) = (0, 0); + if (-s $adbpath) { + die "Cannot open '$adbpath': $!\n" unless open I, '<', $adbpath; + sysread I, $_, 18; + # new header: "v4/dd/dd/dd/dd/dd\n" where / == '\t' (but match also v2) + if (/^v[234]\s(\d\d)\s(\d\d)\s(\d\d)\s(\d\d)\s(\d\d)\n$/) { + $sstr = "$1$2$3$4$5" - 86400 * 7; # one week extra to (re)look. + $sstr = 0 if $sstr < 0; + } + close I if $sstr == 0; + } + if ($sstr > 0) { + print "Updating '$adbpath', since $sstr.\n"; + $sstr .= '..'; + } + else { + print "Creating '$adbpath'. This may take some time...\n"; + $sstr = '*'; + } + my (%ign_hash, @ign_relist); + if (-f $ignpath) { + die "Cannot open '$ignpath': $!\n" unless open J, '<', $ignpath; + while () { + next if /^\s*#/; + if (m|^/(.*)/(\w*)\s*$|) { + if ($2 eq 'i') { + push @ign_relist, qr/$1/i; + } + else { + push @ign_relist, qr/$1/; + } + } + else { + s/\s+$/\n/; + $ign_hash{$_} = 1; + } + } + close J; + } + + my $sometime = time; + die "Cannot open '$adbpath.new': $!\n" unless open O, '>', $adbpath.'.new'; + die "Cannot open '$actpath.new': $!\n" unless open A, '>', $actpath.'.new'; + $_ = $sometime; s/(..)\B/$1\t/g; # FYI: s/..\B\K/\t/g requires perl 5.10. + print O "v4\t$_\n"; + + # The following code block is from Email::Address, almost verbatim. + # The reasons to snip code I instead of just 'use Email::Address' are: + # 1) Some systems ship Mail::Address instead of Email::Address + # 2) Every user doesn't have ability to install Email::Address + # --8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<-- + + ## no critic RequireUseWarnings + # support pre-5.6 + + #$VERSION = '1.889'; + my $COMMENT_NEST_LEVEL = 2; + + my $CTL = q{\x00-\x1F\x7F}; + my $special = q{()<>\\[\\]:;@\\\\,."}; + + my $text = qr/[^\x0A\x0D]/; + + my $quoted_pair = qr/\\$text/; + + my $ctext = qr/(?>[^()\\]+)/; + my ($ccontent, $comment) = (q{})x2; + for (1 .. $COMMENT_NEST_LEVEL) { + $ccontent = qr/$ctext|$quoted_pair|$comment/; + $comment = qr/\s*\((?:\s*$ccontent)*\s*\)\s*/; + } + my $cfws = qr/$comment|\s+/; + + my $atext = qq/[^$CTL$special\\s]/; + my $atom = qr/$cfws*$atext+$cfws*/; + my $dot_atom_text = qr/$atext+(?:\.$atext+)*/; + my $dot_atom = qr/$cfws*$dot_atom_text$cfws*/; + + my $qtext = qr/[^\\"]/; + my $qcontent = qr/$qtext|$quoted_pair/; + my $quoted_string = qr/$cfws*"$qcontent+"$cfws*/; + + my $word = qr/$atom|$quoted_string/; + +# XXX: This ($phrase) used to just be: my $phrase = qr/$word+/; It was changed +# to resolve bug 22991, creating a significant slowdown. Given current speed +# problems. Once 16320 is resolved, this section should be dealt with. +# -- rjbs, 2006-11-11 + #my $obs_phrase = qr/$word(?:$word|\.|$cfws)*/; + +# XXX: ...and the above solution caused endless problems (never returned) when +# examining this address, now in a test: +# admin+=E6=96=B0=E5=8A=A0=E5=9D=A1_Weblog-- ATAT --test.socialtext.com +# So we disallow the hateful CFWS in this context for now. Of modern mail +# agents, only Apple Web Mail 2.0 is known to produce obs-phrase. +# -- rjbs, 2006-11-19 + my $simple_word = qr/$atom|\.|\s*"$qcontent+"\s*/; + my $obs_phrase = qr/$simple_word+/; + + my $phrase = qr/$obs_phrase|(?:$word+)/; + + my $local_part = qr/$dot_atom|$quoted_string/; + my $dtext = qr/[^\[\]\\]/; + my $dcontent = qr/$dtext|$quoted_pair/; + my $domain_literal = qr/$cfws*\[(?:\s*$dcontent)*\s*\]$cfws*/; + my $domain = qr/$dot_atom|$domain_literal/; + + my $display_name = $phrase; + + my $addr_spec = qr/$local_part\@$domain/; + my $angle_addr = qr/$cfws*<$addr_spec>$cfws*/; + my $name_addr = qr/$display_name?$angle_addr/; + my $mailbox = qr/(?:$name_addr|$addr_spec)$comment*/; + + # --8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<-- + + # In this particular purpose the cache code used in... + my %seen; # ...Email::Address is "replaced" by %seen & %hash. + my %hash; + + my $ptime = $sometime + 5; + my $addrcount = 0; + $| = 1; + open P, '-|', qw/notmuch search --sort=newest-first --output=files/, $sstr; + while (

    ) { + chomp; + open M, '<', $_ or next; + + while () { + last if /^\s*$/; + next unless s/^(From|To|Cc|Bcc):\s+//i; + s/\s+$//; + my @a = ( $_ ); + while () { + # XXX leaks to body in case empty line is found in this loop... + # XXX Note that older code leaked to mail body always... + if (s/^\s+// or s/^(From|To|Cc|Bcc):\s+/,/i) { + s/\s+$//; + push @a, $_; + next; + } + last; + } + $_ = join ' ', @a; + + if (time > $ptime) { + my $c = qw(/ - \ |)[int ($ptime / 5) % 4]; + print $c, ' active addresses gathered: ', $addrcount, "\r"; + $ptime += 5; + } + + # The parse function from Email::Address heavily modified + # to fit ok in this particular purpose. New bugs are mine! + # --8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<-- + + s/[ \t]+/ /g; + s/\?= =\?/\?==\?/g; + my (@mailboxes) = (/$mailbox/go); + L: foreach (@mailboxes) { + next if $seen{$_}; + $seen{$_} = 1; + + my @comments = /($comment)/go; + s/$comment//go if @comments; + + my ($user, $host); + ($user, $host) = ($1, $2) if s/<($local_part)\@($domain)>//o; + if (! defined($user) || ! defined($host)) { + s/($local_part)\@($domain)//o; + ($user, $host) = ($1, $2); + } + + sub decode_substring ($) { + my $t = lc $2; + my $s; + if ($t eq 'b') { $s = decode_base64($3); } + elsif ($t eq 'q') { $s = decode_qp($3); } + else { + $_[0] = 0; + return "=?$1?$2?$3?="; + } + $s =~ tr/_/ /; + + return $s if lc $1 eq 'utf-8'; + + my $o = find_encoding($1); + $_[0] = 0, return "=?$1?$2?$3?=" unless ref $o; + return encode_utf8($o->decode($s)); + } + sub decode_data () { + my $loopmax = 5; + while ( s{ =\?([^?]+)\?(\w)\?(.*?)\?= } + { decode_substring($loopmax) }gex ) { + last if --$loopmax <= 0; + }; + } + + my @phrase = /($display_name)/o; + decode_data foreach (@phrase); + + for ( @phrase, $host, $user, @comments ) { + next unless defined $_; + s/^[\s'"]+//; ## additions 20111123 too + s/[\s'"]+$//; ## additions 20111123 too + $_ = undef unless length $_; + } + # here we want to have email address always // 20111123 too + next unless defined $user and defined $host; + + my $userhost = lc "<$user\@$host>"; + #my $userhost = "<$user\@$host>"; + + @comments = grep { defined or return 0; decode_data; 1; } @comments; + + # "trim" phrase, if equals to user@host after trimming, drop it. + if (defined $phrase[0]) { + #$phrase[0] =~s/\A"(.+)"\z/$1/; + $phrase[0] =~ tr/\\//d; ## 20111124 too + $phrase[0] =~ s/\"/\\"/g; + @phrase = () if lc "<$phrase[0]>" eq $userhost; + } + + # In case we would have {phrase} (comment), + # make that "{phrase} (comment)" ... + if (defined $phrase[0]) { + if (@comments) { + $phrase[0] = qq/"$phrase[0] / . join(' ', @comments) . '"'; + @comments = (); + } + else { + $phrase[0] = qq/"$phrase[0]"/; + } + } + else { + @phrase = (); + } + $_ = join(' ', @phrase, $userhost, @comments) . "\n"; + next if defined $hash{$_}; + print O $_; + $hash{$_} = 1; + next if defined $ign_hash{$_}; + foreach my $re (@ign_relist) { + next L if $_ =~ $re; + } + print A $_; + $addrcount++; + } + # --8<----8<----8<----8<----8<----8<----8<----8<----8<----8<----8<-- + } + close M; + } + undef %seen; + close P; + my $oldaddrcount = 0; + if ($sstr ne '*') { + L: while () { + last if /^---/; + next if defined $hash{$_}; + print O $_; + next if defined $ign_hash{$_}; + foreach my $re (@ign_relist) { + next L if $_ =~ $re; + } + print A $_; + $addrcount++; + } + while () { + $oldaddrcount = ($1 + 0), next if /^active:\s+(\d+)\s*$/; + } + close I; + } + print O "---\n"; + print O "active: ", $addrcount, "\n"; + close O; + close A; + undef %hash; + #link $adbpath, $adbpath . '.' . $sometime; + rename $adbpath . '.new', $adbpath or + die "Cannot rename '$adbpath.new' to '$adbpath': $!\n"; + rename $actpath . '.new', $actpath or + die "Cannot rename '$actpath.new' to '$actpath': $!\n"; + if ($oldaddrcount or $sstr eq '*') { + $sometime = time - $sometime; + my $new = $addrcount - $oldaddrcount; + print "Added $new active addresses in $sometime seconds.\n"; + } + print "Total number of active addresses: $addrcount.\n"; + exit 0; +} + +die "$0: '$ARGV[0]': unknown option.\n"; + +__END__ + +=encoding utf8 + +=head1 NAME + +nottoomuch-addresses.sh -- address completion/matching (for notmuch) + +=head1 SYNOPSIS + +nottoomuch-addresses.sh ( --update [--rebuild] | ) + +B for more help + +=head1 VERSION + +2.2 (2014-03-29) + +=head1 OPTIONS + +=head2 B<--update> + +This option is used to initially create the "address database" for +searches to be done, and then incrementally update it with new +addresses that are available in mails received since last update. + +In case you want to rebuild the database from scratch, add +B<--rebuild> after --update on command line. This is necessary if some +of the new emails received have Date: header point too much in the +past (one week before last update). Update used emails Date: +information to go through new emails to be checked for new addresses +with one week's overlap. Other reason for rebuild could be +enhancements in new versions of this program which change the email +format in database. + +=head2 + +In case no option argument is given on command line, the command line +arguments are used as fixed search string. Search goes through all +email addresses in database and outputs every address (separated by +newline) where a substring match with the given search string is +found. No wildcard of regular expression matching is used. + +Search is not done unless there is at least 3 octets in search string. + +=head1 IGNORE FILE + +Some of the addresses collected may be valid but those still seems to +be noisy junk. One may additionally want to just hide some email +addresses. + +When running B<--update> the output shows the path of address database +file (usually C<$HOME/.config/nottoomuch/addresses>). If there is file +C in the same directory that file is read as +newline-separated list of addresses which are not to be included in +address database file. + +Use your text editor to open both of these files. Then move address +lines to be ignored from B to B. After +saving these 2 files the moved addresses will not reappear in +B file again. + +Version 2.0 of nottoomuch-addresses.sh supports regular expressions in +ignore file. Lines in format I or I defines (perl) +Is which are used to match email addresses for ignoring. The +I format makes regular expression case-insensitive -- although this +is only applied to characters in ranges I and I. Remember that +I and I provides same set of matching lines. + +=head1 LICENSE + +This program uses code from Email::Address perl module. Inclusion of +that makes it easy to define license for the whole of this code base: + +Terms of Perl itself + +a) the GNU General Public License as published by the Free + Software Foundation; either version 1, or (at your option) any + later version, or + +b) the "Artistic License" + +=head1 SEE ALSO + +L, L + +=head1 AUTHOR + +Tomi Ollila -- too ät iki piste fi + +=head1 ACKNOWLEDGMENTS + +This program uses code from Email::Address, Copyright (c) by Casey West +and maintained by Ricardo Signes. Thank you. All new bugs are mine, +though. diff --git a/nsnat b/nsnat new file mode 100644 index 0000000..fa9c759 --- /dev/null +++ b/nsnat @@ -0,0 +1,2 @@ +iptables -t nat -A POSTROUTING -o eth0 -s 172.16.23.10 -j SNAT --to 62.65.138.74 +iptables -t nat -A POSTROUTING -o eth0 -s 172.16.23.6 -j SNAT --to 62.65.138.74 diff --git a/nsstart b/nsstart new file mode 100644 index 0000000..4d9122d --- /dev/null +++ b/nsstart @@ -0,0 +1,4 @@ +~/bin/home/route start +cd /tmp/seti +./setiathome & +su -l nico -c startx diff --git a/oops b/oops new file mode 100755 index 0000000..f5ad594 --- /dev/null +++ b/oops @@ -0,0 +1,71 @@ +#!/usr/bin/perl -wT +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html + +# Set library paths in @INC, at compile time +BEGIN { unshift @INC, '.'; require 'setlib.cfg'; } + +use CGI::Carp qw(fatalsToBrowser); +use CGI; +use TWiki; + +use strict; + +&main(); + +sub main +{ + my $query = new CGI; + + my $thePathInfo = $query->path_info(); + my $theRemoteUser = $query->remote_user(); + my $theTopic = $query->param( 'topic' ); + my $theUrl = $query->url; + + my( $topic ) = + &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query ); + + my $tmplName = $query->param( 'template' ) || "oops"; + my $skin = $query->param( "skin" ) || TWiki::Prefs::getPreferencesValue( "SKIN" ); + my $tmplData = TWiki::Store::readTemplate( $tmplName, $skin ); + if( ! $tmplData ) { + TWiki::writeHeader( $query ); + print "\n" + . "

    TWiki Installation Error

    \n" + . "Template file $tmplName.tmpl not found or template directory \n" + . "$TWiki::templateDir not found.

    \n" + . "Check the \$templateDir variable in TWiki.cfg.\n" + . "\n"; + return; + } + + my $param = $query->param( 'param1' ) || ""; + $tmplData =~ s/%PARAM1%/$param/go; + $param = $query->param( 'param2' ) || ""; + $tmplData =~ s/%PARAM2%/$param/go; + $param = $query->param( 'param3' ) || ""; + $tmplData =~ s/%PARAM3%/$param/go; + $param = $query->param( 'param4' ) || ""; + $tmplData =~ s/%PARAM4%/$param/go; + + $tmplData = &TWiki::handleCommonTags( $tmplData, $topic ); + $tmplData = &TWiki::getRenderedVersion( $tmplData ); + $tmplData =~ s|( ?) *\n?|$1|gois; # remove tags (PTh 06 Nov 2000) + + TWiki::writeHeader( $query ); + print $tmplData; +} diff --git a/placeholder.rb b/placeholder.rb new file mode 100755 index 0000000..e1d4354 --- /dev/null +++ b/placeholder.rb @@ -0,0 +1,31 @@ +#!/usr/bin/env ruby + +def createPlaceholder(dir, level = 0) + dir = dir + '/' if(!dir.empty? && dir[-1].chr != '/') + + entries = Array.new + entries = File.new("#{dir}menu.def").readlines if(FileTest.exists?("#{dir}menu.def")) + + rel = '' + level.times { + rel += '../' + } + + entries.each { |x| + entry = x.split(/\s*\|\s*/, 2) + if(!FileTest.exists?(dir + entry[0] + '.html')) + File.symlink("#{rel}placeholder.html", dir + entry[0] + '.html') + end + + if(FileTest.directory?(dir + entry[0])) + createPlaceholder(dir + entry[0], level + 1) + end + } +end + +if(!ARGV[0]) + puts 'Need a directory' +end + +createPlaceholder(ARGV[0], 0) + diff --git a/post-commit b/post-commit new file mode 100755 index 0000000..28b9af2 --- /dev/null +++ b/post-commit @@ -0,0 +1,4 @@ +#!/bin/sh + +. /home/users/nico/p/foreign/irker/virtualenv/bin/activate +/home/users/nico/p/foreign/irker/irker/irkerhook.py "$@" diff --git a/postgresfixmailneu.sh b/postgresfixmailneu.sh new file mode 100644 index 0000000..75b0412 --- /dev/null +++ b/postgresfixmailneu.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +[ "$#" -eq 2 ] || exit 1 + +user="$1" +domain="$2" +password="$3" + +base=/home/server/mail + +maildirmake.dovecot + +cat << eof +insert into mailboxes values ('$user','$domain','$password','$domain/$user',1,1) +eof | psql mail + diff --git a/preview b/preview new file mode 100755 index 0000000..0c966e3 --- /dev/null +++ b/preview @@ -0,0 +1,160 @@ +#!/usr/bin/perl -wT +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html + +# Set library paths in @INC, at compile time +BEGIN { unshift @INC, '.'; require 'setlib.cfg'; } + +use CGI::Carp qw(fatalsToBrowser); +use CGI; +use TWiki; + +use strict; + +&main(); + + +sub main +{ + my $query = new CGI; + my $thePathInfo = $query->path_info(); + my $theRemoteUser = $query->remote_user(); + my $theTopic = $query->param( 'topic' ); + my $theUrl = $query->url; + my( $topic, $webName, $dummy, $userName ) = + &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query ); + $dummy = ""; # to suppress warning + + my $tmpl = ""; + my $text = ""; + my $ptext = ""; + my $meta = ""; + my $formFields = ""; + my $wikiUserName = &TWiki::userToWikiName( $userName ); + + if( ! &TWiki::Store::webExists( $webName ) ) { + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsnoweb" ); + TWiki::redirect( $query, $url ); + return; + } + + my( $mirrorSiteName, $mirrorViewURL ) = &TWiki::readOnlyMirrorWeb( $webName ); + if( $mirrorSiteName ) { + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsmirror", $mirrorSiteName, $mirrorViewURL ); + TWiki::redirect( $query, $url ); + return; + } + + # reset lock time, this is to prevent contention in case of a long edit session + &TWiki::Store::lockTopic( $topic ); + + my $skin = $query->param( "skin" ) || &TWiki::Prefs::getPreferencesValue( "SKIN" ); + + # Is user looking to change the form used? Sits oddly in preview, but + # to avoid Javascript and pick up text on edit page it has to be in preview. + my $changeform = $query->param( 'submitChangeForm' ) || ""; + if( $changeform ) { + &TWiki::Form::changeForm( $webName, $topic, $query ); + return; + } + + # get view template, standard view or a view with a different skin + $tmpl = &TWiki::Store::readTemplate( "preview", $skin ); + my $dontNotify = $query->param( "dontnotify" ) || ""; + $tmpl =~ s/%DONTNOTIFY%/$dontNotify/go; + my $saveCmd = $query->param( "cmd" ) || ""; + if( $saveCmd ) { + if( ! &TWiki::Access::userIsInGroup( $wikiUserName, $TWiki::superAdminGroup ) ) { + # user has no permission to execute undocumented cmd=... parameter + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsaccessgroup", "$TWiki::mainWebname.$TWiki::superAdminGroup" ); + TWiki::redirect( $query, $url ); + return; + } + $tmpl =~ s/\(preview\)/\(preview cmd=$saveCmd\)/go; + } + $tmpl =~ s/%CMD%/$saveCmd/go; + + if( $saveCmd ne "repRev" ) { + my $dummy = ""; + ( $meta, $dummy ) = &TWiki::Store::readTopic( $webName, $topic ); + + # parent setting + my $theParent = $query->param( 'topicparent' ) || ""; + if( $theParent ) { + $tmpl =~ s/%TOPICPARENT%/$theParent/go; + $meta->put( "TOPICPARENT", ( "name" => $theParent ) ); + } + $tmpl =~ s/%TOPICPARENT%/$theParent/; + + my $formTemplate = $query->param( "formtemplate" ); + if( $formTemplate ) { + $meta->remove( "FORM" ); + $meta->put( "FORM", ( name => $formTemplate ) ) if( $formTemplate ne "none" ); + $tmpl =~ s/%FORMTEMPLATE%/$formTemplate/go; + } else { + $tmpl =~ s/%FORMTEMPLATE%//go; + } + + # get the edited text and combine text, form and attachments for preview + &TWiki::Form::fieldVars2Meta( $webName, $query, $meta ); + $text = $query->param( "text" ); + if( ! $text ) { + # empty topic not allowed + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsempty" ); + print $query->redirect( $url ); + return; + } + #AS added hook for plugins that want to do heavy stuff + TWiki::Plugins::afterEditHandler( $text, $topic, $webName ); + $ptext = $text; + + if( $meta->count( "FORM" ) ) { + $formFields = &TWiki::Form::getFieldParams( $meta ); + } + + } else { + # undocumented "repRev" mode + $text = $query->param( "text" ); # text to save + ( $meta, $ptext ) = &TWiki::Store::_extractMetaData( $webName, $topic, $text ); + $text =~ s/%_(.)_%/%__$1__%/go; + } + + my @verbatim = (); + $ptext = &TWiki::takeOutVerbatim( $ptext, \@verbatim ); + $ptext =~ s/ {3}/\t/go; + $ptext = &TWiki::handleCommonTags( $ptext, $topic ); + $ptext = &TWiki::getRenderedVersion( $ptext ); + + # do not allow click on link before save: + $ptext =~ s@(href=".*?")@href="%SCRIPTURLPATH%/oops%SCRIPTSUFFIX%/%WEB%/%TOPIC%\?template=oopspreview"@goi; + $ptext = &TWiki::handleCommonTags( $ptext, $topic ); + $ptext = &TWiki::putBackVerbatim( $ptext, "pre", @verbatim ); + + $tmpl = &TWiki::handleCommonTags( $tmpl, $topic ); + $tmpl = &TWiki::handleMetaTags( $webName, $topic, $tmpl, $meta ); + $tmpl = &TWiki::getRenderedVersion( $tmpl ); + $tmpl =~ s/%TEXT%/$ptext/go; + + $text = &TWiki::encodeSpecialChars( $text ); + + $tmpl =~ s/%HIDDENTEXT%/$text/go; + $tmpl =~ s/%FORMFIELDS%/$formFields/go; + $tmpl =~ s|( ?) *\n?|$1|gois; # remove tags (PTh 06 Nov 2000) + + &TWiki::writeHeader( $query ); + print $tmpl; +} diff --git a/price-vm-hosting.py b/price-vm-hosting.py new file mode 120000 index 0000000..89dbfd0 --- /dev/null +++ b/price-vm-hosting.py @@ -0,0 +1 @@ +../.ungleich/ungleich/vcs/ungleich-bin/price-vm-hosting.py \ No newline at end of file diff --git a/pwhome b/pwhome new file mode 100755 index 0000000..7c625be --- /dev/null +++ b/pwhome @@ -0,0 +1,8 @@ +#!/bin/sh + +touch ~/privat/rechner/eigene/.lastsync + +rsync -av --delete --progress \ + "$@" \ + ~/.ssh ~/.gnupg ~/privat/rechner/eigene/ \ + /mnt diff --git a/python-bin-wrapper b/python-bin-wrapper new file mode 100755 index 0000000..86d5d59 --- /dev/null +++ b/python-bin-wrapper @@ -0,0 +1,31 @@ +#!/bin/sh +# -*- coding: utf-8 -*- +# +# 2013 Nico Schottelius (nico-nsbin at schottelius.org) +# +# This file is part of nsbin. +# +# nsbin is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# nsbin is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with nsbin. If not, see . +# +# + +# Wrapper for real script to allow execution from checkout +dir=${0%/*} + +libdir=$(cd "${dir}/../" && pwd -P) +project=${libdir##*/} + +export PYTHONPATH="${libdir}" + +"$dir/../scripts/${project}" "$@" diff --git a/qos-neu b/qos-neu new file mode 100755 index 0000000..f0a4a78 --- /dev/null +++ b/qos-neu @@ -0,0 +1,66 @@ +INET=ppp0 +MAXRATE=126kbit + +# flush +iptables -t mangle -F +tc qdisc del dev $INET root + +# group0 +# acks 6kbit + +# group1: +# dns +# ssh 40kbit + +# group2: 60kbit +# apache +# smtp +# pop3 + + +# group3: 20kbit +# identd +# ftp +# rsync +# icmp + +# standards + +# root class (root o all evil) +tc qdisc add dev $INET root handle 1:0 htb default 23 + +# hauptklasse... mamapapa ichselber alg minimal maximal +tc class add dev $INET parent 1:0 classid 1:1 htb rate $MAXRATE ceil $MAXRATE + +# acks +tc class add dev $INET parent 1:1 classid 1:10 htb rate 6kbit ceil $MAXRATE prio 1 +tc filter add dev $INET parent 1:0 prio 0 protocol ip handle 10 fw flowid 1:10 + + +# ssh / dns +iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port 22 -j MARK --set-mark 11 +iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port 53 -j MARK --set-mark 11 +iptables -t mangle -A POSTROUTING -o $INET -p udp --source-port 53 -j MARK --set-mark 11 + +# das ist nur die rule. wie es sein soll. +tc class add dev $INET parent 1:1 classid 1:11 htb rate 40kbit ceil $MAXRATE prio 2 +# das ist der eintrag der in aktiv macht, auf das handle (==mark) +tc filter add dev $INET parent 1:0 prio 0 protocol ip handle 11 fw flowid 1:11 + + +# apache / smtp / pop +iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port 80 -j MARK --set-mark 12 +iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port pop3 -j MARK --set-mark 12 +iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port smtp -j MARK --set-mark 12 +tc class add dev $INET parent 1:1 classid 1:12 htb rate 60kbit ceil $MAXRATE prio 2 +tc filter add dev $INET parent 1:0 prio 0 protocol ip handle 12 fw flowid 1:12 + + +# ftp / rsync / auth / icmp +iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port 20:21 -j MARK --set-mark 13 +iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port rsync -j MARK --set-mark 13 +iptables -t mangle -A POSTROUTING -o $INET -p tcp --source-port auth -j MARK --set-mark 13 +iptables -t mangle -A POSTROUTING -o $INET -p icmp -j MARK --set-mark 13 +tc class add dev $INET parent 1:1 classid 1:13 htb rate 20kbit ceil $MAXRATE prio 2 +tc filter add dev $INET parent 1:0 prio 0 protocol ip handle 13 fw flowid 1:13 + diff --git a/rdiff b/rdiff new file mode 100755 index 0000000..a1a72f1 --- /dev/null +++ b/rdiff @@ -0,0 +1,269 @@ +#!/usr/bin/perl -wT +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html + +# Set library paths in @INC, at compile time +BEGIN { unshift @INC, '.'; require 'setlib.cfg'; } + +use CGI::Carp qw(fatalsToBrowser); +use CGI; +use TWiki; + +$query= new CGI; + +&main(); + +# ========================= +sub renderCellData +{ + my( $data, $topic ) = @_; + if( $data ) { + $data = &TWiki::handleCommonTags( $data, $topic ); + $data = &TWiki::getRenderedVersion( $data ); + if( $data =~ m/<\/?(th|td|table)/i ) + { + # data has or , need to fix + my $bTable = ( $data =~ s/( $eTable ) { + for( $i = $eTable; $i < $bTable; $i++ ) { + $data .= "
    "; + } + } elsif( $bTable < $eTable ) { + for( $i = $bTable; $i < $eTable; $i++ ) { + $data = "\n$data"; + } + } elsif( ( $bTable == 0 ) && ( $eTable == 0 ) ) { + $data = "\n
    $data\n
    "; + } + } + } + return $data; +} + +# ========================= +sub renderRevisionDiff +{ + my( $text, $topic ) = @_; + + $text =~ s/\r//go; # cut CR + my $result = "\n
    "; + my $data = ""; + foreach( split( /\n/, $text ) ) { + if( /^[0-9]/ ) { + $data = renderCellData( $data, $topic ); + $result .= $data; + $data = ""; + s/^([0-9\,]+)d([0-9\,]+)/\n<\/td><\/tr>\n
    Deleted: <\/b><\/td><\/tr>\n
    <
    <<\/td>
    /go; + s/^([0-9\,]+)a([0-9\,]+)/\n<\/td><\/tr>\n
    Added: <\/b><\/td><\/tr>\n
    >
    ><\/td>
    /go; + s/^([0-9\,]+)c([0-9\,]+)/\n<\/td><\/tr>\n
    Changed: <\/b><\/td><\/tr>\n
    <
    <<\/td>
    /go; + $result .= $_; + + } elsif( /^[<>]/ ) { + s/^[<>] (.*)/$1/go; + $data .= "\n$_"; + + } elsif( /^--*/ ) { + $data = renderCellData( $data, $topic ); + $result .= $data; + $data = ""; + $result .= "\n
    >
    >
    \n"; + } + } + $data = renderCellData( $data, $topic ); + $result .= $data; + $data = ""; + $text = "$result<\/td><\/tr>\n<\/table>"; + + return $text; +} + + +sub getRevInfo +{ + my( $web, $rev, $topic, $short ) = @_; + + my( $date, $user ) = &TWiki::Store::getRevisionInfo( $web, $topic, "1.$rev", 1 ); + $user = TWiki::getRenderedVersion( TWiki::userToWikiName( $user ) ); + if( $short ) { + # cut time + $date =~ s/ \- [0-9]*\:[0-9]+$//go; + # eliminate white space to prevent wrap around in HR table: + $date =~ s/ /\ \;/go; + } else { + $date .= " GMT"; + } + + my $revInfo = "$date - $user"; + $revInfo =~ s/[\n\r]*//go; + return $revInfo; +} + + +sub main +{ + my $thePathInfo = $query->path_info(); + my $theRemoteUser = $query->remote_user(); + my $theTopic = $query->param('topic'); + my $theUrl = $query->url; + + ( $topic, $webName, $scriptUrlPath, $userName ) = + &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query ); + + my $tmpl = "", $text = "", $diff = ""; + my $rev1 = $query->param( "rev1" ); + my $rev2 = $query->param( "rev2" ); + my $maxrev= 1; + my $i = $maxrev, $j = $maxrev; + my $revTitle1 = "", $revTitle2 = ""; + my $revInfo1 = "", $revInfo2 = ""; + my $isMultipleDiff = 0; + + if( ! &TWiki::Store::webExists( $webName ) ) { + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsnoweb" ); + TWiki::redirect( $query, $url ); + return; + } + + # get view template, standard view or a view with a different skin + my $skin = $query->param( "skin" ) || &TWiki::Prefs::getPreferencesValue( "SKIN" ); + $tmpl = &TWiki::Store::readTemplate( "rdiff", $skin ); + $tmpl =~ s/\%META{.*?}\%//go; # remove %META{"parent"}% + + my( $before, $difftmpl, $after) = split( /%REPEAT%/, $tmpl); + + my $topicExists = &TWiki::Store::topicExists( $webName, $topic ); + if( $topicExists ) { + $maxrev = &TWiki::Store::getRevisionNumber( $webName, $topic ); + $maxrev =~ s/r?1\.//go; # cut 'r' and major + if( ! $rev1 ) { $rev1 = 0; } + if( ! $rev2 ) { $rev2 = 0; } + $rev1 =~ s/r?1\.//go; # cut 'r' and major + $rev2 =~ s/r?1\.//go; # cut 'r' and major + if( $rev1 < 1 ) { $rev1 = $maxrev; } + if( $rev1 > $maxrev ) { $rev1 = $maxrev; } + if( $rev2 < 1 ) { $rev2 = 1; } + if( $rev2 > $maxrev ) { $rev2 = $maxrev; } + $revTitle1 = "r1.$rev1"; + $revInfo1 = getRevInfo( $webName, $rev1, $topic ); + if( $rev1 != $rev2 ) { + $revTitle2 = "r1.$rev2"; + $revInfo2 = getRevInfo( $webName, $rev2, $topic ); + } + } else { + $rev1 = 1; + $rev2 = 1; + } + + # check access permission + my $wikiUserName = &TWiki::userToWikiName( $userName ); + my $viewAccessOK = &TWiki::Access::checkAccessPermission( "view", $wikiUserName, "", $topic, $webName ); + if( ( $TWiki::readTopicPermissionFailed ) || ( ! $viewAccessOK ) ) { + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsaccessview" ); + TWiki::redirect( $query, $url ); + return; + } + + # format "before" part + $before =~ s/%REVTITLE1%/$revTitle1/go; + $before =~ s/%REVTITLE2%/$revTitle2/go; + $before = &TWiki::handleCommonTags( $before, $topic ); + $before = &TWiki::getRenderedVersion( $before ); + $before =~ s|( ?) *\n?|$1|gois; # remove tags (PTh 06 Nov 2000) + &TWiki::writeHeader( $query ); + print $before; + + # do one or more diffs + $difftmpl = &TWiki::handleCommonTags( $difftmpl, $topic ); + if( $topicExists ) { + my $r1 = $rev1, $r2 = $rev2, $rInfo = ""; + if( $r1 > $r2 + 1) { + $r2 = $r1 - 1; + $isMultipleDiff = 1; + } + do { + $diff = $difftmpl; + $diff =~ s/%REVTITLE1%/r1\.$r1/go; + $rInfo = getRevInfo( $webName, $r1, $topic, 1 ); + $diff =~ s/%REVINFO1%/$rInfo/go; + $text = &TWiki::Store::getRevisionDiff( $webName, $topic, "1.$r2", "1.$r1" ); + $text = renderRevisionDiff( $text, $topic ); + $diff =~ s/%TEXT%/$text/go; + $diff =~ s|( ?) *\n?|$1|gois; # remove tags (PTh 06 Nov 2000) + print $diff; + $r1 = $r1 - 1; + $r2 = $r2 - 1; + if( $r2 < 1 ) { $r2 = 1; } + } while( ( $r1 > $rev2 ) || ( $r1 == 1 ) ); + + } else { + $diff = $difftmpl; + $diff =~ s/%REVTITLE1%/$revTitle1/go; + $diff =~ s/%REVTITLE2%/$revTitle2/go; + $diff =~ s/%TEXT%//go; + $diff =~ s|( ?) *\n?|$1|gois; # remove tags (PTh 06 Nov 2000) + print $diff; + } + + if( $TWiki::doLogTopicRdiff ) { + # write log entry + &TWiki::Store::writeLog( "rdiff", "$webName.$topic", "r1.$rev1 r1.$rev2" ); + } + + # format "after" part + $i = $maxrev; + $j = $maxrev; + my $revisions = ""; + my $breakRev = 0; + if( ( $TWiki::numberOfRevisions > 0 ) && ( $TWiki::numberOfRevisions < $maxrev ) ) { + $breakRev = $maxrev - $TWiki::numberOfRevisions + 1; + } + + while( $i > 0 ) { + $revisions .= " | r1.$i"; + if( $i != 1 ) { + if( $i == $breakRev ) { + # Now obsolete because of 'More' link + # $revisions = "$revisions | >..."; + $i = 1; + + } else { + if( ( $i == $rev1 ) && ( !$isMultipleDiff ) ) { + $revisions .= " | >"; + } else { + $j = $i - 1; + $revisions .= " | >"; + } + } + } + $i = $i - 1; + } + $after =~ s/%REVISIONS%/$revisions/go; + $after =~ s/%CURRREV%/1.$rev1/go; + $after =~ s/%MAXREV%/1.$maxrev/go; + $after =~ s/%REVTITLE1%/$revTitle1/go; + $after =~ s/%REVINFO1%/$revInfo1/go; + $after =~ s/%REVTITLE2%/$revTitle2/go; + $after =~ s/%REVINFO2%/$revInfo2/go; + + $after = &TWiki::handleCommonTags( $after, $topic ); + $after = &TWiki::getRenderedVersion( $after ); + $after =~ s|( ?) *\n?|$1|gois; # remove tags (PTh 06 Nov 2000) + + print $after; +} diff --git a/recover_all_vim_files b/recover_all_vim_files new file mode 100755 index 0000000..30a2211 --- /dev/null +++ b/recover_all_vim_files @@ -0,0 +1,27 @@ +#!/bin/sh +# +# 2010 Nico Schottelius (nico-nsbin at schottelius.org) +# +# This file is part of nsbin. +# +# nsbin is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# nsbin is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with nsbin. If not, see . +# +# +# Recover and write all vim files in current directory +# +# + +Does not work: vim reads from stdin! + +find . -name \*.swp | while read l ; do a=$(echo $l | sed -e 's;/\.;;' -e 's/\.swp$//'); vi -r -c ':x' $a; done diff --git a/redmine.sh b/redmine.sh new file mode 100644 index 0000000..88bbb1d --- /dev/null +++ b/redmine.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +read -d '' data << EOF + + + Delete/Remove Project + The user can remove a project from the list with or without deleting it on disk + 2762 + + 2 + 2 + 6 + 1 + + +EOF + +echo $data | curl -k --request POST --header "Content-type: application/xml" --data-binary @- https://dev.rdit.ch/issues.json?key= diff --git a/rekursivperms b/rekursivperms new file mode 100644 index 0000000..94fe953 --- /dev/null +++ b/rekursivperms @@ -0,0 +1,3 @@ +for a in `seq 1 $#`; do + eval find \$$a -exec /root/scripts/set_correct_bits {} \\\; +done diff --git a/release_dlna b/release_dlna new file mode 100755 index 0000000..867ceab --- /dev/null +++ b/release_dlna @@ -0,0 +1,16 @@ +#!/bin/sh -e + +dir=/home/services/dlna + +for file in "$@"; do + fname=${file##*/} +done + +[ -z "$file" ] && exit 1 + +bfile="$(basename "$file")" + +scp "$file" "${host}:$dir" +ssh $host "chmod a+r \"$dir/$bfile\"" + +echo "Pre-released ${url}/${bfile}" diff --git a/remove-links b/remove-links new file mode 100644 index 0000000..2688753 --- /dev/null +++ b/remove-links @@ -0,0 +1,18 @@ +if [ -z "$1" ]; then + echo noe + exit 1 +fi + +for dirs in bin sbin lib include share; do + cd "$1/$dirs" + for file in *; do + if [ -L /usr/$dirs/"$file" ]; then + echo removing link $file + rm /usr/$dirs/"$file" + elif [ -d /usr/$dirs/"$file" ]; then + rmdir /usr/$dirs/"$file" + else + echo /usr/$dirs/"$file" is not a link... + fi + done +done diff --git a/remove-pcsystems b/remove-pcsystems new file mode 100755 index 0000000..4cc1218 --- /dev/null +++ b/remove-pcsystems @@ -0,0 +1,8 @@ +#!/bin/sh +NEW="nico-webdesign at schottelius.org" +OLD="nicos@pcsystems.de" + +if [ ! -d "$1" ]; then + cat "$1" | sed "s,$OLD,$NEW," > $1.tmp + mv $1.tmp $1 +fi diff --git a/remove.dead.links b/remove.dead.links new file mode 100644 index 0000000..537e138 --- /dev/null +++ b/remove.dead.links @@ -0,0 +1,6 @@ +for a in $@; do + if [ ! -e "$a" ]; then + echo removing "$a"... + rm "$a" + fi +done diff --git a/remove_wrong_x b/remove_wrong_x new file mode 100644 index 0000000..e63c63f --- /dev/null +++ b/remove_wrong_x @@ -0,0 +1,19 @@ +#!/bin/sh + +#file=`ls -l $1 | egrep '^d' | awk ' {print $9 }'` +#if [ -z file ]; then echo $1;fi + +# echo gerade : $1 +# file : $file + +if [ -d "$1" ] + then + echo "dir : $1" + chmod u=rwx,g=rx,o-rwx $1 +elif [ -x "$1" ];then + echo "exe: $1" + chmod u+rw,g+rx,o-rwx $1 +else + echo "file: $1" + chmod u+rw,g+r,o-rwx $1 +fi diff --git a/rename b/rename new file mode 100755 index 0000000..63c2295 --- /dev/null +++ b/rename @@ -0,0 +1,437 @@ +#!/usr/bin/perl -wT +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 2001-2003 Peter Thoeny, peter@thoeny.com +# Copyright (C) 2001 Sven Dowideit, svenud@ozemail.com.au +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html +# + +# Set library paths in @INC, at compile time +BEGIN { unshift @INC, '.'; require 'setlib.cfg'; } + +# 'Use locale' for internationalisation of Perl regexes - +# main locale settings are done in TWiki::setupLocale +BEGIN { + # Do a dynamic 'use locale' for this module + if( $TWiki::useLocale ) { + require locale; + import locale (); + } +} + +use CGI::Carp qw( fatalsToBrowser ); +use CGI; +use TWiki; + +use strict; + +use vars qw($query); + +&main(); + + +sub main +{ + $query= new CGI; + my $thePathInfo = $query->path_info(); + my $theRemoteUser = $query->remote_user(); + my $theTopic = $query->param( 'topic' ); + my $newWeb = $query->param( 'newweb' ) || ""; + my $newTopic = $query->param( 'newtopic' ) || ""; + my $theUrl = $query->url; + my $lockFailure = ""; + my $breakLock = $query->param( 'breaklock' ); + my $theAttachment = $query->param( 'attachment' ); + my $confirm = $query->param( 'confirm' ); + my $currentWebOnly = $query->param( 'currentwebonly' ) || ""; + my $doAllowNonWikiWord = $query->param( 'nonwikiword' ) || ""; + my ( $oldTopic, $oldWeb, $scriptUrlPath, $userName, $dataDir ) = + &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query ); # DRKW difference to core + my $skin = $query->param( "skin" ) || TWiki::Prefs::getPreferencesValue( "SKIN" ); + + $newTopic =~ s/\s//go; + $newTopic =~ s/$TWiki::securityFilter//go; + + if( ! $theAttachment ) { + $theAttachment = ""; + } + + my $wikiUserName = &TWiki::userToWikiName( $userName ); + + # justChangeRefs will be true when some topics that had links to $oldTopic + # still need updating, previous update being prevented by a lock. + my $justChangeRefs = $query->param( 'changeRefs' ) || ""; + + my $fileName = &TWiki::Store::getFileName( $oldWeb, $oldTopic ); + my $newName; + $newName = &TWiki::Store::getFileName( $newWeb, $newTopic ) if( $newWeb ); + + if( ! $justChangeRefs ) { + if( checkExist( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment, $fileName, $newName ) ) { + return; + } + + if( ! checkPermissions( $oldWeb, $oldTopic, $wikiUserName ) ) { + return; + } + } + + # Has user selected new name yet? + if( ! $newTopic || $confirm ) { + newTopicScreen( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment, + $confirm, $currentWebOnly, $skin ); + return; + } + + if( ! $justChangeRefs ) { + if( ! getLocks( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment, $breakLock, $skin ) ) { + return; + } + } + + if( ! $justChangeRefs ) { + if( $theAttachment ) { + my $moveError = + &TWiki::Store::moveAttachment( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment ); + if( $moveError ) { + TWiki::redirect( $query, &TWiki::getOopsUrl( $newWeb, $newTopic, "oopsmoveerr", $theAttachment, $moveError ) ); + return; + } + } else { + if( ! $doAllowNonWikiWord && ! &TWiki::isWikiName( $newTopic ) ) { + TWiki::redirect( $query, &TWiki::getOopsUrl( $newWeb, $newTopic, "oopsrenamenotwikiword" ) ); + return; + } + my $renameError = &TWiki::Store::renameTopic( $oldWeb, $oldTopic, $newWeb, $newTopic, "relink" ); + if( $renameError ) { + TWiki::redirect( $query, &TWiki::getOopsUrl( $oldWeb, $oldTopic, "oopsrenameerr", $renameError, $newWeb, $newTopic ) ); + return; + } + } + } + + # Update references in referring pages - not applicable to attachments. + if( ! $theAttachment ) { + my @refs = findReferingPages( $oldWeb, $oldTopic ); + my $problems; + ( $lockFailure, $problems ) = + updateReferingPages( $oldWeb, $oldTopic, $wikiUserName, $newWeb, $newTopic, @refs ); + } + + my $new_url = ""; + if( $lockFailure ) { + moreRefsToChange( $oldWeb, $oldTopic, $newWeb, $newTopic, $skin ); + return; + } else { + #redirect to new topic + $new_url = &TWiki::getViewUrl( $newWeb, $newTopic ); + } + + TWiki::redirect( $query, $new_url ); + return; +} + + +#========================= +sub findReferingPages +{ + my @result = (); + + # Go through parameters finding all topics for change + my @types = qw\local global\; + foreach my $type ( @types ) { + my $count = 1; + while( $query->param( "TOPIC$type$count" ) ) { + my $checked = $query->param( "RENAME$type$count" ); + if ($checked) { + push @result, $type; + push @result, $query->param( "TOPIC$type$count" ); + } + $count++; + } + } + return @result; +} + + +#================================== +# update pages that refer to the one being renamed/moved +sub updateReferingPages +{ + my ( $oldWeb, $oldTopic, $wikiUserName, $newWeb, $newTopic, @refs ) = @_; + + my $lockFailure = 0; + + my $result = ""; + my $alphaNum = $TWiki::mixedAlphaNum; + my $preTopic = '^|[^${alphaNum}_]'; # Start of line or non-alphanumeric + my $postTopic = '$|[^${alphaNum}_]'; # End of line or non-alphanumeric + my $spacedTopic = TWiki::Search::spacedTopic( $oldTopic ); + + while ( @refs ) { + my $type = shift @refs; + my $item = shift @refs; + my( $itemWeb, $itemTopic ) = TWiki::Store::normalizeWebTopicName( "", $item ); + if ( &TWiki::Store::topicIsLockedBy( $itemWeb, $itemTopic ) ) { + $lockFailure = 1; + } else { + my $resultText = ""; + $result .= ":$item: , "; + #open each file, replace $topic with $newTopic + if ( &TWiki::Store::topicExists($itemWeb, $itemTopic) ) { + my $scantext = &TWiki::Store::readTopicRaw($itemWeb, $itemTopic); + if( ! &TWiki::Access::checkAccessPermission( "change", $wikiUserName, $scantext, + $itemWeb, $itemTopic ) ) { + # This shouldn't happen, as search will not return, but check to be on the safe side + &TWiki::writeWarning( "rename: attempt to change $itemWeb.$itemTopic without permission" ); + next; + } + my $insidePRE = 0; + my $insideVERBATIM = 0; + my $noAutoLink = 0; + foreach( split( /\n/, $scantext ) ) { + if( /^%META:TOPIC(INFO|MOVED)/ ) { + $resultText .= "$_\n"; + next; + } + # FIXME This code is in far too many places - also in Search.pm and Store.pm + m|
    |i  && ( $insidePRE = 1 );
    +		m|
    |i && ( $insidePRE = 0 ); + if( m||i ) { + $insideVERBATIM = 1; + } + if( m||i ) { + $insideVERBATIM = 0; + } + m||i && ( $noAutoLink = 1 ); + m||i && ( $noAutoLink = 0 ); + + if( ! ( $insidePRE || $insideVERBATIM || $noAutoLink ) ) { + if( $type eq "global" ) { + my $insertWeb = ($itemWeb eq $newWeb) ? "" : "$newWeb."; + s/($preTopic)\Q$oldWeb.$oldTopic\E(?=$postTopic)/$1$insertWeb$newTopic/g; + } else { + # Only replace bare topic (i.e. not preceeded by web) if web of referring + # topic is in original Web of topic that's being moved + if( $oldWeb eq $itemWeb ) { + my $insertWeb = ($oldWeb eq $newWeb) ? "" : "$newWeb."; + s/($preTopic)\Q$oldTopic\E(?=$postTopic)/$1$insertWeb$newTopic/g; + s/\[\[($spacedTopic)\]\]/[[$newTopic][$1]]/gi; + } + } + } + $resultText .= "$_\n"; + } + my ( $meta, $text ) = &TWiki::Store::_extractMetaData( $itemWeb, $itemTopic, $resultText ); + &TWiki::Store::saveTopic( $itemWeb, $itemTopic, $text, $meta, "", "unlock", "dontNotify", "" ); + } else { + $result .= ";$item does not exist;"; + } + } + } + return ( $lockFailure, $result ); +} + + +#============================= +# return "" if problem, otherwise return text of oldTopic +sub checkPermissions +{ + my( $oldWeb, $oldTopic, $wikiUserName ) = @_; + + my $ret = ""; + + if( &TWiki::Store::topicExists( $oldWeb, $oldTopic ) ) { + $ret = &TWiki::Store::readWebTopic( $oldWeb, $oldTopic ); + } + + if( ! &TWiki::Access::checkAccessPermission( "change", $wikiUserName, $ret, $oldTopic, $oldWeb ) ) { + # user has not permission to change the topic + my $url = &TWiki::getOopsUrl( $oldWeb, $oldTopic, "oopsaccesschange" ); + TWiki::redirect( $query, $url ); + $ret = ""; + } + + + if( ! &TWiki::Access::checkAccessPermission( "rename", $wikiUserName, $ret, $oldTopic, $oldWeb ) ) { + my $url = &TWiki::getOopsUrl( $oldWeb, $oldTopic, "oopsaccessrename" ); + TWiki::redirect( $query, $url ); + $ret = ""; + } + + return $ret; +} + + +#========================================== +# Check that various webs and topics exist or don't exist as required +sub checkExist +{ + my( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment, $oldFileName, $newFileName ) = @_; + + my $ret = ""; + my $tmpl = ""; + + # Does old WEB exist? + if( ! &TWiki::Store::webExists( $oldWeb ) ) { + TWiki::redirect( $query, &TWiki::getOopsUrl( $oldWeb, $oldTopic, "oopsnoweb" ) ); + $ret = "problem"; + } + + # Does new WEB exist? + if( defined( $newFileName ) && ! &TWiki::Store::webExists( $newWeb ) ) { + TWiki::redirect( $query, &TWiki::getOopsUrl( $newWeb, $newTopic, "oopsnoweb" ) ); + $ret = "problem"; + } + + # Does old attachment exist? + if( ! -e $oldFileName) { + TWiki::redirect( $query, &TWiki::getOopsUrl( $oldWeb, $oldTopic, "oopsmissing" ) ); + $ret = "problem"; + } + + # Check new topic doesn't exist (opposite if we've moving an attachment) + if( defined( $newFileName ) && -e $newFileName && ! $theAttachment ) { + # Unless moving an attachment, new topic should not already exist + TWiki::redirect( $query, &TWiki::getOopsUrl( $newWeb, $newTopic, "oopstopicexists" ) ); + $ret = "problem"; + } + + if( defined( $newFileName ) && $theAttachment && ! -e $newFileName ) { + TWiki::redirect( $query, &TWiki::getOopsUrl( $newWeb, $newTopic, "oopsmissing" ) ); + $ret = "problem"; + } + + return $ret; +} + + +#============================ +#Return "" if can't get lock, otherwise "okay" +sub getLocks +{ + my( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment, $breakLock, $skin ) = @_; + + my( $oldLockUser, $oldLockTime, $newLockUser, $newLockTime ); + + if( ! $breakLock ) { + # Check for lock - at present the lock can't be broken + ( $oldLockUser, $oldLockTime ) = &TWiki::Store::topicIsLockedBy( $oldWeb, $oldTopic ); + if( $oldLockUser ) { + $oldLockUser = &TWiki::userToWikiName( $oldLockUser ); + use integer; + $oldLockTime = ( $oldLockTime / 60 ) + 1; # convert to minutes + } + + if( $theAttachment ) { + ( $newLockUser, $newLockTime ) = &TWiki::Store::topicIsLockedBy( $newWeb, $newTopic ); + if( $newLockUser ) { + $newLockUser = &TWiki::userToWikiName( $newLockUser ); + use integer; + $newLockTime = ( $newLockTime / 60 ) + 1; # convert to minutes + my $editLock = $TWiki::editLockTime / 60; + } + } + } + + if( $oldLockUser || $newLockUser ) { + my $tmpl = &TWiki::Store::readTemplate( "oopslockedrename", $skin ); + my $editLock = $TWiki::editLockTime / 60; + if( $oldLockUser ) { + $tmpl =~ s/%OLD_LOCK%/Source topic $oldWeb.$oldTopic is locked by $oldLockUser, lock expires in $oldLockTime minutes.
    /go; + } else { + $tmpl =~ s/%OLD_LOCK%//go; + } + if( $newLockUser ) { + $tmpl =~ s/%NEW_LOCK%/Destination topic $newWeb.$newTopic is locked by $newLockUser, lock expires in $newLockTime minutes.
    /go; + } else { + $tmpl =~ s/%NEW_LOCK%//go; + } + $tmpl =~ s/%NEW_WEB%/$newWeb/go; + $tmpl =~ s/%NEW_TOPIC%/$newTopic/go; + $tmpl =~ s/%ATTACHMENT%/$theAttachment/go; + $tmpl = &TWiki::handleCommonTags( $tmpl, $oldTopic, $oldWeb ); + $tmpl = &TWiki::getRenderedVersion( $tmpl, $oldWeb ); + TWiki::writeHeader( $query ); + print $tmpl; + return ""; + } else { + &TWiki::Store::lockTopicNew( $oldWeb, $oldTopic ); + if( $theAttachment ) { + &TWiki::Store::lockTopicNew( $newWeb, $newTopic ); + } + } + + return "okay"; +} + + +#============================ +# Display screen so user can decide on new web and topic. +sub newTopicScreen +{ + my( $oldWeb, $oldTopic, $newWeb, $newTopic, $theAttachment, $confirm, $currentWebOnly, $skin ) = @_; + + my $tmpl = ""; + + if( ! $newTopic ) { + $newTopic = $oldTopic; + } + + TWiki::writeHeader( $query ); + if( $theAttachment ) { + $tmpl = TWiki::Store::readTemplate( "moveattachment", $skin ); + $tmpl =~ s/%FILENAME%/$theAttachment/go; + } elsif( $confirm ) { + $tmpl = TWiki::Store::readTemplate( "renameconfirm", $skin ); + } else { + $tmpl = &TWiki::Store::readTemplate( "rename", $skin ); + } + + $tmpl = setVars( $tmpl, $oldTopic, $newWeb, $newTopic ); + $tmpl = &TWiki::handleCommonTags( $tmpl, $oldTopic, $oldWeb ); + $tmpl = &TWiki::getRenderedVersion( $tmpl ); + if( $currentWebOnly ) { + $tmpl =~ s/%RESEARCH\{.*?web=\"all\".*\}%/(skipped)/o; # Remove search all web search + } + $tmpl =~ s/%RESEARCH/%SEARCH/go; # Pre search result from being rendered + $tmpl = &TWiki::handleCommonTags( $tmpl, $oldTopic, $oldWeb ); + print $tmpl; + } + + #========================= + sub setVars + { + my( $tmpl, $oldTopic, $newWeb, $newTopic ) = @_; + $tmpl =~ s/%NEW_WEB%/$newWeb/go; + $tmpl =~ s/%NEW_TOPIC%/$newTopic/go; + + return $tmpl; + } + + #========================= + sub moreRefsToChange + { + my( $oldWeb, $oldTopic, $newWeb, $newTopic, $skin ) = @_; + + TWiki::writeHeader( $query ); + my $tmpl = TWiki::Store::readTemplate( "renamerefs", $skin ); + $tmpl = setVars( $tmpl, $oldTopic, $newWeb, $newTopic ); + $tmpl = TWiki::getRenderedVersion( $tmpl ); + $tmpl =~ s/%RESEARCH/%SEARCH/go; # Pre search result from being rendered + $tmpl = TWiki::handleCommonTags( $tmpl, $oldTopic, $oldWeb ); + print $tmpl; + } + diff --git a/restart-x b/restart-x new file mode 100755 index 0000000..ed9713b --- /dev/null +++ b/restart-x @@ -0,0 +1,7 @@ +#!/bin/sh + +while true; do + startx + #cp /var/log/Xorg.0.log ~/Xorg.0.log-crash-$(date +%s) + sleep 1 +done diff --git a/save b/save new file mode 100755 index 0000000..e61ff49 --- /dev/null +++ b/save @@ -0,0 +1,136 @@ +#!/usr/bin/perl -wT +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com +# +# Based on parts of Ward Cunninghams original Wiki and JosWiki. +# Copyright (C) 1998 Markus Peter - SPiN GmbH (warpi@spin.de) +# Some changes by Dave Harris (drh@bhresearch.co.uk) incorporated +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html + +# Set library paths in @INC, at compile time +BEGIN { unshift @INC, '.'; require 'setlib.cfg'; } + +use CGI::Carp qw(fatalsToBrowser); +use CGI; +use TWiki; + +&main(); + +sub main +{ + my $query = new CGI; + + my $thePathInfo = $query->path_info(); + my $theRemoteUser = $query->remote_user(); + my $theTopic = $query->param( 'topic' ); + my $theUrl = $query->url; + + ( $topic, $webName, $dummy, $userName ) = + &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query ); + $dummy = ""; # to suppress warning + + my $wikiUserName = &TWiki::userToWikiName( $userName ); + + if( ! &TWiki::Store::webExists( $webName ) ) { + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsnoweb" ); + TWiki::redirect( $query, $url ); + return; + } + + my( $mirrorSiteName, $mirrorViewURL ) = &TWiki::readOnlyMirrorWeb( $webName ); + if( $mirrorSiteName ) { + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsmirror", $mirrorSiteName, $mirrorViewURL ); + print $query->redirect( $url ); + return; + } + + # check access permission + if( ! &TWiki::Access::checkAccessPermission( "change", $wikiUserName, "", $topic, $webName ) ) { + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsaccesschange" ); + TWiki::redirect( $query, $url ); + return; + } + + # check permission for undocumented cmd=... parameter + my $saveCmd = $query->param( "cmd" ) || ""; + if( ( $saveCmd ) && + ( ! &TWiki::Access::userIsInGroup( $wikiUserName, $TWiki::superAdminGroup ) ) ) { + # user has no permission to execute undocumented cmd=... parameter + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsaccessgroup", "$TWiki::mainWebname.$TWiki::superAdminGroup" ); + TWiki::redirect( $query, $url ); + return; + } + + # get text and other parameters + my $text = $query->param( "text" ); + my $unlock = $query->param( "unlock" ) || ""; + my $dontNotify = $query->param( "dontnotify" ) || ""; + + # PTh 06 Nov 2000: check if proper use of save script + if( ! ( defined $text ) ) { + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopssave" ); + TWiki::redirect( $query, $url ); + return; + } elsif( ! $text ) { + # empty topic not allowed + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsempty" ); + print $query->redirect( $url ); + return; + } + + my $changeform = $query->param( 'submitChangeForm' ) || ""; + if( $changeform ) { + &TWiki::Form::changeForm( $webName, $topic, $query ); + return; + } + + $text = &TWiki::decodeSpecialChars( $text ); + $text =~ s/ {3}/\t/go; + + my $meta = ""; + if( $saveCmd eq "repRev" ) { + $text =~ s/%__(.)__%/%_$1_%/go; + ( $meta, $text ) = &TWiki::Store::_extractMetaData( $webName, $topic, $text ); + } else { + # normal case: Get latest attachment from file for preview + my $tmp; + ( $meta, $tmp ) = &TWiki::Store::readTopic( $webName, $topic ); + + # parent setting + my $theParent = $query->param( 'topicparent' ) || ""; + if( $theParent ) { + $meta->put( "TOPICPARENT", ( "name" => $theParent ) ); + } + + my $formTemplate = $query->param( "formtemplate" ); + if( $formTemplate ) { + $meta->remove( "FORM" ); + $meta->put( "FORM", ( name => $formTemplate ) ) if( $formTemplate ne "none" ); + } + + &TWiki::Form::fieldVars2Meta( $webName, $query, $meta ); + } + + + my $error = &TWiki::Store::saveTopic( $webName, $topic, $text, $meta, $saveCmd, $unlock, $dontNotify ); + if( $error ) { + # S. Knutson 30 Nov 2000: error happened (probably from RCS), show it + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopssaveerr", $error ); + TWiki::redirect( $query, $url ); + } else { + TWiki::redirect( $query, &TWiki::getViewUrl( "", $topic ) ); + } +} diff --git a/sc b/sc new file mode 100644 index 0000000..461545f --- /dev/null +++ b/sc @@ -0,0 +1,6 @@ +export PS1=":: uchu :: " +export PS2="" +export PS3="" +export PROMPT_COMMAND="" +cd /home/server/samba/transfer/viri +clear diff --git a/scan-luchsingen.sh b/scan-luchsingen.sh new file mode 100755 index 0000000..c4231ad --- /dev/null +++ b/scan-luchsingen.sh @@ -0,0 +1,26 @@ +#!/bin/sh + +set -e +set -x + +name=$1; shift + +if [ "$#" -ge 1 ]; then + source="ADF Duplex" +else + source="ADF Front" +fi + + +#basename="$name-$(date +%F)" +basename="$name" +batchname="${basename}-%d.pnm" +pdfname="${basename}.pdf" + +cd "$dir" +scanimage -d 'fujitsu:ScanSnap S1500:16799' --mode lineart --resolution 300 \ + --source "$source" --batch="$batchname" || true + +gm convert $(ls -v ${basename}*.pnm) "${basename}.pdf" + +rm -f "${basename}"*.pnm diff --git a/search b/search new file mode 100755 index 0000000..34f7c19 --- /dev/null +++ b/search @@ -0,0 +1,111 @@ +#!/usr/bin/perl -wT +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html +# +# 20000501 Kevin Kinnell : Changed to support new search functionality. +# Move a block of code to wikisearch.pm, removed +# hardcoded flags (except the inline flag) from +# the searchWikiWeb call, added new params. + +# Set library paths in @INC, at compile time +BEGIN { unshift @INC, '.'; require 'setlib.cfg'; } + +use CGI::Carp qw(fatalsToBrowser); +use CGI; +use TWiki; + +use strict; + +&main(); + +sub main +{ + my $query = new CGI; + + my $thePathInfo = $query->path_info(); + my $theRemoteUser = $query->remote_user(); + my $theTopic = $query->param( 'topic' ); + my $theUrl = $query->url; + + my( $topic, $webName ) = + &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query ); + + if( ! &TWiki::Store::webExists( $webName ) ) { + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsnoweb" ); + TWiki::redirect( $query, $url ); + return; + } + + # The CGI.pm docs claim that it returns all of the values in a + # multiple select if called in a list context, but that may not + # work (didn't on the dev box -- perl 5.004_4 and CGI.pm 2.36 on + # Linux (Slackware 2.0.33) with Apache 1.2. That being the case, + # we need to parse them out here. + +# my @webs = $query->param( "web" ) || ( $webName ); #doesn't work + + # Note for those unused to Perlishness: + # ------------------------------------- + # The pipeline at the end of this assignment splits the full query + # string on '&' or ';' and selects out the params that begin with 'web=', + # replacing them with whatever is after that. In the case of a + # single list of webs passed as a string (say, from a text entry + # field) it does more processing than it needs to to get the + # correct string, but so what? The pipline is the second + # parameter to the join, and consists of the last two lines. The + # join takes the results of the pipeline and strings them back + # together, space delimited, which is exactly what &searchWikiWeb + # needs. + # Note that mod_perl/cgi appears to use ';' as separator, whereas plain cgi uses '&' + + my $websStr = join ' ', + grep { s/^web=(.*)$/$1/ } + split(/[&;]/, $query->query_string); + # need to unescape URL-encoded data since we use the raw query_string + # suggested by JeromeBouvattier + $websStr =~ tr/+/ /; # pluses become spaces + $websStr =~ s/%([0-9a-fA-F]{2})/pack("c",hex($1))/ge; # %20 becomes space + + my $search = $query->param( "search" ) || ""; + my $scope = $query->param( "scope" ) || ""; + my $order = $query->param( "order" ) || ""; + my $revSort = $query->param( "reverse" ) || ""; + my $caseSensitive = $query->param( "casesensitive" ) || ""; + my $regex = $query->param( "regex" ) || ""; + my $limit = $query->param( "limit" ) || ""; + my $nosummary = $query->param( "nosummary" ) || ""; + my $nosearch = $query->param( "nosearch" ) || ""; + my $noheader = $query->param( "noheader" ) || ""; + my $nototal = $query->param( "nototal" ) || ""; + my $bookView = $query->param( "bookview" ) || ""; # PTh 20 Jul 2000 + my $renameView = $query->param( "renameview" ) || ""; + my $showlock = $query->param( "showlock" ) || ""; + my $noempty = $query->param( "noempty" ) || ""; + my $attrTemplate = $query->param( "template" ) || ""; # undocumented + my $attrHeader = $query->param( "header" ) || ""; + my $attrFormat = $query->param( "format" ) || ""; + + &TWiki::writeHeader( $query ); + &TWiki::Search::searchWeb( "0", + $websStr, $search, $scope, $order, $regex, + $limit, $revSort, $caseSensitive, $nosummary, + $nosearch, $noheader, $nototal, $bookView, $renameView, + $showlock, $noempty, $attrTemplate, $attrHeader, $attrFormat + ); +} + +# EOF diff --git a/sendmails b/sendmails new file mode 100644 index 0000000..df00e54 --- /dev/null +++ b/sendmails @@ -0,0 +1,4 @@ +killall -ALRM qmail-send +sleep 2 +sendmail -bp +ps xau| grep qmail-remote | sed 's/.*\(qmail-remote.*\)/\1/g' diff --git a/set-background b/set-background new file mode 100755 index 0000000..10f7515 --- /dev/null +++ b/set-background @@ -0,0 +1,6 @@ +#!/bin/sh + +#set -x +#exec >> /tmp/feh-log +#exec 2>&1 +DISPLAY=:1.0 feh --bg-fill --randomize --recursive --draw-filename --draw-tinted ~/photos/ diff --git a/set-font b/set-font new file mode 100755 index 0000000..ab9ddc7 --- /dev/null +++ b/set-font @@ -0,0 +1,4 @@ +#!/bin/sh + +#printf '\33]50;%s\007' "xft:Source Code Pro-10" +printf '\33]50;%s\007' "xft:$1" diff --git a/set_correct_usr_permissions b/set_correct_usr_permissions new file mode 100644 index 0000000..6defae2 --- /dev/null +++ b/set_correct_usr_permissions @@ -0,0 +1,8 @@ + +# +# +# + +. /etc/sys/paths + +for a in " diff --git a/seti b/seti new file mode 100644 index 0000000..38ce318 --- /dev/null +++ b/seti @@ -0,0 +1,2 @@ +cd /tmp/seti +exec ./setiathome diff --git a/setlib.cfg b/setlib.cfg new file mode 100644 index 0000000..11df087 --- /dev/null +++ b/setlib.cfg @@ -0,0 +1,38 @@ +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 2002-2003 Peter Thoeny, peter@thoeny.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html +# +# setlib.cfg: configuration file for TWiki and Perl library paths +# +# Used to configure non-standard locations for TWiki and Perl modules. + + +# -------------- Change these settings if required + +# Path to lib directory containing TWiki.pm. Set to absolute file path: +$twikiLibPath = '../lib'; + +# Path to local Perl modules (e.g. under home directory for users +# without 'root' on Unix/Linux). Uncomment and set if needed: +# $localPerlLibPath = ''; + +# -------------- Don't change anything below this line + +# Prepend to @INC, the Perl search path for modules +unshift @INC, $twikiLibPath; +unshift @INC, $localPerlLibPath if $localPerlLibPath; + +1; # Return success for module loading + diff --git a/show_apache_logs b/show_apache_logs new file mode 100755 index 0000000..449b4f7 --- /dev/null +++ b/show_apache_logs @@ -0,0 +1,2 @@ +cd /home/server/www/ +tail -n1 -F */*/*/*/logs/access.log */*/*/*/logs/error.log diff --git a/smbd b/smbd new file mode 100644 index 0000000..e9df7c1 --- /dev/null +++ b/smbd @@ -0,0 +1,15 @@ +case "$1" in + +start) + + /sbin/portmap + /usr/net/sbin/rpc.mountd + /usr/net/sbin/rpc.nfsd + /usr/net/sbin/rpc.statd + /usr/net/sbin/rpc.lockd + /usr/net/sbin/rpc.rquotad + ;; +stop) + killall portmap rpc.mountd rpc.nfsd rpc.statd rpc.lockd rpc.rquotad + ;; +esac diff --git a/smbmessage b/smbmessage new file mode 100644 index 0000000..8e87ab1 --- /dev/null +++ b/smbmessage @@ -0,0 +1,10 @@ +BASE=192.168.0 +MESSAGE="Network Failure" +SMBCLIENT="smbclient -n NONE -M" + +i=1 + +while [ $i -lt 255 ]; do + echo $MESSAGE | $SMBCLIENT "$BASE"."$i" + i=$[$i+1] +done diff --git a/sniffen b/sniffen new file mode 100644 index 0000000..ade6f2d --- /dev/null +++ b/sniffen @@ -0,0 +1,6 @@ +cd ~nico +ifconfig eth1 promisc up +iwpriv eth1 monitor 1 6 +~/scripts/orinoco_hopper eth1 & +kismet_monitor +kismet diff --git a/sound_2.5 b/sound_2.5 new file mode 100644 index 0000000..1e1ef91 --- /dev/null +++ b/sound_2.5 @@ -0,0 +1,10 @@ +#modprobe soundcore +#modprobe snd-timer +modprobe snd-ali5451 +modprobe snd-pcm-oss +#modprobe snd-mixer-oss + +ln -s /dev/sound/audio /dev/audio +ln -s /dev/sound/dsp /dev/dsp +ln -s /dev/sound/mixer /dev/mixer +chmod a+rw /dev/sound/* diff --git a/ssa/.inputrc b/ssa/.inputrc new file mode 100644 index 0000000..e1d52e8 --- /dev/null +++ b/ssa/.inputrc @@ -0,0 +1,35 @@ +# /etc/inputrc - global inputrc for libreadline +# See readline(3readline) and `info rluserman' for more information. + +# Be 8 bit clean. +set input-meta on +set output-meta on + +# To allow the use of 8bit-characters like the german umlauts, comment out +# the line below. However this makes the meta key not work as a meta key, +# which is annoying to those which don't need to type in 8-bit characters. + +# set convert-meta off + +# from nico +set meta-flag on +set input-meta on +set convert-meta off +set output-meta on +"\eOd": backward-word +"\eOc": forward-word +# for linux console +"\e[1~": beginning-of-line +"\e[4~": end-of-line +"\e[5~": beginning-of-history +"\e[6~": end-of-history +"\e[3~": delete-char +"\e[2~": quoted-insert +# for xterm +"\eOH": beginning-of-line +"\eOF": end-of-line +#for freebsd console +"\e[H": beginning-of-line +"\e[F": end-of-line +#end of inputrc + diff --git a/ssa/add.webserver b/ssa/add.webserver new file mode 100755 index 0000000..f3e5f0a --- /dev/null +++ b/ssa/add.webserver @@ -0,0 +1,29 @@ +#!/bin/sh +# +# + +BASEDIR=`dirname $0` + +. $BASEDIR/sub.defaults + +echo "SSA: v0.2" +echo "(c) Nico Schottelius (nico-ssa@schottelius.org)" +echo "Attention: No BIND support yet" + +read -p "tld: " tld +read -p "sld: " sld +read -p "subdomain: " subdomain +read -p "user: " user +echo "$subdomain.$sld.$tld an $user ?" + +read -p "-- enter fuer weiter --?" + +# web +$BASEDIR/sub.add.wwwroot "$tld" "$sld" "$subdomain" "$user" +$BASEDIR/sub.add.webalizer "$tld" "$sld" "$subdomain" "$user" +$BASEDIR/sub.add.apache "$tld" "$sld" "$subdomain" "$user" +# mail + +echo "change" +exit 1 +#$BASEDIR/sub.add.qmail "$tld" "$sld" "$subdomain" "$user" diff --git a/ssa/massen-reg.internetx b/ssa/massen-reg.internetx new file mode 100755 index 0000000..256dd75 --- /dev/null +++ b/ssa/massen-reg.internetx @@ -0,0 +1,28 @@ +#!/bin/sh + +file=$1 +named_file=/etc/bind/temp.conf +template=/home/server/named/templates/internetx +base_dir=/home/server/named +log=/var/log/syslog + +for domain in `cat $file`; do + BASE=`echo $domain | sed 's/\..*$//g'` + EXT=`echo $domain | sed 's/.*\.\(.*\)/\1/g'` +# echo $BASE +# echo $EXT + + cat << EOF >> "$named_file" + +# schottelius +zone "$domain" { + type master; + file "$EXT/$BASE"; +}; +EOF + +cp "$template" "$base_dir/$EXT/$BASE" +done + +killall -HUP named & +tail -f $log diff --git a/ssa/sub.add.apache b/ssa/sub.add.apache new file mode 100755 index 0000000..47f705d --- /dev/null +++ b/ssa/sub.add.apache @@ -0,0 +1,58 @@ +#!/bin/sh + +. `dirname $0`/sub.defaults + +if [ $# -lt 4 ]; then + echo "$0:"' TLD SLD SUBDOMAIN VUSER' + exit 1 +fi + +TLD="$1" +SLD="$2" +SUBDOMAIN="$3" +VUSER="$4" + +echo Adding vhost $SUBDOMAIN.$SLD.$TLD for $VUSER... + +cat << EOF | sed \ + -e "s/__SLD/$SLD/g"\ + -e "s/__TLD/$TLD/g"\ + -e "s/__SUBDOMAIN/$SUBDOMAIN/g" \ + -e "s/__VUSER/$VUSER/g" \ + -e "s/__GROUP/$CUSTOMER_GROUP/g" \ + -e "s,__BASE,$WEBBASE,g" \ + >> "$APACHE_CONF" + +# __SUBDOMAIN.__SLD.__TLD by __VUSER + +# SuexecUserGroup __VUSER __GROUP + ServerAdmin webmaster@__SLD.__TLD + DocumentRoot __BASE/__VUSER/__TLD/__SLD/__SUBDOMAIN/ + + Options Indexes Includes FollowSymLinks MultiViews + + ServerName __SUBDOMAIN.__SLD.__TLD +# ServerAlias *.__SLD.__TLD +# ServerAlias __SLD.__TLD + ScriptAlias /cgi-bin/ "__BASE/__VUSER/__TLD/__SLD/__SUBDOMAIN/cgi-bin/" + ErrorLog __BASE/__VUSER/__TLD/__SLD/__SUBDOMAIN/logs/error.log + CustomLog __BASE/__VUSER/__TLD/__SLD/__SUBDOMAIN/logs/access.log combined + + AuthType Basic + Require valid-user + AuthName "Kundenbereich - For customers only" + AuthUserFile __BASE/__VUSER/__TLD/__SLD/__SUBDOMAIN.passwd + + + + +EOF + +# logs password +echo "Enter password for viewing logs and statistics (twice)" +htpasswd -c "$WEBBASE/$VUSER/$TLD/$SLD/${SUBDOMAIN}.passwd" "$VUSER" + +# restart +echo -n restarting apache... +$RESTART_APACHE +echo done. diff --git a/ssa/sub.add.apache-v2-obsoleted b/ssa/sub.add.apache-v2-obsoleted new file mode 100644 index 0000000..56056d1 --- /dev/null +++ b/ssa/sub.add.apache-v2-obsoleted @@ -0,0 +1,49 @@ +#!/bin/sh + +. `dirname $0`/sub.defaults + +case $# in + 3) + TLD="$1" + SLD="$2" + VUSER="$3" + echo -n adding qmail entry for $SLD.$TLD,which points to $VUSER + + echo "$SLD.$TLD" >> $RCPTHOSTS + echo "$SLD.$TLD:$VUSER-$SLD.$TLD" >> $VDOMAINS + ;; + 4) + exit 1 + TLD="$1" + SLD="$2" + SUBDOMAIN="$3" # currently unused + VUSER="$4" + echo -n adding qmail entry for $SUBDOMAIN.$SLD.$TLD,which points to $VUSER + + echo "$SUBDOMAIN.$SLD.$TLD" >> $RCPTHOSTS + echo "$SUBDOMAIN.$SLD.$TLD:$VUSER-$SLD.$TLD" >> $VDOMAINS + ;; + *) + echo $0: 'TLD SLD [SUBDOMAIN] VUSER' + exit 1 + ;; +esac + + +# default handling +echo "&$VUSER@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-default + +# moi +echo "&nico@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-postmaster +echo "&nico@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-mailer-daemon +echo "&nico@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-root + +# perms +chown $VUSER /home/user/$VUSER/.qmail-$SLD\:$TLD-* + +echo -n restarting qmail... + +# restart +killall -HUP qmail-send + +echo done. diff --git a/ssa/sub.add.qmail b/ssa/sub.add.qmail new file mode 100755 index 0000000..6cd0a71 --- /dev/null +++ b/ssa/sub.add.qmail @@ -0,0 +1,51 @@ +#!/bin/sh +# Nico Schottelius +# SSA +# + +. `dirname $0`/sub.defaults + +case $# in + 3) + TLD="$1" + SLD="$2" + VUSER="$3" + DOMAIN=${SLD}.${TLD} + ;; + 4) + TLD="$1" + SLD="$2" + SUBDOMAIN="$3" + VUSER="$4" + DOMAIN=${SUBDOMAIN}.${SLD}.${TLD} + ;; + *) + echo $0: 'TLD SLD [SUBDOMAIN] VUSER' + exit 1 + ;; +esac + +DOTDOMAIN=`echo $DOMAIN | sed 's/\./:/g'` + +echo -n "adding qmail entry $DOMAIN for $VUSER ... " + +echo "$DOMAIN" >> $RCPTHOSTS +echo "$DOMAIN:$VUSER-$DOMAIN" >> $VDOMAINS + +# default handling +echo "&$VUSER@$QMAIL_HOST" > /home/user/$VUSER/.qmail-$DOTDOMAIN-default + +# moi +echo "&nico@$QMAIL_HOST" > /home/user/$VUSER/.qmail-$DOTDOMAIN-postmaster +echo "&nico@$QMAIL_HOST" > /home/user/$VUSER/.qmail-$DOTDOMAIN-mailer-daemon +echo "&nico@$QMAIL_HOST" > /home/user/$VUSER/.qmail-$DOTDOMAIN-root + +# perms +chown $VUSER /home/user/$VUSER/.qmail-$DOTDOMAIN-* + +echo -n restarting qmail... + +# restart +killall -HUP qmail-send + +echo done. diff --git a/ssa/sub.add.qmail-v0.3-not-ready b/ssa/sub.add.qmail-v0.3-not-ready new file mode 100644 index 0000000..58b8111 --- /dev/null +++ b/ssa/sub.add.qmail-v0.3-not-ready @@ -0,0 +1,50 @@ +#!/bin/sh + +. `dirname $0`/sub.defaults + +if [ $# -lt 3 ]; then + echo $0: 'VUSER TLD SLD [SUBDOMAIN] [SUBDOMAIN2]' + exit 1 +fi + +VUSER=$1; shift + + +case $# in + 3) + TLD="$1" + SLD="$2" + VUSER="$3" + ;; + 4) + TLD="$1" + SLD="$2" + SUBDOMAIN="$3" # currently unused + VUSER="$4" + ;; + *) + ;; +esac + +echo -n adding qmail entry for $SLD.$TLD,which points to $VUSER + +echo "$SLD.$TLD" >> $RCPTHOSTS +echo "$SLD.$TLD:$VUSER-$SLD.$TLD" >> $VDOMAINS + +# default handling +echo "&$VUSER@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-default + +# moi +echo "&nico@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-postmaster +echo "&nico@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-mailer-daemon +echo "&nico@schottelius.org" > /home/user/$VUSER/.qmail-$SLD\:$TLD-root + +# perms +chown $VUSER /home/user/$VUSER/.qmail-$SLD\:$TLD-* + +echo -n restarting qmail... + +# restart +killall -HUP qmail-send + +echo done. diff --git a/ssa/sub.add.webalizer b/ssa/sub.add.webalizer new file mode 100755 index 0000000..9b82298 --- /dev/null +++ b/ssa/sub.add.webalizer @@ -0,0 +1,23 @@ +#!/bin/sh + +. `dirname $0`/sub.defaults + +if [ $# -ne 4 ]; then + echo $0: TLD SLD SUBDOMAIN VUSER + exit 1 +fi + +TLD="$1" +SLD="$2" +SUBDOMAIN="$3" +VUSER="$4" + +echo -n add: webalizer $SUBDOMAIN.$SLD.$TLD from $WEBALIZER_DEFAULT for $VUSER... + +cat "$WEBALIZER_DEFAULT" | sed -e "s/__TLD/$TLD/g" \ + -e "s/__SLD/$SLD/g" \ + -e "s/__VUSER/$VUSER/g" \ + -e "s/__SUBDOMAIN/$SUBDOMAIN/g" > \ + $WEBBASE/$VUSER/$TLD/$SLD/$SUBDOMAIN/logs/webalizer/webalizer.conf + +echo done. diff --git a/ssa/sub.add.wwwroot b/ssa/sub.add.wwwroot new file mode 100755 index 0000000..987e774 --- /dev/null +++ b/ssa/sub.add.wwwroot @@ -0,0 +1,32 @@ +#!/bin/sh + +. `dirname $0`/sub.defaults +TLD="$1" +SLD="$2" +SUBDOMAIN="$3" +VUSER="$4" + +if [ $# -ne 4 ]; then + echo $0: TLD SLD SUBDOMAIN VUSER + exit 1 +fi + +echo -n adding wwwroot for $SUBDOMAIN.$SLD.$TLD and links for $VUSER ... + +# root +mkdir -p $WEBBASE/$VUSER/$TLD/$SLD/$SUBDOMAIN + +# cgi-bin +mkdir -p $WEBBASE/$VUSER/$TLD/$SLD/$SUBDOMAIN/cgi-bin + +# webalizer +mkdir -p $WEBBASE/$VUSER/$TLD/$SLD/$SUBDOMAIN/logs/webalizer + +# sample +cp $WEBPAGE_DEFAULT $WEBBASE/$VUSER/$TLD/$SLD/$SUBDOMAIN/index.html + +# permissions +chown -R $VUSER /home/server/www/$VUSER/$TLD/$SLD/ +chgrp -R $WWWOWNER /home/server/www/$VUSER/$TLD/$SLD/ + +echo done. diff --git a/ssa/sub.defaults b/ssa/sub.defaults new file mode 100644 index 0000000..13def98 --- /dev/null +++ b/ssa/sub.defaults @@ -0,0 +1,17 @@ +APACHE_CONF="/etc/apache/virtual.conf" +WEBBASE=/home/server/www +WEBALIZER_DEFAULT=$WEBBASE/default/webalizer-default +WEBPAGE_DEFAULT=$WEBBASE/default/sample.html +tempfile=/tmp/add.sub +#QMAILROOT=/var/qmail/control +QMAIL_HOST=creme.schottelius.org +QMAILROOT=/usr/packages/qmail-1.03-ssl/control +RCPTHOSTS=$QMAILROOT/rcpthosts +VDOMAINS=$QMAILROOT/virtualdomains + +CUSTOMER_GROUP=users + +WWWOWNER=www-data + +RESTART_APACHE="apachectl restart" + diff --git a/ssa/sub.del.wwwroot b/ssa/sub.del.wwwroot new file mode 100755 index 0000000..190bfea --- /dev/null +++ b/ssa/sub.del.wwwroot @@ -0,0 +1,20 @@ +#!/bin/sh + +. `dirname $0`/sub.defaults +TLD="$1" +SLD="$2" +SUBDOMAIN="$3" + +if [ $# -ne 3 ]; then + echo $0: TLD SLD SUBDOMAIN + exit 1 +fi + +echo -n removing wwwroot for $SUBDOMAIN.$SLD.$TLD ... + +# root +rm -r $WEBBASE/$TLD/$SLD/$SUBDOMAIN +rmdir $WEBBASE/$TLD/$SLD/ +rmdir $WEBBASE/$TLD/ + +echo done. diff --git a/startgpm b/startgpm new file mode 100644 index 0000000..16a9cd9 --- /dev/null +++ b/startgpm @@ -0,0 +1 @@ +gpm -t ps2 -m /dev/misc/psaux diff --git a/startwdt b/startwdt new file mode 100644 index 0000000..6e06442 --- /dev/null +++ b/startwdt @@ -0,0 +1,4 @@ +dhcpcd -h flapp +~/scripts/mount-musik +~/scripts/sound_2.5 +su - nico -c startx diff --git a/statistics b/statistics new file mode 100755 index 0000000..b5751a1 --- /dev/null +++ b/statistics @@ -0,0 +1,571 @@ +#!/usr/bin/perl -wT +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 2000-2003 Peter Thoeny, peter@thoeny.com +# Copyright (C) 2002 Richard Donkin, rdonkin@bigfoot.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html +# +# DESCRIPTION +# This script does update the usage statistics of each TWiki web. +# It reads the current month's log file and updates the table +# in the WebStatistics topic of each web. +# The script should be called by a cron job, it is recommended to +# call it once a day. + +# Set library paths in @INC, at compile time +BEGIN { unshift @INC, '.'; require 'setlib.cfg'; } + +# 'Use locale' for internationalisation of Perl regexes - +# main locale settings are done in TWiki::setupLocale +BEGIN { + # Do a dynamic 'use locale' for this module + if( $TWiki::useLocale ) { + require locale; + import locale (); + } +} + +use CGI::Carp qw(fatalsToBrowser); +use CGI; +use File::Copy qw(copy); +use IO::File; + +use TWiki; + +use strict; +# use diagnostics; # Debug only + +#open(STDERR,'>&STDOUT'); # redirect error to browser +# FIXME: Beware global $| in mod_perl! Should use 'local' +$| = 1; # no buffering + +&main(); + +# ========================= +sub main +{ + # initialize variables + my $cgiQuery = undef; + my $tmp = ""; + my $theTopic = ""; + my $thePathInfo = ""; + my $theRemoteUser = ""; + my $logDate = ""; + + # determine at runtime if script is called by browser or cron job + if( $ENV{'DOCUMENT_ROOT'} ) { + # script is called by browser + $cgiQuery = new CGI; + $thePathInfo = $cgiQuery->path_info() || ""; + $theRemoteUser = $cgiQuery->remote_user() || ""; + $theTopic = $cgiQuery->param( 'topic' ) || ""; + $tmp = $cgiQuery->param( 'logdate' ) || ""; + $tmp =~ s/[^0-9]//g; # remove all non numerals + if( $tmp ne "" ) { + $logDate = "$tmp"; + } + TWiki::writeHeader( $cgiQuery ); + print "\n\nTWiki: Create Usage Statistics\n"; + print "\n\n"; + } else { + # script is called by cron job + } + + # Set up locale and regexes + &TWiki::basicInitialize(); + + # Initial messages + printMsg( "TWiki: Create Usage Statistics", $cgiQuery ); + if( $cgiQuery ) { + print "

    Do not interrupt this script! ( Please wait until page download has finished )

    \n"; + } + if ( $theRemoteUser ) { + $tmp = &TWiki::userToWikiName( $theRemoteUser ); + $tmp =~ s/^Main\.//; + printMsg( "* Executed by $tmp", $cgiQuery ); + } else { + printMsg( "* Executed by a guest or a cron job scheduler", $cgiQuery ); + } + + if( ! $logDate ) { + # get current local time and format to "yyyymm" format: + my ( $sec, $min, $hour, $mday, $mon, $year) = localtime( time() ); + $year = sprintf("%.4u", $year + 1900); # Y2K fix + $mon = $mon+1; + $logDate = sprintf("%.4u%.2u", $year, $mon); + } + + my $logMonth; + my $logYear; + $tmp = $logDate; + $tmp =~ s/([0-9]{4})(.*)/$2/g; + if( $tmp && $tmp < 13 ) { + $logMonth = $TWiki::isoMonth[$tmp-1]; + } else { + $logMonth = "Date error"; + } + $logYear = $logDate; + $logYear =~ s/([0-9]{4})(.*)/$1/g; + my $logMonthYear = "$logMonth $logYear"; + printMsg( "* Statistics for $logMonthYear", $cgiQuery ); + + my $logFile = $TWiki::logFilename; + $logFile =~ s/%DATE%/$logDate/g; + + if( -e $logFile ) { + # Copy the log file to temp file, since analysis could take some time + + # FIXME move the temp dir stuff to TWiki.cfg + my $tmpDir; + if ( $TWiki::OS eq "UNIX" ) { + $tmpDir = $ENV{'TEMP'} || "/tmp"; + } elsif ( $TWiki::OS eq "WINDOWS" ) { + $tmpDir = $ENV{'TEMP'} || "c:/"; + } else { + # FIXME handle other OSs properly - assume Unix for now. + $tmpDir = "/tmp"; + } + my $randNo = int ( rand 1000); # For mod_perl with threading... + my $tmpFilename = "$tmpDir/twiki-stats.$$.$randNo"; + $tmpFilename =~ /(.*)/; $tmpFilename = $1; # Untaint + + File::Copy::copy ($logFile, $tmpFilename) + or die "Can't copy $logFile to $tmpFilename - $!"; + + # Open the temp file + my $TMPFILE = new IO::File; + open $TMPFILE, $tmpFilename + or die "Can't open $tmpFilename - $!"; + + # Do a single data collection pass on the temporary copy of logfile, + # then call processWeb once for each web of interest. + my ($viewRef, $contribRef, $statViewsRef, $statSavesRef, + $statUploadsRef) = collectLogData( $TMPFILE, $logMonthYear ); + +=pod + # DEBUG ONLY + debugPrintHash($viewRef); + debugPrintHash($contribRef); + print "statViews tests===========\n"; + print "Views in Main = " . ${$statViewsRef}{'Main'} . "\n"; + print "hash stats (used/avail) = " . %{$statViewsRef}."\n"; + + foreach my $web (keys %{$statViewsRef}) { + print "Web summary for $web\n"; + print $statViewsRef->{$web}."\n"; + print $statSavesRef->{$web}."\n"; + print $statUploadsRef->{$web}."\n"; + } +=cut + + # Generate WebStatistics topic update for one or more webs + if ( $thePathInfo ) { + # do a particular web: + processWeb( $thePathInfo, $theRemoteUser, $theTopic, $logMonthYear, $viewRef, $contribRef, + $statViewsRef, $statSavesRef, $statUploadsRef, $cgiQuery ); + + } else { + # do all webs: + my $dataDir = &TWiki::getDataDir(); + my @weblist = (); + if( opendir( DIR, "$dataDir" ) ) { + @weblist = grep /^[^\.\_]/, readdir DIR; # exclude webs starting with . or _ + closedir DIR; + } else { + printMsg( " *** Error: opendir $dataDir, $!", $cgiQuery ); + } + foreach my $web ( @weblist ) { + if( -d "$dataDir/$web" ) { + processWeb( "/$web", $theRemoteUser, $theTopic, $logMonthYear, $viewRef, $contribRef, + $statViewsRef, $statSavesRef, $statUploadsRef, $cgiQuery ); + } + } + } + close $TMPFILE; # Shouldn't be necessary with 'my' + unlink $tmpFilename; # FIXME: works on Windows??? Unlink before + # usage to ensure deleted on crash? + } else { + printMsg( " - Note: Log file $logFile does not exist", $cgiQuery ); + } + + if( $cgiQuery ) { + $tmp = $TWiki::statisticsTopicname; + my $url = &TWiki::getViewUrl( "", $tmp ); + printMsg( "* Go back to $tmp topic", $cgiQuery ); + printMsg( "End creating usage statistics", $cgiQuery ); + print "\n"; + } else { + printMsg( "End creating usage statistics", $cgiQuery ); + } +} + +# Debug only +# Print all entries in a view or contrib hash, sorted by web and item name +sub debugPrintHash { + my ($statsRef) = @_; + # print "Main.WebHome views = " . ${$statsRef}{'Main'}{'WebHome'}."\n"; + # print "Main web, TWikiGuest contribs = " . ${$statsRef}{'Main'}{'Main.TWikiGuest'}."\n"; + foreach my $web ( sort keys %$statsRef) { + my $count = 0; + print "$web web:\n"; + # Get reference to the sub-hash for this web + my $webhashref = ${$statsRef}{$web}; + # print "webhashref is " . ref ($webhashref) ."\n"; + # Items can be topics (for view hash) or users (for contrib hash) + foreach my $item ( sort keys %$webhashref ) { + print " $item = "; + print "" . ( ${$webhashref}{$item} || 0 ) ."\n"; + $count += ${$webhashref}{$item}; + } + print " WEB TOTAL = $count\n"; + } +} + + +# ========================= +# Process the whole log file and collect information in hash tables. +# Must build stats for all webs, to handle case of renames into web +# requested for a single-web statistics run. +# +# Main hash tables are divided by web: +# +# $view{$web}{$TopicName} == number of views, by topic +# $contrib{$web}{"Main.".$WikiName} == number of saves/uploads, by user + +sub collectLogData +{ + my( $TMPFILE, $theLogMonthYear ) = @_; + + # Examples of log file format: + # | 03 Feb 2000 - 02:43 | Main.PeterThoeny | view | Know.WebHome | | + # | 03 Feb 2000 - 02:43 | Main.PeterThoeny | save | Know.WebHome | | + # | 03 Feb 2000 - 02:53 | Main.PeterThoeny | save | Know.WebHome | repRev 1.7 Main.PeterThoeny 2000/02/03 02:43:22 | + # | 23 Feb 2002 - 11:07 | Main.TWikiGuest | search | Main | Office *Locations[^A-Za-z] | 127.0.0.1 | + # Note: there's no topic name on search log entry + # | 23 Feb 2002 - 11:07 | Main.guest | search | Main | Office *Locations[^A-Za-z] | 127.0.0.1 | + # | 28 Mar 2002 - 07:11 | Main.FredBloggs | rename | Test.TestTopic7 | moved to Test.TestTopic7New | 127.0.0.1 | + + + my %view; # Hash of hashes, counts topic views by + my %contrib; # Hash of hashes, counts uploads/saves by + + # Hashes for each type of statistic, one hash entry per web + my %statViews; + my %statSaves; + my %statUploads; + + # Imported regex objects, supporting I18N + my $webNameRegex = $TWiki::webNameRegex; + my $wikiWordRegex = $TWiki::wikiWordRegex; + my $abbrevRegex = $TWiki::abbrevRegex; + + # Script regexes + my $intranetUserRegex = qr/[a-z0-9]+/; # FIXME: should centralise this + my $userRegex = qr/(?:$intranetUserRegex|$wikiWordRegex)/; + my $opRegex = qr/[a-z0-9]+/; # Operation, no i18n needed + # my $topicRegex = qr/(?:$wikiWordRegex|$abbrevRegex)/; # Strict topic names only + my $topicRegex = qr/[^ ]+/; # Relaxed topic names - any non-space OK + # but won't be auto-linked in WebStatistics + my $errorRegex = qr/\(not exist\)/; # Match '(not exist)' flag + + my ($webName, $opName, $topicName, $userName, $newTopicName, $newTopicWeb); + binmode $TMPFILE; + while ( <$TMPFILE> ) { + my $line = $_; + $line =~ s/\r*\n$//; # Clean out line endings + + $line =~ /^\|[^\|]*\| ($webNameRegex\.$userRegex) \| ($opRegex) \| ($webNameRegex)[. ]/o; + $userName = $1 || ""; # Main.FredBloggs + $opName = $2 || ""; + $webName = $3 || ""; + + # Skip bad logfile lines and warn if necessary + unless ($userName && $opName && $webName) { + if( $TWiki::doDebugStatistics ) { + TWiki::writeDebug("Invalid log file line = '$line'"); + TWiki::writeDebug("userName = '$userName'"); + TWiki::writeDebug("opName = '$opName'"); + TWiki::writeDebug("webName = '$webName'"); + } + next; + } + + my $logContrib = 0; + + if ($opName eq 'view' ) { + $statViews{$webName}++; + # Pick up the topic name and any error string + $line =~ /^\|[^\|]*\| ($webNameRegex\.$userRegex) \| ($opRegex) \| ($webNameRegex)\.($topicRegex) \| +(${errorRegex}?) */o; + $topicName = $4 || ""; + my $noSuchTopic = $5 || ""; # Set if '(not exist)' matched + + unless( $topicName ) { + if( $TWiki::doDebugStatistics ) { + TWiki::writeDebug("Invalid log file line = '$line'"); + TWiki::writeDebug("userName = '$userName'"); + TWiki::writeDebug("opName = '$opName'"); + TWiki::writeDebug("webName = '$webName'"); + TWiki::writeDebug("topicName = '$topicName'"); + } + next; + } + + # Skip accesses to non-existent topics + if ($noSuchTopic) { + next; + } else { + # Count this topic access + $view{$webName}{$topicName}++; + } + + } elsif ($opName eq 'save' ) { + $statSaves{$webName}++; + $logContrib = 1; + + } elsif ($opName eq 'upload' ) { + $statUploads{$webName}++; + $logContrib = 1; + + } elsif ($opName eq 'rename' ) { + # Pick up the old and new topic names + $line =~ /^\|[^\|]*\| ($webNameRegex\.$userRegex) \| ($opRegex) \| ($webNameRegex)\.($topicRegex) \| moved to ($webNameRegex)\.($topicRegex) /o; + $topicName = $4 || ""; + $newTopicWeb = $5 || ""; + $newTopicName = $6 || ""; + ## TWiki::writeDebug("$topicName renamed to $newTopicWeb.$newTopicName"); + + unless ($topicName && $newTopicWeb && $newTopicName) { + if( $TWiki::doDebugStatistics ) { + TWiki::writeDebug("Invalid log file line (rename) = '$line'"); + TWiki::writeDebug("userName = '$userName'"); + TWiki::writeDebug("opName = '$opName'"); + TWiki::writeDebug("webName = '$webName'"); + TWiki::writeDebug("topicName= '$topicName'"); + TWiki::writeDebug("newTopicWeb= '$newTopicWeb'"); + TWiki::writeDebug("newTopicName = '$newTopicName'"); + } + next; + } + # Get number of views for old topic this month (may be zero) + my $oldViews = $view{$webName}{$topicName} || 0; + + # Transfer views from old to new topic + $view{$newTopicWeb}{$newTopicName} = $oldViews; + delete $view{$webName}{$topicName}; + + # Transfer views from old to new web + if ( $newTopicWeb ne $webName ) { + $statViews{$webName} -= $oldViews; + $statViews{$newTopicWeb} += $oldViews; + } + } + # Record saves and uploads + if ($logContrib) { + # Record the contribution by user name + $contrib{$webName}{$userName}++; + } +=pod + # DEBUG + $. <= 5 && print "$line\n"; + print "$line\n"; + print "$.: $userName did $opName on $webName"; + print ".$topicName" if (defined $topicName); + print "\n"; +=cut + + } + +=pod + + print "Main.WebHome views = " . $view{'Main'}{'WebHome'}."\n"; + print "Main web's contribs = " . $contrib{'Main'}{'Main.RichardDonkin'}."\n"; + debugPrintHash(\%view); + debugPrintHash(\%contrib); +=cut + return \%view, \%contrib, \%statViews, \%statSaves, \%statUploads; + + + + +} + +# ========================= +sub processWeb +{ + my( $thePathInfo, $theRemoteUser, $theTopic, $theLogMonthYear, $viewRef, $contribRef, + $statViewsRef, $statSavesRef, $statUploadsRef, $cgiQuery ) = @_; + + my ( $topic, $webName, $dummy, $userName, $dataDir ) = + &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, "", $cgiQuery ); + $dummy = ""; # to suppress warning + + printMsg( "* Reporting on TWiki.$webName web", $cgiQuery ); + + if( ! &TWiki::Store::webExists( $webName ) ) { + printMsg( " *** Error: Web $webName does not exist", $cgiQuery ); + return; + } + + # Handle null values, print summary message to browser/stdout + my $statViews = $statViewsRef->{$webName}; + my $statSaves = $statSavesRef->{$webName}; + my $statUploads = $statUploadsRef->{$webName}; + $statViews ||= 0; + $statSaves ||= 0; + $statUploads ||= 0; + printMsg( " - view: $statViews, save: $statSaves, upload: $statUploads", $cgiQuery ); + + + # Get the top N views and contribs in this web + my (@topViews) = getTopList( $TWiki::statsTopViews, $webName, $viewRef ); + my (@topContribs) = getTopList( $TWiki::statsTopContrib, $webName, $contribRef ); + + # Print information to stdout + my $statTopViews = ""; + my $statTopContributors = ""; + if( @topViews ) { + printMsg( " - top view: $topViews[0]", $cgiQuery ); + $statTopViews = join( "
    ", @topViews ); + } + if( @topContribs ) { + printMsg( " - top contributor: $topContribs[0]", $cgiQuery ); + $statTopContributors = join( "
    ", @topContribs ); + } + + # Update the WebStatistics topic + + my $tmp; + my $statsTopic = $TWiki::statisticsTopicname; + # DEBUG + # $statsTopic = "TestStatistics"; # Create this by hand + if( &TWiki::Store::topicExists( $webName, $statsTopic ) ) { + my( $meta, $text ) = &TWiki::Store::readTopic( $webName, $statsTopic, 1 ); + my @lines = split( /\n/, $text ); + my $statLine; + my $idxStat = -1; + my $idxTmpl = -1; + for( my $x = 0; $x < @lines; $x++ ) { + $tmp = $lines[$x]; + # Check for existing line for this month+year + if( $tmp =~ /$theLogMonthYear/ ) { + $idxStat = $x; + } elsif( $tmp =~ /<\!\-\-statDate\-\->/ ) { + $statLine = $tmp; + $idxTmpl = $x; + } + } + if( ! $statLine ) { + $statLine = "| | | | | | |"; + } + $statLine =~ s/<\!\-\-statDate\-\->/$theLogMonthYear/; + $statLine =~ s/<\!\-\-statViews\-\->/ $statViews/; + $statLine =~ s/<\!\-\-statSaves\-\->/ $statSaves/; + $statLine =~ s/<\!\-\-statUploads\-\->/ $statUploads/; + $statLine =~ s/<\!\-\-statTopViews\-\->/$statTopViews/; + $statLine =~ s/<\!\-\-statTopContributors\-\->/$statTopContributors/; + + if( $idxStat >= 0 ) { + # entry already exists, need to update + $lines[$idxStat] = $statLine; + + } elsif( $idxTmpl >= 0 ) { + # entry does not exist, add after line + $lines[$idxTmpl] = "$lines[$idxTmpl]\n$statLine"; + + } else { + # entry does not exist, add at the end + $lines[@lines] = $statLine; + } + $text = join( "\n", @lines ); + $text .= "\n"; + + &TWiki::Store::saveTopic( $webName, $statsTopic, $text, $meta, "", 1, 1, 1 ); + printMsg( " - Topic $statsTopic updated", $cgiQuery ); + + } else { + printMsg( " *** Warning: No updates done, topic $webName.$statsTopic does not exist", $cgiQuery ); + } +} + +# ========================= +# Get the items with top N frequency counts +# Items can be topics (for view hash) or users (for contrib hash) +sub getTopList +{ + my( $theMaxNum, $webName, $statsRef ) = @_; + + # Get reference to the sub-hash for this web + my $webhashref = $statsRef->{$webName}; + + # print "Main.WebHome views = " . $statsRef->{$webName}{'WebHome'}."\n"; + # print "Main web, TWikiGuest contribs = " . ${$statsRef}{$webName}{'Main.TWikiGuest'}."\n"; + + my @list = (); + my $topicName; + my $statValue; + + # Convert sub hash of item=>statsvalue pairs into an array, @list, + # of '$statValue $topicName', ready for sorting. + while( ( $topicName, $statValue ) = each( %$webhashref ) ) { + # Right-align statistic value for sorting + $statValue = sprintf "%7d", $statValue; + # Add new array item at end of array + $list[@list] = "$statValue $topicName"; + } + + # DEBUG + # print " top N list for $webName\n"; + # print join "\n", @list; + + # Sort @list by frequency and pick the top N entries + if( @list ) { + @list = map{ s/^([0-9][0-9][^0-9])/\ \;$1/; $_ } + map{ s/^([0-9][^0-9])/\ \;\ \;$1/; $_ } + map{ s/^\s*//; $_ } + reverse( sort( @list ) ); + if( $theMaxNum >= @list ) { + $theMaxNum = @list - 1; + } + return @list[0..$theMaxNum]; + } + return @list; +} + +# ========================= +sub printMsg +{ + my( $msg, $cgiQuery ) = @_; + my $htmlMsg = $msg; + + if( $cgiQuery ) { + # TODO: May need to fix this regex if internationalised script + # messages are supported in future. + if( $htmlMsg =~ /^[A-Z]/ ) { + $htmlMsg =~ s/^([A-Z].*)/

    $1<\/h3>/go; + } else { + $htmlMsg =~ s/(\*\*\*.*)/$1<\/font>/go; + $htmlMsg =~ s/^\s\s/  /go; + $htmlMsg =~ s/^\s/ /go; + $htmlMsg .= "
    "; + } + $htmlMsg =~ s/==([A-Z]*)==/==$1==<\/font>/go; + print "$htmlMsg\n"; + } else { + print "$msg\n"; + } +} + +# ========================= +# EOF diff --git a/stats/data/named-history.20040116 b/stats/data/named-history.20040116 new file mode 100644 index 0000000..8744a0c --- /dev/null +++ b/stats/data/named-history.20040116 @@ -0,0 +1,168 @@ +296 +296 +296 +296 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040117 b/stats/data/named-history.20040117 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040117 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040118 b/stats/data/named-history.20040118 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040118 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040119 b/stats/data/named-history.20040119 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040119 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040120 b/stats/data/named-history.20040120 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040120 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040121 b/stats/data/named-history.20040121 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040121 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040122 b/stats/data/named-history.20040122 new file mode 100644 index 0000000..7bfaf10 --- /dev/null +++ b/stats/data/named-history.20040122 @@ -0,0 +1,282 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040123 b/stats/data/named-history.20040123 new file mode 100644 index 0000000..aa5f545 --- /dev/null +++ b/stats/data/named-history.20040123 @@ -0,0 +1,116 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040124 b/stats/data/named-history.20040124 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040124 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040125 b/stats/data/named-history.20040125 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040125 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040126 b/stats/data/named-history.20040126 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040126 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040127 b/stats/data/named-history.20040127 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040127 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040128 b/stats/data/named-history.20040128 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040128 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040129 b/stats/data/named-history.20040129 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040129 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040130 b/stats/data/named-history.20040130 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040130 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040131 b/stats/data/named-history.20040131 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040131 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040201 b/stats/data/named-history.20040201 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040201 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040202 b/stats/data/named-history.20040202 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040202 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040203 b/stats/data/named-history.20040203 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040203 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040204 b/stats/data/named-history.20040204 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040204 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040205 b/stats/data/named-history.20040205 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040205 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040206 b/stats/data/named-history.20040206 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040206 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040207 b/stats/data/named-history.20040207 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040207 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040208 b/stats/data/named-history.20040208 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040208 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040209 b/stats/data/named-history.20040209 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040209 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040210 b/stats/data/named-history.20040210 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040210 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040211 b/stats/data/named-history.20040211 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040211 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040212 b/stats/data/named-history.20040212 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040212 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040213 b/stats/data/named-history.20040213 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040213 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040214 b/stats/data/named-history.20040214 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040214 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040215 b/stats/data/named-history.20040215 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040215 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040216 b/stats/data/named-history.20040216 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040216 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040217 b/stats/data/named-history.20040217 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040217 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040218 b/stats/data/named-history.20040218 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040218 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040219 b/stats/data/named-history.20040219 new file mode 100644 index 0000000..3ec18b1 --- /dev/null +++ b/stats/data/named-history.20040219 @@ -0,0 +1,287 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040220 b/stats/data/named-history.20040220 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040220 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040221 b/stats/data/named-history.20040221 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040221 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040222 b/stats/data/named-history.20040222 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040222 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040223 b/stats/data/named-history.20040223 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040223 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040224 b/stats/data/named-history.20040224 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040224 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040225 b/stats/data/named-history.20040225 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040225 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040226 b/stats/data/named-history.20040226 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040226 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040227 b/stats/data/named-history.20040227 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040227 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040228 b/stats/data/named-history.20040228 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040228 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040229 b/stats/data/named-history.20040229 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040229 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040301 b/stats/data/named-history.20040301 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040301 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040302 b/stats/data/named-history.20040302 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040302 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040303 b/stats/data/named-history.20040303 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040303 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040304 b/stats/data/named-history.20040304 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040304 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040305 b/stats/data/named-history.20040305 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040305 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040306 b/stats/data/named-history.20040306 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040306 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040307 b/stats/data/named-history.20040307 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040307 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040308 b/stats/data/named-history.20040308 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040308 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040309 b/stats/data/named-history.20040309 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040309 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040310 b/stats/data/named-history.20040310 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040310 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040311 b/stats/data/named-history.20040311 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040311 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040312 b/stats/data/named-history.20040312 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040312 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040313 b/stats/data/named-history.20040313 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040313 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040314 b/stats/data/named-history.20040314 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040314 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040315 b/stats/data/named-history.20040315 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040315 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040316 b/stats/data/named-history.20040316 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040316 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040317 b/stats/data/named-history.20040317 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040317 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040318 b/stats/data/named-history.20040318 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040318 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040319 b/stats/data/named-history.20040319 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040319 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040320 b/stats/data/named-history.20040320 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040320 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040321 b/stats/data/named-history.20040321 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040321 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040322 b/stats/data/named-history.20040322 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040322 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040323 b/stats/data/named-history.20040323 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040323 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040324 b/stats/data/named-history.20040324 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040324 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040325 b/stats/data/named-history.20040325 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040325 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040326 b/stats/data/named-history.20040326 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040326 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040327 b/stats/data/named-history.20040327 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040327 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040328 b/stats/data/named-history.20040328 new file mode 100644 index 0000000..05209d8 --- /dev/null +++ b/stats/data/named-history.20040328 @@ -0,0 +1,276 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040329 b/stats/data/named-history.20040329 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040329 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040330 b/stats/data/named-history.20040330 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040330 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040331 b/stats/data/named-history.20040331 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040331 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040401 b/stats/data/named-history.20040401 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040401 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040402 b/stats/data/named-history.20040402 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040402 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040403 b/stats/data/named-history.20040403 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040403 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040404 b/stats/data/named-history.20040404 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040404 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040405 b/stats/data/named-history.20040405 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040405 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040406 b/stats/data/named-history.20040406 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040406 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040407 b/stats/data/named-history.20040407 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040407 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040408 b/stats/data/named-history.20040408 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040408 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040409 b/stats/data/named-history.20040409 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040409 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040410 b/stats/data/named-history.20040410 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040410 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040411 b/stats/data/named-history.20040411 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040411 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040412 b/stats/data/named-history.20040412 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040412 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040413 b/stats/data/named-history.20040413 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040413 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040414 b/stats/data/named-history.20040414 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040414 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040415 b/stats/data/named-history.20040415 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040415 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040416 b/stats/data/named-history.20040416 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040416 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040417 b/stats/data/named-history.20040417 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040417 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040418 b/stats/data/named-history.20040418 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040418 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040419 b/stats/data/named-history.20040419 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040419 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040420 b/stats/data/named-history.20040420 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040420 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040421 b/stats/data/named-history.20040421 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040421 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040422 b/stats/data/named-history.20040422 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040422 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040423 b/stats/data/named-history.20040423 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040423 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040424 b/stats/data/named-history.20040424 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040424 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040425 b/stats/data/named-history.20040425 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040425 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040426 b/stats/data/named-history.20040426 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040426 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040427 b/stats/data/named-history.20040427 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040427 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040428 b/stats/data/named-history.20040428 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040428 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040429 b/stats/data/named-history.20040429 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040429 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040430 b/stats/data/named-history.20040430 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040430 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040501 b/stats/data/named-history.20040501 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040501 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040502 b/stats/data/named-history.20040502 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040502 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040503 b/stats/data/named-history.20040503 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040503 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040504 b/stats/data/named-history.20040504 new file mode 100644 index 0000000..af56f69 --- /dev/null +++ b/stats/data/named-history.20040504 @@ -0,0 +1,224 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040505 b/stats/data/named-history.20040505 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040505 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040506 b/stats/data/named-history.20040506 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040506 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040507 b/stats/data/named-history.20040507 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040507 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040508 b/stats/data/named-history.20040508 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040508 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040509 b/stats/data/named-history.20040509 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040509 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040510 b/stats/data/named-history.20040510 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040510 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040511 b/stats/data/named-history.20040511 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040511 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040512 b/stats/data/named-history.20040512 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040512 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040513 b/stats/data/named-history.20040513 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040513 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040514 b/stats/data/named-history.20040514 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040514 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040515 b/stats/data/named-history.20040515 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040515 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040516 b/stats/data/named-history.20040516 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040516 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040517 b/stats/data/named-history.20040517 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040517 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040518 b/stats/data/named-history.20040518 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040518 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040519 b/stats/data/named-history.20040519 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040519 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040520 b/stats/data/named-history.20040520 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040520 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040521 b/stats/data/named-history.20040521 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040521 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040522 b/stats/data/named-history.20040522 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040522 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040523 b/stats/data/named-history.20040523 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040523 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040524 b/stats/data/named-history.20040524 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040524 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040525 b/stats/data/named-history.20040525 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040525 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040526 b/stats/data/named-history.20040526 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040526 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040527 b/stats/data/named-history.20040527 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040527 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040528 b/stats/data/named-history.20040528 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040528 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040529 b/stats/data/named-history.20040529 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040529 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040530 b/stats/data/named-history.20040530 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040530 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040531 b/stats/data/named-history.20040531 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040531 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040601 b/stats/data/named-history.20040601 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040601 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040602 b/stats/data/named-history.20040602 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040602 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040603 b/stats/data/named-history.20040603 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040603 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040604 b/stats/data/named-history.20040604 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040604 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040605 b/stats/data/named-history.20040605 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040605 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040606 b/stats/data/named-history.20040606 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040606 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040607 b/stats/data/named-history.20040607 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040607 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040608 b/stats/data/named-history.20040608 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040608 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040609 b/stats/data/named-history.20040609 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040609 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040610 b/stats/data/named-history.20040610 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040610 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040611 b/stats/data/named-history.20040611 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040611 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040612 b/stats/data/named-history.20040612 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040612 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040613 b/stats/data/named-history.20040613 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040613 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040614 b/stats/data/named-history.20040614 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040614 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040615 b/stats/data/named-history.20040615 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040615 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040616 b/stats/data/named-history.20040616 new file mode 100644 index 0000000..1f509a3 --- /dev/null +++ b/stats/data/named-history.20040616 @@ -0,0 +1,288 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/named-history.20040617 b/stats/data/named-history.20040617 new file mode 100644 index 0000000..48b0787 --- /dev/null +++ b/stats/data/named-history.20040617 @@ -0,0 +1,180 @@ +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 +8877 diff --git a/stats/data/pop-history.20040116 b/stats/data/pop-history.20040116 new file mode 100644 index 0000000..13824ff --- /dev/null +++ b/stats/data/pop-history.20040116 @@ -0,0 +1,169 @@ +0 +0 +0 +0 +0 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040117 b/stats/data/pop-history.20040117 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040117 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040118 b/stats/data/pop-history.20040118 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040118 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040119 b/stats/data/pop-history.20040119 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040119 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040120 b/stats/data/pop-history.20040120 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040120 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040121 b/stats/data/pop-history.20040121 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040121 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040122 b/stats/data/pop-history.20040122 new file mode 100644 index 0000000..6ee721b --- /dev/null +++ b/stats/data/pop-history.20040122 @@ -0,0 +1,282 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040123 b/stats/data/pop-history.20040123 new file mode 100644 index 0000000..3a0b76b --- /dev/null +++ b/stats/data/pop-history.20040123 @@ -0,0 +1,116 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040124 b/stats/data/pop-history.20040124 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040124 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040125 b/stats/data/pop-history.20040125 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040125 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040126 b/stats/data/pop-history.20040126 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040126 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040127 b/stats/data/pop-history.20040127 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040127 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040128 b/stats/data/pop-history.20040128 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040128 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040129 b/stats/data/pop-history.20040129 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040129 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040130 b/stats/data/pop-history.20040130 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040130 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040131 b/stats/data/pop-history.20040131 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040131 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040201 b/stats/data/pop-history.20040201 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040201 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040202 b/stats/data/pop-history.20040202 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040202 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040203 b/stats/data/pop-history.20040203 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040203 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040204 b/stats/data/pop-history.20040204 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040204 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040205 b/stats/data/pop-history.20040205 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040205 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040206 b/stats/data/pop-history.20040206 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040206 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040207 b/stats/data/pop-history.20040207 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040207 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040208 b/stats/data/pop-history.20040208 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040208 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040209 b/stats/data/pop-history.20040209 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040209 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040210 b/stats/data/pop-history.20040210 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040210 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040211 b/stats/data/pop-history.20040211 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040211 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040212 b/stats/data/pop-history.20040212 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040212 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040213 b/stats/data/pop-history.20040213 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040213 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040214 b/stats/data/pop-history.20040214 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040214 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040215 b/stats/data/pop-history.20040215 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040215 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040216 b/stats/data/pop-history.20040216 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040216 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040217 b/stats/data/pop-history.20040217 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040217 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040218 b/stats/data/pop-history.20040218 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040218 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040219 b/stats/data/pop-history.20040219 new file mode 100644 index 0000000..c867c8b --- /dev/null +++ b/stats/data/pop-history.20040219 @@ -0,0 +1,287 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040220 b/stats/data/pop-history.20040220 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040220 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040221 b/stats/data/pop-history.20040221 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040221 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040222 b/stats/data/pop-history.20040222 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040222 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040223 b/stats/data/pop-history.20040223 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040223 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040224 b/stats/data/pop-history.20040224 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040224 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040225 b/stats/data/pop-history.20040225 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040225 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040226 b/stats/data/pop-history.20040226 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040226 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040227 b/stats/data/pop-history.20040227 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040227 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040228 b/stats/data/pop-history.20040228 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040228 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040229 b/stats/data/pop-history.20040229 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040229 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040301 b/stats/data/pop-history.20040301 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040301 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040302 b/stats/data/pop-history.20040302 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040302 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040303 b/stats/data/pop-history.20040303 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040303 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040304 b/stats/data/pop-history.20040304 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040304 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040305 b/stats/data/pop-history.20040305 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040305 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040306 b/stats/data/pop-history.20040306 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040306 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040307 b/stats/data/pop-history.20040307 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040307 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040308 b/stats/data/pop-history.20040308 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040308 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040309 b/stats/data/pop-history.20040309 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040309 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040310 b/stats/data/pop-history.20040310 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040310 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040311 b/stats/data/pop-history.20040311 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040311 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040312 b/stats/data/pop-history.20040312 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040312 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040313 b/stats/data/pop-history.20040313 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040313 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040314 b/stats/data/pop-history.20040314 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040314 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040315 b/stats/data/pop-history.20040315 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040315 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040316 b/stats/data/pop-history.20040316 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040316 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040317 b/stats/data/pop-history.20040317 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040317 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040318 b/stats/data/pop-history.20040318 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040318 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040319 b/stats/data/pop-history.20040319 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040319 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040320 b/stats/data/pop-history.20040320 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040320 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040321 b/stats/data/pop-history.20040321 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040321 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040322 b/stats/data/pop-history.20040322 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040322 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040323 b/stats/data/pop-history.20040323 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040323 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040324 b/stats/data/pop-history.20040324 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040324 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040325 b/stats/data/pop-history.20040325 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040325 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040326 b/stats/data/pop-history.20040326 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040326 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040327 b/stats/data/pop-history.20040327 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040327 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040328 b/stats/data/pop-history.20040328 new file mode 100644 index 0000000..4555984 --- /dev/null +++ b/stats/data/pop-history.20040328 @@ -0,0 +1,276 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040329 b/stats/data/pop-history.20040329 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040329 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040330 b/stats/data/pop-history.20040330 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040330 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040331 b/stats/data/pop-history.20040331 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040331 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040401 b/stats/data/pop-history.20040401 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040401 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040402 b/stats/data/pop-history.20040402 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040402 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040403 b/stats/data/pop-history.20040403 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040403 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040404 b/stats/data/pop-history.20040404 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040404 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040405 b/stats/data/pop-history.20040405 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040405 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040406 b/stats/data/pop-history.20040406 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040406 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040407 b/stats/data/pop-history.20040407 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040407 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040408 b/stats/data/pop-history.20040408 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040408 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040409 b/stats/data/pop-history.20040409 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040409 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040410 b/stats/data/pop-history.20040410 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040410 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040411 b/stats/data/pop-history.20040411 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040411 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040412 b/stats/data/pop-history.20040412 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040412 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040413 b/stats/data/pop-history.20040413 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040413 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040414 b/stats/data/pop-history.20040414 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040414 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040415 b/stats/data/pop-history.20040415 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040415 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040416 b/stats/data/pop-history.20040416 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040416 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040417 b/stats/data/pop-history.20040417 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040417 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040418 b/stats/data/pop-history.20040418 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040418 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040419 b/stats/data/pop-history.20040419 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040419 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040420 b/stats/data/pop-history.20040420 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040420 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040421 b/stats/data/pop-history.20040421 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040421 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040422 b/stats/data/pop-history.20040422 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040422 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040423 b/stats/data/pop-history.20040423 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040423 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040424 b/stats/data/pop-history.20040424 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040424 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040425 b/stats/data/pop-history.20040425 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040425 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040426 b/stats/data/pop-history.20040426 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040426 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040427 b/stats/data/pop-history.20040427 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040427 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040428 b/stats/data/pop-history.20040428 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040428 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040429 b/stats/data/pop-history.20040429 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040429 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040430 b/stats/data/pop-history.20040430 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040430 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040501 b/stats/data/pop-history.20040501 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040501 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040502 b/stats/data/pop-history.20040502 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040502 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040503 b/stats/data/pop-history.20040503 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040503 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040504 b/stats/data/pop-history.20040504 new file mode 100644 index 0000000..d7ac343 --- /dev/null +++ b/stats/data/pop-history.20040504 @@ -0,0 +1,224 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040505 b/stats/data/pop-history.20040505 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040505 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040506 b/stats/data/pop-history.20040506 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040506 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040507 b/stats/data/pop-history.20040507 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040507 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040508 b/stats/data/pop-history.20040508 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040508 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040509 b/stats/data/pop-history.20040509 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040509 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040510 b/stats/data/pop-history.20040510 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040510 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040511 b/stats/data/pop-history.20040511 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040511 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040512 b/stats/data/pop-history.20040512 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040512 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040513 b/stats/data/pop-history.20040513 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040513 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040514 b/stats/data/pop-history.20040514 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040514 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040515 b/stats/data/pop-history.20040515 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040515 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040516 b/stats/data/pop-history.20040516 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040516 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040517 b/stats/data/pop-history.20040517 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040517 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040518 b/stats/data/pop-history.20040518 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040518 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040519 b/stats/data/pop-history.20040519 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040519 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040520 b/stats/data/pop-history.20040520 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040520 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040521 b/stats/data/pop-history.20040521 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040521 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040522 b/stats/data/pop-history.20040522 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040522 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040523 b/stats/data/pop-history.20040523 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040523 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040524 b/stats/data/pop-history.20040524 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040524 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040525 b/stats/data/pop-history.20040525 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040525 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040526 b/stats/data/pop-history.20040526 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040526 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040527 b/stats/data/pop-history.20040527 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040527 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040528 b/stats/data/pop-history.20040528 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040528 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040529 b/stats/data/pop-history.20040529 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040529 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040530 b/stats/data/pop-history.20040530 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040530 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040531 b/stats/data/pop-history.20040531 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040531 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040601 b/stats/data/pop-history.20040601 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040601 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040602 b/stats/data/pop-history.20040602 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040602 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040603 b/stats/data/pop-history.20040603 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040603 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040604 b/stats/data/pop-history.20040604 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040604 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040605 b/stats/data/pop-history.20040605 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040605 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040606 b/stats/data/pop-history.20040606 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040606 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040607 b/stats/data/pop-history.20040607 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040607 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040608 b/stats/data/pop-history.20040608 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040608 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040609 b/stats/data/pop-history.20040609 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040609 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040610 b/stats/data/pop-history.20040610 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040610 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040611 b/stats/data/pop-history.20040611 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040611 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040612 b/stats/data/pop-history.20040612 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040612 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040613 b/stats/data/pop-history.20040613 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040613 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040614 b/stats/data/pop-history.20040614 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040614 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040615 b/stats/data/pop-history.20040615 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040615 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040616 b/stats/data/pop-history.20040616 new file mode 100644 index 0000000..e5f85ae --- /dev/null +++ b/stats/data/pop-history.20040616 @@ -0,0 +1,288 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/pop-history.20040617 b/stats/data/pop-history.20040617 new file mode 100644 index 0000000..4307b77 --- /dev/null +++ b/stats/data/pop-history.20040617 @@ -0,0 +1,180 @@ +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 +2158 diff --git a/stats/data/smtp-history.20040116 b/stats/data/smtp-history.20040116 new file mode 100644 index 0000000..550e2ef --- /dev/null +++ b/stats/data/smtp-history.20040116 @@ -0,0 +1,169 @@ +0 +0 +0 +0 +0 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040117 b/stats/data/smtp-history.20040117 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040117 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040118 b/stats/data/smtp-history.20040118 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040118 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040119 b/stats/data/smtp-history.20040119 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040119 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040120 b/stats/data/smtp-history.20040120 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040120 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040121 b/stats/data/smtp-history.20040121 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040121 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040122 b/stats/data/smtp-history.20040122 new file mode 100644 index 0000000..05eccb3 --- /dev/null +++ b/stats/data/smtp-history.20040122 @@ -0,0 +1,282 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040123 b/stats/data/smtp-history.20040123 new file mode 100644 index 0000000..6d35439 --- /dev/null +++ b/stats/data/smtp-history.20040123 @@ -0,0 +1,116 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040124 b/stats/data/smtp-history.20040124 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040124 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040125 b/stats/data/smtp-history.20040125 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040125 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040126 b/stats/data/smtp-history.20040126 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040126 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040127 b/stats/data/smtp-history.20040127 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040127 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040128 b/stats/data/smtp-history.20040128 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040128 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040129 b/stats/data/smtp-history.20040129 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040129 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040130 b/stats/data/smtp-history.20040130 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040130 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040131 b/stats/data/smtp-history.20040131 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040131 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040201 b/stats/data/smtp-history.20040201 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040201 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040202 b/stats/data/smtp-history.20040202 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040202 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040203 b/stats/data/smtp-history.20040203 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040203 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040204 b/stats/data/smtp-history.20040204 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040204 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040205 b/stats/data/smtp-history.20040205 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040205 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040206 b/stats/data/smtp-history.20040206 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040206 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040207 b/stats/data/smtp-history.20040207 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040207 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040208 b/stats/data/smtp-history.20040208 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040208 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040209 b/stats/data/smtp-history.20040209 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040209 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040210 b/stats/data/smtp-history.20040210 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040210 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040211 b/stats/data/smtp-history.20040211 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040211 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040212 b/stats/data/smtp-history.20040212 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040212 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040213 b/stats/data/smtp-history.20040213 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040213 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040214 b/stats/data/smtp-history.20040214 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040214 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040215 b/stats/data/smtp-history.20040215 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040215 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040216 b/stats/data/smtp-history.20040216 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040216 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040217 b/stats/data/smtp-history.20040217 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040217 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040218 b/stats/data/smtp-history.20040218 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040218 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040219 b/stats/data/smtp-history.20040219 new file mode 100644 index 0000000..460d016 --- /dev/null +++ b/stats/data/smtp-history.20040219 @@ -0,0 +1,287 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040220 b/stats/data/smtp-history.20040220 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040220 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040221 b/stats/data/smtp-history.20040221 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040221 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040222 b/stats/data/smtp-history.20040222 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040222 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040223 b/stats/data/smtp-history.20040223 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040223 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040224 b/stats/data/smtp-history.20040224 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040224 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040225 b/stats/data/smtp-history.20040225 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040225 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040226 b/stats/data/smtp-history.20040226 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040226 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040227 b/stats/data/smtp-history.20040227 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040227 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040228 b/stats/data/smtp-history.20040228 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040228 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040229 b/stats/data/smtp-history.20040229 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040229 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040301 b/stats/data/smtp-history.20040301 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040301 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040302 b/stats/data/smtp-history.20040302 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040302 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040303 b/stats/data/smtp-history.20040303 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040303 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040304 b/stats/data/smtp-history.20040304 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040304 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040305 b/stats/data/smtp-history.20040305 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040305 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040306 b/stats/data/smtp-history.20040306 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040306 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040307 b/stats/data/smtp-history.20040307 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040307 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040308 b/stats/data/smtp-history.20040308 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040308 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040309 b/stats/data/smtp-history.20040309 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040309 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040310 b/stats/data/smtp-history.20040310 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040310 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040311 b/stats/data/smtp-history.20040311 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040311 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040312 b/stats/data/smtp-history.20040312 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040312 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040313 b/stats/data/smtp-history.20040313 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040313 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040314 b/stats/data/smtp-history.20040314 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040314 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040315 b/stats/data/smtp-history.20040315 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040315 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040316 b/stats/data/smtp-history.20040316 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040316 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040317 b/stats/data/smtp-history.20040317 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040317 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040318 b/stats/data/smtp-history.20040318 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040318 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040319 b/stats/data/smtp-history.20040319 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040319 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040320 b/stats/data/smtp-history.20040320 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040320 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040321 b/stats/data/smtp-history.20040321 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040321 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040322 b/stats/data/smtp-history.20040322 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040322 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040323 b/stats/data/smtp-history.20040323 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040323 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040324 b/stats/data/smtp-history.20040324 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040324 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040325 b/stats/data/smtp-history.20040325 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040325 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040326 b/stats/data/smtp-history.20040326 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040326 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040327 b/stats/data/smtp-history.20040327 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040327 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040328 b/stats/data/smtp-history.20040328 new file mode 100644 index 0000000..a39f6b9 --- /dev/null +++ b/stats/data/smtp-history.20040328 @@ -0,0 +1,276 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040329 b/stats/data/smtp-history.20040329 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040329 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040330 b/stats/data/smtp-history.20040330 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040330 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040331 b/stats/data/smtp-history.20040331 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040331 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040401 b/stats/data/smtp-history.20040401 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040401 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040402 b/stats/data/smtp-history.20040402 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040402 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040403 b/stats/data/smtp-history.20040403 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040403 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040404 b/stats/data/smtp-history.20040404 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040404 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040405 b/stats/data/smtp-history.20040405 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040405 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040406 b/stats/data/smtp-history.20040406 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040406 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040407 b/stats/data/smtp-history.20040407 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040407 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040408 b/stats/data/smtp-history.20040408 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040408 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040409 b/stats/data/smtp-history.20040409 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040409 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040410 b/stats/data/smtp-history.20040410 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040410 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040411 b/stats/data/smtp-history.20040411 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040411 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040412 b/stats/data/smtp-history.20040412 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040412 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040413 b/stats/data/smtp-history.20040413 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040413 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040414 b/stats/data/smtp-history.20040414 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040414 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040415 b/stats/data/smtp-history.20040415 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040415 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040416 b/stats/data/smtp-history.20040416 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040416 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040417 b/stats/data/smtp-history.20040417 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040417 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040418 b/stats/data/smtp-history.20040418 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040418 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040419 b/stats/data/smtp-history.20040419 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040419 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040420 b/stats/data/smtp-history.20040420 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040420 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040421 b/stats/data/smtp-history.20040421 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040421 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040422 b/stats/data/smtp-history.20040422 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040422 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040423 b/stats/data/smtp-history.20040423 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040423 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040424 b/stats/data/smtp-history.20040424 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040424 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040425 b/stats/data/smtp-history.20040425 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040425 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040426 b/stats/data/smtp-history.20040426 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040426 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040427 b/stats/data/smtp-history.20040427 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040427 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040428 b/stats/data/smtp-history.20040428 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040428 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040429 b/stats/data/smtp-history.20040429 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040429 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040430 b/stats/data/smtp-history.20040430 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040430 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040501 b/stats/data/smtp-history.20040501 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040501 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040502 b/stats/data/smtp-history.20040502 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040502 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040503 b/stats/data/smtp-history.20040503 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040503 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040504 b/stats/data/smtp-history.20040504 new file mode 100644 index 0000000..42367c5 --- /dev/null +++ b/stats/data/smtp-history.20040504 @@ -0,0 +1,224 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040505 b/stats/data/smtp-history.20040505 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040505 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040506 b/stats/data/smtp-history.20040506 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040506 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040507 b/stats/data/smtp-history.20040507 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040507 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040508 b/stats/data/smtp-history.20040508 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040508 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040509 b/stats/data/smtp-history.20040509 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040509 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040510 b/stats/data/smtp-history.20040510 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040510 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040511 b/stats/data/smtp-history.20040511 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040511 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040512 b/stats/data/smtp-history.20040512 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040512 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040513 b/stats/data/smtp-history.20040513 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040513 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040514 b/stats/data/smtp-history.20040514 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040514 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040515 b/stats/data/smtp-history.20040515 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040515 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040516 b/stats/data/smtp-history.20040516 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040516 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040517 b/stats/data/smtp-history.20040517 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040517 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040518 b/stats/data/smtp-history.20040518 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040518 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040519 b/stats/data/smtp-history.20040519 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040519 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040520 b/stats/data/smtp-history.20040520 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040520 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040521 b/stats/data/smtp-history.20040521 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040521 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040522 b/stats/data/smtp-history.20040522 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040522 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040523 b/stats/data/smtp-history.20040523 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040523 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040524 b/stats/data/smtp-history.20040524 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040524 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040525 b/stats/data/smtp-history.20040525 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040525 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040526 b/stats/data/smtp-history.20040526 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040526 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040527 b/stats/data/smtp-history.20040527 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040527 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040528 b/stats/data/smtp-history.20040528 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040528 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040529 b/stats/data/smtp-history.20040529 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040529 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040530 b/stats/data/smtp-history.20040530 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040530 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040531 b/stats/data/smtp-history.20040531 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040531 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040601 b/stats/data/smtp-history.20040601 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040601 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040602 b/stats/data/smtp-history.20040602 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040602 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040603 b/stats/data/smtp-history.20040603 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040603 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040604 b/stats/data/smtp-history.20040604 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040604 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040605 b/stats/data/smtp-history.20040605 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040605 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040606 b/stats/data/smtp-history.20040606 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040606 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040607 b/stats/data/smtp-history.20040607 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040607 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040608 b/stats/data/smtp-history.20040608 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040608 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040609 b/stats/data/smtp-history.20040609 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040609 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040610 b/stats/data/smtp-history.20040610 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040610 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040611 b/stats/data/smtp-history.20040611 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040611 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040612 b/stats/data/smtp-history.20040612 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040612 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040613 b/stats/data/smtp-history.20040613 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040613 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040614 b/stats/data/smtp-history.20040614 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040614 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040615 b/stats/data/smtp-history.20040615 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040615 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040616 b/stats/data/smtp-history.20040616 new file mode 100644 index 0000000..0cb024d --- /dev/null +++ b/stats/data/smtp-history.20040616 @@ -0,0 +1,288 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/data/smtp-history.20040617 b/stats/data/smtp-history.20040617 new file mode 100644 index 0000000..8c21929 --- /dev/null +++ b/stats/data/smtp-history.20040617 @@ -0,0 +1,180 @@ +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 +5481 diff --git a/stats/iptraf.log b/stats/iptraf.log new file mode 100644 index 0000000..03d5cdb --- /dev/null +++ b/stats/iptraf.log @@ -0,0 +1,40 @@ +Fri Jan 16 09:56:42 2004; ******** TCP/UDP service monitor started ******** + +*** TCP/UDP traffic log, generated Fri Jan 16 09:58:42 2004 + +TCP/22: 951 packets, 105308 bytes total, 7.02 kbits/s; 561 packets, 44436 bytes incoming, 2.96 kbits/s; 390 packets, 60872 bytes outgoing, 4.05 kbits/s + +UDP/53: 2 packets, 296 bytes total, 0.04 kbits/s; 1 packets, 64 bytes incoming, 0.00 kbits/s; 1 packets, 232 bytes outgoing, 0.02 kbits/s + +TCP/135: 1 packets, 48 bytes total, 0.00 kbits/s; 1 packets, 48 bytes incoming, 0.00 kbits/s; 0 packets, 0 bytes outgoing, 0.00 kbits/s + + +Running time: 120 seconds +Fri Jan 16 09:58:42 2004; ******** TCP/UDP service monitor stopped ******** +Fri Jan 16 10:10:39 2004; ******** TCP/UDP service monitor started ******** + +*** TCP/UDP traffic log, generated Fri Jan 16 10:15:39 2004 + +TCP/22: 1872 packets, 211740 bytes total, 5.64 kbits/s; 1108 packets, 90688 bytes incoming, 2.42 kbits/s; 764 packets, 121052 bytes outgoing, 3.23 kbits/s + +TCP/901: 1 packets, 48 bytes total, 0.00 kbits/s; 1 packets, 48 bytes incoming, 0.00 kbits/s; 0 packets, 0 bytes outgoing, 0.00 kbits/s + +TCP/80: 720 packets, 643832 bytes total, 18.01 kbits/s; 262 packets, 17607 bytes incoming, 0.49 kbits/s; 458 packets, 626225 bytes outgoing, 17.51 kbits/s + +UDP/53: 78 packets, 8877 bytes total, 0.26 kbits/s; 39 packets, 3088 bytes incoming, 0.09 kbits/s; 39 packets, 5789 bytes outgoing, 0.17 kbits/s + +TCP/110: 38 packets, 2158 bytes total, 0.07 kbits/s; 20 packets, 890 bytes incoming, 0.03 kbits/s; 18 packets, 1268 bytes outgoing, 0.04 kbits/s + +TCP/113: 17 packets, 937 bytes total, 0.03 kbits/s; 9 packets, 512 bytes incoming, 0.02 kbits/s; 8 packets, 425 bytes outgoing, 0.01 kbits/s + +TCP/21: 149 packets, 8895 bytes total, 0.31 kbits/s; 73 packets, 3669 bytes incoming, 0.13 kbits/s; 76 packets, 5226 bytes outgoing, 0.18 kbits/s + +TCP/20: 57 packets, 8384 bytes total, 0.32 kbits/s; 22 packets, 1216 bytes incoming, 0.04 kbits/s; 35 packets, 7168 bytes outgoing, 0.27 kbits/s + +TCP/25: 45 packets, 5481 bytes total, 0.32 kbits/s; 22 packets, 4063 bytes incoming, 0.24 kbits/s; 23 packets, 1418 bytes outgoing, 0.08 kbits/s + +TCP/135: 3 packets, 144 bytes total, 0.02 kbits/s; 3 packets, 144 bytes incoming, 0.02 kbits/s; 0 packets, 0 bytes outgoing, 0.00 kbits/s + + +Running time: 300 seconds +Fri Jan 16 10:15:39 2004; ******** TCP/UDP service monitor stopped ******** diff --git a/stats/plot_all.sh b/stats/plot_all.sh new file mode 100755 index 0000000..9402160 --- /dev/null +++ b/stats/plot_all.sh @@ -0,0 +1,53 @@ +#! /bin/bash + +sleep 5 #give iptraf time to write its data into the log file + +WWWDIR=/home/server/www/nico/org/schottelius/tech/stats +TRAFLOG=/root/bin/stats/iptraf.log +WDIR=/root/bin/stats +TODAY=$(/bin/date +%s) +UDATE=$(/bin/date +%Y%m%d) +NAME=all.gif + +SMTP=$(grep "TCP/25" $TRAFLOG|tail -n1|cut -f2 -d","|cut -f2 -d" ") +POP=$(grep "TCP/110" $TRAFLOG|tail -n1|cut -f2 -d","|cut -f2 -d" ") +NAMED=$(grep "UDP/53" $TRAFLOG|tail -n1|cut -f2 -d","|cut -f2 -d" ") + +echo "smtp: $SMTP" +echo "pop3: $POP" +echo "named: $NAMED" + +if [ -z $NAMED ]; then + NAMED="0"; +fi + +if [ -z $SMTP ]; then + SMTP="0"; +fi + +if [ -z $POP ]; then + POP="0"; +fi + +# archive results + +echo $SMTP >> $WDIR/data/smtp-history.$UDATE +echo $POP >> $WDIR/data/pop-history.$UDATE +echo $NAMED >> $WDIR/data/named-history.$UDATE + +rrdtool update $WDIR/rrdtool/all.rrd $TODAY:$SMTP:$POP3:$NAMED + + +#draw the graph + + +rrdtool graph $WWWDIR/$NAME \ +--start -86400 \ +--vertical-label "bytes per second" \ +-w 600 -h 200 \ +DEF:smtp=$WDIR/rrdtool/all.rrd:smtp:AVERAGE \ +DEF:pop3=$WDIR/rrdtool/all.rrd:pop3:AVERAGE \ +DEF:named=$WDIR/rrdtool/all.rrd:named:AVERAGE \ +AREA:smtp#00ff00:"SMTP" \ +LINE1:pop3#0000ff:"POP3" \ +LINE2:named#ff0000:"DNS" diff --git a/stats/plot_mailserver.sh b/stats/plot_mailserver.sh new file mode 100755 index 0000000..c7ba3d4 --- /dev/null +++ b/stats/plot_mailserver.sh @@ -0,0 +1,43 @@ +#! /bin/bash + +sleep 5 #give iptraf time to write its data into the log file + +WWWDIR=/home/server/www/nico/org/schottelius/tech/stats +TRAFLOG=/root/bin/stats/iptraf.log +WDIR=/root/bin/stats +TODAY=$(/bin/date +%s) +UDATE=$(/bin/date +%Y%m%d) + +SMTP=$(grep "TCP/25" $TRAFLOG|tail -n1|cut -f2 -d","|cut -f2 -d" ") +POP=$(grep "TCP/110" $TRAFLOG|tail -n1|cut -f2 -d","|cut -f2 -d" ") + +echo "smtp: $SMTP" +echo "pop3: $POP" + +if [ -z $SMTP ]; then + SMTP="0"; +fi + +if [ -z $POP ]; then + POP="0"; +fi + +# archive results + +echo $SMTP >> $WDIR/data/smtp-history.$UDATE +echo $POP >> $WDIR/data/pop-history.$UDATE + +rrdtool update $WDIR/rrdtool/mailserver.rrd $TODAY:$SMTP:$POP3 + + +#draw the graph + + +rrdtool graph $WWWDIR/mailserver.gif \ +--start -86400 \ +--vertical-label "bytes per second" \ +-w 600 -h 200 \ +DEF:smtp=$WDIR/rrdtool/mailserver.rrd:smtp:AVERAGE \ +DEF:pop3=$WDIR/rrdtool/mailserver.rrd:pop3:AVERAGE \ +AREA:smtp#00ff00:"SMTP traffic" \ +LINE1:pop3#0000ff:"POP3 traffic" diff --git a/stats/plot_memory.sh b/stats/plot_memory.sh new file mode 100755 index 0000000..8e3218e --- /dev/null +++ b/stats/plot_memory.sh @@ -0,0 +1,28 @@ +#! /bin/bash + +WDIR=/root/bin/stats +TODAY=$(/bin/date +%s) +WWWDIR=/home/server/www/nico/org/schottelius/tech/stats + +## extract mem values from /proc/meminfo + +RAM=`grep MemFree /proc/meminfo|tr -s [:blank:]|cut -f2 -d" "` +SWAP=`grep SwapFree /proc/meminfo|tr -s [:blank:]|cut -f2 -d" "` +#SWAP=`grep /proc/meminfo|tr -s [:blank:]|cut -f2 -d" "` + +#echo $SWAP + +## write data into the RRD + +rrdtool update $WDIR/rrdtool/memory.rrd $TODAY:$RAM:$SWAP + +## draw the graph + +rrdtool graph $WWWDIR/memory.gif \ +--start -86400 \ +--vertical-label "kBytes free" \ +-w 600 -h 200 \ +DEF:ram=$WDIR/rrdtool/memory.rrd:ram:AVERAGE \ +DEF:swap=$WDIR/rrdtool/memory.rrd:swap:AVERAGE \ +AREA:ram#00ff00:"RAM" \ +LINE1:swap#0000ff:"Swap" diff --git a/stats/rrdtool-create b/stats/rrdtool-create new file mode 100644 index 0000000..ad91c9d --- /dev/null +++ b/stats/rrdtool-create @@ -0,0 +1 @@ +rrdtool create rrdtool/all.rrd DS:smtp:ABSOLUTE:600:U:U DS:pop3:ABSOLUTE:600:U:U DS:named:ABSOLUTE:600:U:U RRA:AVERAGE:0.5:1:600 RRA:AVERAGE:0.5:6:700 RRA:AVERAGE:0.5:24:775 RRA:AVERAGE:0.5:288:797 RRA:MAX:0.5:1:600 RRA:MAX:0.5:6:700 RRA:MAX:0.5:24:775 RRA:MAX:0.5:288:797 diff --git a/stats/rrdtool/all.rrd b/stats/rrdtool/all.rrd new file mode 100644 index 0000000..527b60e Binary files /dev/null and b/stats/rrdtool/all.rrd differ diff --git a/stats/rrdtool/mailserver.rrd b/stats/rrdtool/mailserver.rrd new file mode 100644 index 0000000..6a02163 Binary files /dev/null and b/stats/rrdtool/mailserver.rrd differ diff --git a/stats/rrdtool/memory.rrd b/stats/rrdtool/memory.rrd new file mode 100644 index 0000000..8a0195e Binary files /dev/null and b/stats/rrdtool/memory.rrd differ diff --git a/synaptics-tuning b/synaptics-tuning new file mode 100755 index 0000000..0b540f4 --- /dev/null +++ b/synaptics-tuning @@ -0,0 +1,7 @@ +#!/bin/sh + +synclient HorizTwoFingerScroll=1 +synclient HorizHysteresis=50 +synclient VertHysteresis=50 +synclient VertScrollDelta=-111 +synclient HorizScrollDelta=-111 diff --git a/sys/README b/sys/README new file mode 100644 index 0000000..6e698e8 --- /dev/null +++ b/sys/README @@ -0,0 +1 @@ +Scripts used for system tuning/configuration/administration. diff --git a/tag-mails b/tag-mails new file mode 100755 index 0000000..5e3402a --- /dev/null +++ b/tag-mails @@ -0,0 +1,216 @@ +#!/bin/sh + +notmuch tag +ungleich +ticket from:redmine@ungleich.ch + +notmuch tag +ungleich from:@ungleich.ch or to:@ungleich.ch +notmuch tag +mitarbeiter from:tobias.kiefer@ungleich.ch or from:david.huerlimann@ungleich.ch or from:fiala@mfiala.net +notmuch tag +ungleich +monitoring from:monitor@ungleich.ch + +notmuch tag +p.c.systems from:@pcsystems.de or to:@pcsystems.de + +notmuch tag +magrathea from:@magrathea.eu or to:@magrathea.eu +notmuch tag +magrathea from:@magrathea.de or to:@magrathea.de +notmuch tag +kunde tag:magrathea + +notmuch tag +local.ch from:@local.ch or from:"Philipp Keller" + +notmuch tag +ethz from:@inf.ethz.ch or to:@inf.ethz.ch +notmuch tag +ethz from:@ethz.ch or to:@ethz.ch + +notmuch tag +hsz-t from:nico-hsz-t@schottelius.org or to:nico-hsz-t@schottelius.org + +notmuch tag +agilentia from:@agilentia.ch or to:@agilentia.ch +notmuch tag +kunde tag:agilentia + + +notmuch tag +panter +system -inbox to:system@panter.ch +notmuch tag +panter +system -inbox to:system@panter.ch +notmuch tag +panter +system -inbox to:sumasy@panter.ch +notmuch tag +panter +system -inbox to:root@chatbyphonak.com +notmuch tag +panter +system -inbox from:root@zahnfee.denteo.ch +notmuch tag +panter +referenceimiage from:@referenceimage.com or to:@referenceimage.com or from:monit@ri-staging +notmuch tag +kunde +referenceimage -inbox from:rails@panter.ch to:referenceimage@ungleich.ch +notmuch tag +panter +monit -inbox from:monit@hev-forms-production or from:monit@hev-forms-staging or from:monit@recomy-staging +notmuch tag +panter +srg from:@srgssr.ch or to:@srgssr.ch +notmuch tag +panter +cron -inbox from:root@*.panter.ch or from:root@*.panter.biz or from:root@*.referenceimage.com +notmuch tag +panter +cron +recomy -inbox from:monit@recomy-production +notmuch tag +panter -inbox to:technik+jenkins@panter.ch +notmuch tag +panter +newrelic -inbox from:productupdate@newrelic.com to:nico@panter.ch +notmuch tag +panter from:@panter.ch or to:@panter.ch +notmuch tag +kunde tag:panter + +notmuch tag +kunde from:krishna@mailbox.org or to:krishna@mailbox.org + +notmuch tag +cron to:root@localhost + +notmuch tag +straumann from:@straumann.com + +notmuch tag +sts +kunde from:@stssensors.com or to:@stssensors.com +notmuch tag +petspremium +initos +kunde from:@petspremium.de or to:@petspremium.de +notmuch tag +petspremium +initos +kunde from:@initos.com or to:@initos.com + +notmuch tag +entwine +jira subject:Entwine-Jira +notmuch tag +entwine +jira +ticket +support -inbox from:servers@entwinemedia.com subject:SUPPORT- +notmuch tag +entwine +maintenance subject:"Uninett Weekly maintenance" +notmuch tag +entwine from:redmine@ungleich.ch subject:"entwine" +notmuch tag +entwine from:@entwinemedia.com or to:@entwinemedia.com +notmuch tag +entwine +backup -inbox from:root@backup.entwinemedia.com +notmuch tag +entwine +newrelic -inbox from:productupdate@newrelic.com to:nico@entwinemedia.com +notmuch tag +entwine +serverdensity -inbox from:@serverdensity.com or to:@serverdensity.com +notmuch tag +entwine +serverdensity -inbox from:"Server Density" and to:nico@entwinemedia.com +notmuch tag +entwine +newrelic -inbox from:noreply@newrelic.com and to:nico@entwinemedia.com +notmuch tag +entwine +basecamp from:notifications@basecamp.com and to:nico@entwinemedia.com +notmuch tag +entwine +basecamp from:notifications@entwine.basecamphq.com and to:nico@entwinemedia.com +notmuch tag +entwine +newrelic -inbox from:noreply@newrelic.com and to:operations@entwinemedia.com +notmuch tag +kunde tag:entwine + +notmuch tag +teralytics from:@teralytics.ch or to:@teralytics.ch +notmuch tag +teralytics from:@teralytics.net or to:@teralytics.net +notmuch tag +teralytics +jira +ticket from:jira@teralyticsag.atlassian.net +notmuch tag +teralytics from:redmine@ungleich.ch subject:"teralytics" +notmuch tag +teralytics +cron -inbox from:internal@teralytics.ch +notmuch tag +teralytics -inbox to:infrastructure@teralytics.ch from:nagios@ +notmuch tag +kunde tag:teralytics + +notmuch tag +voicerepublic from:@voicerepublic.com or to:@voicerepublic.com +notmuch tag +voicerepublic +system -inbox to:root@kluuu.com +notmuch tag +kunde tag:voicerepublic + +notmuch tag +vendor +esag +lenovo from:@esag-shop.ch +notmuch tag +vendor +post from:@post.ch +notmuch tag +vendor +sbb +verkehr to:nico-sbb.ch@schottelius.org +notmuch tag +vendor +postfinance +finanzen from:@postfinance.ch +notmuch tag +finanzen +steuer +zuerich from:nico-steuer-zh@schottelius.org or to:nico-steuer-zh@schottelius.org + +notmuch tag +vendor +telephoenix +voip +telefon from:telephoenix.ch +notmuch tag +vendor +axa-winterthur +versicherung +ungleich from:nicola.meier@axa-winterthur.ch or from:alexander.waesch@axa-winterthur.ch +notmuch tag +vendor +post +postbox to:nico-swisspostbox@schottelius.org +notmuch tag +vendor +ch-open from:@ch-open.ch +notmuch tag +vendor +dell from:@dell.com or to:@dell.com +notmuch tag +vendor +dalco from:@dalco.ch or to:@dalco.ch +notmuch tag +vendor +nexellent +rechenzentrum from:@nexellent.ch or to:@nexellent.ch or from:@rt-1.dmz.ch.nexellent.com +notmuch tag +vendor +init7 from:@init7.net or to:@init7.net +notmuch tag +vendor +acceleris from:@acceleris.ch +notmuch tag +vendor +partner +stepping-stone from:@stepping-stone.ch or to:@stepping-stone.ch +notmuch tag +vendor +buchhaltung +runmyaccounts from:@runmyaccounts.com or to:@runmyaccounts.com +notmuch tag +vendor +hardware +microspot from:@microspot.ch to:@microspot.ch +notmuch tag +vendor +dns +inwx from:@inwx.de or to:nico-inwxo@schotteli.us +notmuch tag +vendor +sumiswalder +versicherung from:@sumiswalder.ch +notmuch tag +vendor +digitec from:@digitec.ch +notmuch tag +vendor +fairphone to:nico-fairphone.com@schottelius.org +notmuch tag +partner +openclouddays from:matthias.guenter@mentor.ch +notmuch tag +vendor +bhphotovideo nico-bhphotovideo@schottelius.org +notmuch tag +vendor +ebookers to:nico-ebookers.ch@schottelius.org +notmuch tag +vendor +tbgs from:@tbgs.ch +notmuch tag +vendor +misco from:@misco.de +notmuch tag +vendor +hetzner from:@hetzner.de +notmuch tag +vendor +asus from:@asus.com or to:nico-asus@schottelius.org +notmuch tag +vendor +freecall24 to:freecall24.ch@ungleich.ch +notmuch tag +vendor +kuehlschrank from:@venova.ch + +notmuch tag +vendor +ungleich +odesk from:@odesk.com or to:nico-odesk.com@schottelius.org + +notmuch tag +vendor +auktion from:@ricardo.ch + + +notmuch tag +cron from:"Cron Daemon" + +notmuch tag +ccollect subject:"ccollect" +notmuch tag +cdi.st subject:cdi.st + +notmuch tag +ccc +schweiz +chaostreff -inbox to:chaostreffs@lists.ccc.de +notmuch tag +ccc +schweiz -inbox to:chaosliste@chaostreff.ch +notmuch tag +ccc +dresden +c3d2 -inbox to:c3d2@lists.c3d2.de +notmuch tag +ccc +schweiz +zuerich -inbox to:zuerich@chaostreff.ch or to:zuerich-announce@chaostreff.ch +notmuch tag +ccc from:telmich@schottelius.org or to:telmich@schottelius.org +notmuch tag +ccc +intern -inbox to:intern@lists.ccc.de or to:intern@ccc.de +notmuch tag +ccc +hannover +leitstelle511 -inbox to:511@hannover.ccc.de +notmuch tag +c3d2 +ccc +dresden -inbox to:nico-ccc-c3d2@schottelius.org + +notmuch tag +google to:nico-google.com@schottelius.org +notmuch tag +google to:terzoidterzoid@gmail.com +notmuch tag +google to:nico.schottelius@gmail.com +notmuch tag +twitter from:@twitter.com + +notmuch tag +foss +gallery +llgal -inbox to:llgal-users@gna.org +notmuch tag +foss +glusterfs -inbox to:gluster-users@gluster.org +notmuch tag +foss +fosdem +conference from:@fosdem.org or from:Kris.Buytaert@inuits.eu +notmuch tag +foss +archlinux +linux +pacman -inbox to:pacman-dev@archlinux.org +notmuch tag +foss +archlinux +linux +ticket from:bugs@archlinux.org +notmuch tag +foss +lugs +linux -inbox from:reminder@lugs.ch or to:linux@lugs.ch or to:lugs@lugs.ch +notmuch tag +foss +debian +linux -inbox to:community@lists.debian.ch +notmuch tag +foss +coda +filesystem +linux to:codalist@coda.cs.cmu.edu +notmuch tag +foss +puppet +configuration-management -inbox to:puppet-users@googlegroups.com +notmuch tag +foss +ssh -inbox to:openssh-unix-dev@mindrot.org +notmuch tag +foss +cdist to:cdist-owner@l.schottelius.org or to:cdist@l.schottelius.org or to:cdist@noreply.github.com +notmuch tag +foss +cdist +sourceforge -inbox from:noreply@code.cdist.p.re.sf.net +notmuch tag +foss +linux +kernel to:stable@vger.kernel.org or to:stable-commits@vger.kernel.org +notmuch tag +foss +linux +dash +shell -inbox to:dash@vger.kernel.org +notmuch tag +foss +filesystem +kernel -inbox to:codalist@coda.cs.cmu.edu +notmuch tag +foss +security +kernel -inbox to:owl-users@lists.openwall.com or owl-dev@lists.openwall.com or to:owl-council@lists.openwall.com +notmuch tag +foss +security -inbox to:password-store@lists.zx2c4.com +notmuch tag +foss +sourceforge -inbox to:users@lists.repoforge.org +notmuch tag +foss +github +vcs from:@github.com +notmuch tag +foss +python +gpg -inbox to:python-gnupg@googlegroups.com +notmuch tag +foss +nico -inbox to:commits@l.schottelius.org +notmuch tag +foss +llgal +gallery to:llgal-users@gna.org +notmuch tag +foss +hostap +linux +wireless -inbox to:hostap@lists.shmoo.com +notmuch tag +foss +monitoring -inbox to:assimilation@lists.community.tummy.com or to:assim-devel@lists.community.tummy.com + +notmuch tag +posix -inbox to:austin-group-l@opengroup.org +notmuch tag +net +swinog to:swinog@swinog.ch or to:swinog@lists.swinog.ch +notmuch tag +net +meetup to:nico-meetup.com@schottelius.org +notmuch tag +net +usenix to:nico-usenix.org@schottelius.org or from:@usenix.org +notmuch tag +net +kakoa from:@kakao.com +notmuch tag +net +idee.ch from:@idee.ch + + +notmuch tag +familie from:thilo@schottelius.net or from:thilo.schottelius@gmail.com +notmuch tag +sanghee from:verysanghee@gmail.com or to:nico-sanghee@schottelius.org or to:verysanghee@gmail.com +notmuch tag +sanghee from:Sarah.Baebler@gl.ch +notmuch tag +freunde +andrea.stenzel to:nico-fr-andrea@schottelius.org +notmuch tag +freunde +dani from:ammanda1@students.zhaw.ch or to:ammanda1@students.zhaw.ch +notmuch tag +freunde +simone to:simone@glinz.li or from:simone@glinz.li +notmuch tag +freunde +tomas.pospisek from:tpo@sourcepole.ch +notmuch tag +freunde +andi from:@v-net.ch or to:@v-net.ch +notmuch tag +freunde +jihye to:nico-jihye@schottelius.org or from:monpoussin89@hotmail.com +notmuch tag +freunde +steven from:aerueegg@bluewin.ch or from:steven-nico@armstrong.cc or from:steven.armstrong@inf.ethz.ch or to:nico-steven@schottelius.org or from:steven.armstrong@ungleich.ch +notmuch tag +freunde +simone.glinz from:simone@glinz.li +notmuch tag +freunde +ying from:yoongying_loop@hotmail.com +notmuch tag +freunde +alain from:munen@shogen-dojo.org or from:munen@voicerepublic.com or from:alain.lafon@dispatched.ch or from:munen@dispatched.ch +notmuch tag +freunde +tonnerre from:tonnerre@ngas.ch +notmuch tag +freunde +linda from:hartmannlinda@hotmail.com +notmuch tag +freunde +denis from:d.tehlar@gmx.net or to:d.tehlar@gmx.net +notmuch tag +freunde +xia from:xiaoxia.li@gmx.net or to:xiaoxia.li@gmx.net +notmuch tag +su from:subisous@gmail.com or from:s-joho@swissonline.ch or from:susan.joho@juliusbaer.com + + +notmuch tag +bildung +teaching +zhaw from:@zhaw.ch or to:@zhaw.ch + +notmuch tag +consul +foss -inbox to:consul-tool@googlegroups.com + +notmuch tag +jiu-jitsu to:nico-jcu@schottelius.org or to:nico-jiu@schottelius.org +notmuch tag +jiu-jitsu +rheinfelden from:"Oliver Gugel" or to:nico-jiu-rhf@schottelius.org +notmuch tag +jiu-jitsu to:nico-pjjcz@schottelius.org or from:Kfl@kapo.zh.ch or from:andy-san@bluewin.ch +notmuch tag +jiu-jitsu +bern from:alfredo.rauber@bluewin.ch +notmuch tag +jiu-jitsu +denisguelat from:clan.guelat@wanadoo.fr + +notmuch tag +sprache +korea to:nico-koreanclass101.com@schottelius.org + +notmuch tag +sport +hobby tag:jiu-jitsu + +notmuch tag +luchsingen from:huerzele@active.ch + +notmuch tag -inbox folder:postponed/ +notmuch tag +outgoing -inbox folder:outgoing/ +notmuch tag +outgoing -inbox folder:sent/ +notmuch tag +outgoing folder:firmen/ungleich/outgoing/ +notmuch tag +outgoing folder:firmen/local.ch/outgoing/ +notmuch tag +outgoing folder:firmen/ethz/outgoing/ + +# notmuch dump > ~/Maildir/notmuch-dump + +# Have alot and mutt-kz see the same messages in the inbox +#notmuch tag +killed tag:archive +#notmuch tag +archive tag:killed +# reconfigured alot to use archive, too diff --git a/tcpdump-command b/tcpdump-command new file mode 100644 index 0000000..21692f8 --- /dev/null +++ b/tcpdump-command @@ -0,0 +1,2 @@ +tcpdump -q -x port ftp or ftp-data | sed 's/..:..:..\..*//' + diff --git a/testenv b/testenv new file mode 100755 index 0000000..a173bc4 --- /dev/null +++ b/testenv @@ -0,0 +1,833 @@ +#!/usr/bin/perl -w +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 2000-2003 Peter Thoeny, peter@thoeny.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html +# +# DESCRIPTION: Test utility to see if CGI is running and enabled +# for the bin directory, and check a variety of TWiki, Perl and RCS +# setup. + +package TWiki; + +# Set library paths in @INC, at compile time +BEGIN { + # Try to use setlib.cfg, use default path if missing + if ( -r './setlib.cfg' ) { + require './setlib.cfg'; + } else { + unshift @INC, '../lib'; + } +} + +use vars qw( $useLocale ); + +# =========================== +# Read the configuration file at compile time in order to set locale +BEGIN { + do "TWiki.cfg"; # Includes OS detection + + # Do a dynamic 'use locale' for this script + if( $useLocale ) { + require locale; + import locale (); + } +} + + +# use strict; # Recommended for mod_perl, enable for Perl 5.6.1 only + # Doesn't work well here, due to 'do "TWiki.cfg"' +# use diagnostics; # Debug only + + +my $setlibAvail = -r './setlib.cfg'; + + +&main(); + + +sub checkBasicModules { + # Check whether basic CGI modules exist (some broken installations of + # Perl don't have this, even though they are standard modules), and warn user + my @basicMods = @_; + + my $modMissing = 0; + my $mod; + foreach $mod (@basicMods) { + eval "use $mod"; + if ($@) { + unless ($modMissing) { + print "Content-type: text/html\n\n"; + print "Perl Module(s) missing\n"; + print "\n"; + print "

    Perl Module(s) missing

    \n"; + } + $modMissing = 1; + print "

    Warning: "; + print "Essential module $mod not installed - please check your Perl\n"; + print "installation, including the setting of \@INC, and re-install Perl if necessary.

    \n"; + } + } + # If any critical modules missing, display @INC and give up + if ($modMissing) { + print "

    \@INC setting:
    "; + print join "
    \n", @INC; + print "

    \n"; + print "\n\n"; + exit; + } +} + + +sub main +{ + +my $perlverRequired = 5.00503; # Oldest supported version of Perl +my $perlverRequiredString = '5.005_03'; +my $perlverRecommended = '5.6.1'; +my $ActivePerlRecommendedBuild = 631; # Fixes PERL5SHELL bugs + +my $rcsverRequired = 5.7; + +my @basicMods = qw( CGI CGI::Carp ); # Required for testenv to work + +my @requiredMods = ( # Required for TWiki + @basicMods, + 'File::Copy', + ); + +# Required on non-Unix platforms (mainly Windows) +my @requiredModsNonUnix = ( + 'Digest::SHA1', # For register script + 'MIME::Base64', # For register script + 'Net::SMTP', # For registration emails and mailnotify + ); + +# Optional modules on all platforms +my @optionalMods = ( + 'Algorithm::Diff', # For RcsLite + 'MIME::Base64', # For outbound HTTP Authentication to proxies + 'POSIX', # For internationalisation (core module) + ); + + +open(STDERR,'>&STDOUT'); # redirect errors to browser +$| = 1; # no buffering - FIXME: mod_perl issue? + + +# Check for modules required by this script +&checkBasicModules( @basicMods ); + +# Load CGI modules (run-time, after checking they are accessible) +require CGI; +require CGI::Carp; +import CGI::Carp qw( fatalsToBrowser ); + +my $query = new CGI; + + +print "Content-type: text/html\n\n"; +print < +Test TWiki environment + +

    Test the environment for TWiki

    +Please read the TWikiInstallationNotes for more information on TWiki installation. +

    Environment variables:

    + +EOM +my $key; +for $key ( sort keys %ENV ) { + print "\n"; +} +print < +

    CGI Setup:

    +
    $key$ENV{$key}
    +EOM + + + +# Make %ENV safer for CGI (should reflect TWiki.pm) +my $originalPath = $ENV{'PATH'} || ''; +if( $safeEnvPath ) { + $ENV{'PATH'} = $safeEnvPath; +} +delete @ENV{ qw( IFS CDPATH ENV BASH_ENV ) }; + +# Get Perl version - output looks neater with new variable +my $perlvernum = $]; +my $perlver; +if (defined $^V) { + $perlver = $^V; # New in Perl 5.6.1, one byte per part + $perlver = ord(substr($perlver,0)) . "." . ord(substr($perlver,1)) + . "." . ord(substr($perlver,2)); +} else { + $perlver = $perlvernum +} + + + +# Set $detailedOS if not using later versions of TWiki.cfg for BeijingRelease +# - this code enables the latest testenv to be used with Dec 2001 and +# earlier releases. +if ( !defined $detailedOS ) { + require Config; + $detailedOS = $Config::Config{'osname'}; + # print "$detailedOS
    "; +} + +# Detect Perl flavour on Windows, and Cygwin Perl/RCS package versions +my $perltype; +my $cygwinRcsVerNum; +if ($detailedOS eq 'cygwin') { + $perltype = 'Cygwin'; # Cygwin Perl only + my ($pkg, $pkgName); + + # Get Cygwin perl's package version number + $pkgName = 'perl'; + $pkg = `/bin/cygcheck -c $pkgName | /bin/grep $pkgName 2>/dev/null`; + if ($?) { + $pkg = " [Can't identify package - cygcheck or grep not installed]"; + $perlver .= $pkg + } else { + $pkg = (split ' ', $pkg)[1]; # Package version + $perlver = $pkg; + } + + # Get Cygwin RCS's package version number + $pkgName = 'rcs'; + $pkg = `/bin/cygcheck -c $pkgName | /bin/grep $pkgName 2>/dev/null`; + if ($?) { + $pkg = " [Can't identify package - cygcheck or grep not installed]"; + $perlver .= $pkg + } else { + $pkg = (split ' ', $pkg)[1]; # Package version + $cygwinRcsVerNum = $pkg; + } +} elsif ($detailedOS =~ /win/i && $detailedOS !~ /darwin/i ) { + # Windows Perl - try ActivePerl-only function: returns number if + # successful, otherwise treated as a literal (bareword). + my $isActivePerl= eval 'Win32::BuildNumber !~ /Win32/'; + if( $isActivePerl ) { + $perltype = 'ActiveState'; + $perlver .= ", build " . Win32::BuildNumber(); + } else { + # Could be SiePerl or some other Win32 port of Perl + $perltype = 'SiePerl/Other Win32 Perl'; + } +} else { + $perltype = 'generic'; +} + +# Detect executable name suffix, e.g. .exe on Windows or '' on Unix +my $exeSuffix=''; +if ( $Config::Config{'_exe'}) { + $exeSuffix = $Config::Config{'_exe'}; +} + + +my $thePathInfo = $query->path_info(); +# my $theRemoteUser = $query->remote_user(); +my $theTopic = $query->param( 'topic' ); +my $theUrl = $query->url; + +# Detect whether mod_perl was loaded into Apache +my $LOAD_MOD_PERL = ( exists $ENV{'SERVER_SOFTWARE'} && + ( $ENV{'SERVER_SOFTWARE'} =~ /mod_perl/ )) && + "loaded" || "not loaded"; + +# Detect whether we are actually running under mod_perl +# - test for MOD_PERL alone, which is enough. +my $USE_MOD_PERL = ( exists $ENV{'MOD_PERL'} ) && "Used" || "Not used"; + + +# OS +print "\n"; + +# Perl version and type +print "\n"; +if ( $perlvernum < $perlverRequired ) { + print "\n"; +} + +# Perl @INC (lib path) +print "\n"; +print "\n"; + +# Add to list of required modules if non-Unix, or MacOS X (detected by +# Perl as 'Darwin') +if ( $detailedOS =~ /darwin/i or $OS ne 'UNIX' ) { + push @requiredMods, @requiredModsNonUnix; +} + + +# Turn off fatalsToBrowser while checking module loads, to avoid load errors in +# browser in some environments. +$CGI::Carp::WRAP = $CGI::Carp::WRAP = 0; # Avoid warnings... + +# Check that the TWiki.pm module can be found +print "\n"; +} else { + $twikiFound = 1; + my $mod_version = eval '$TWiki::wikiversion'; + $mod_version ||= 'unknown'; + print "OK, $mod.pm found (TWiki version: $mod_version)"; + print "\n"; +} +print "\n"; + +# Do locale settings if TWiki.pm was found +my $showLocales = 0; +if ($twikiFound) { + TWiki::setupLocale(); + $showLocales = 1; +} + + +# Check that each of the required Perl modules can be loaded, and +# print its version number. +print "\n"; + } else { + my $mod_version; + $mod_version = ${"${mod}::VERSION"}; + print "$mod ($mod_version)"; + print "\n"; + } + print "\n"; +} + +# Check that each of the optional Perl modules can be loaded, and +# print its version number. +print "\n"; + } else { + my $mod_version = $ {"$ {mod}::VERSION"}; + print "$mod ($mod_version)"; + print "\n"; + } + print "\n"; +} + +# All module checks done, OK to enable fatalsToBrowser +import CGI::Carp qw( fatalsToBrowser ); + + +print "\n"; +print "\n"; +print "\n"; + + +# Get userid (ActiveState or other Perl), should work on all Perl systems +my $usr = lc( getlogin || getpwuid($<) ); +# +# Get group info +my $grp = ""; +if( $OS eq 'UNIX' or ($OS eq 'WINDOWS' and $perltype eq 'Cygwin' ) ) { + foreach( split( " ", $( ) ) { # Unix/Cygwin Perl + my $onegrp = getgrgid( $_ ); + $grp .= " " . lc($onegrp); + } +} else { # ActiveState or other Win32 Perl + # Try to use Cygwin's 'id' command - may be on the path, since Cygwin + # is probably installed to supply ls, egrep, etc - if it isn't, give up. + # Run command without stderr output, to avoid CGI giving error. + # Get names of primary and other groups. + $grp = lc(qx(sh -c '( id -un ; id -gn) 2>/dev/null' 2>nul )); + if ($?) { + $grp = "[Can't identify groups - no Cygwin 'id' or 'sh' command on path]"; + } +} + +print "\n"; +print "\n"; +if( $usr ne "nobody" ) { + print "\n"; +} +print "
    Operating system:" . ucfirst(lc($OS)); +print " ($detailedOS)" if ( $detailedOS ne '' ); +print "
    Perl version:$perlver"; +print " ($perltype)" if $perltype ne 'generic'; +print "
    Warning: "; + print "This version of Perl is too old for use with TWiki - upgrade to at least Perl $perlverRequiredString\n"; + print "and preferably to Perl $perlverRecommended.\n"; + print "
    \@INC library path:" . + ( join "
    \n", @INC ) . + "
    Note:\n"; +print "This is the Perl library path, used to load TWiki modules, "; +print "third-party modules used by some plugins, and Perl built-in modules."; +print "
    TWiki module in \@INC path:"; +$mod = 'TWiki'; +eval "use $mod"; +print "
    \n"; +my $twikiFound = 0; +if ($@) { + print "Warning: "; + print "'$mod.pm' not found - check path to twiki/lib"; + print " and edit twiki/bin/setlib.cfg if necessary" if $setlibAvail; + print ".\n"; + print "
    Required Perl modules:"; +foreach $mod (@requiredMods) { + eval "use $mod"; + print "
    \n"; + if ($@) { + print "Warning: "; + print "'$mod' not installed - check TWiki documentation to see if this is required.\n"; + print "
    Optional Perl modules:"; +foreach $mod (@optionalMods) { + eval "use $mod"; + print "
    \n"; + if ($@) { + print "Note: "; + print "Optional module '$mod' not installed - check TWiki documentation to see if your configuration needs this module.\n"; + print "
    PATH_INFO:$thePathInfo
    Note:\n"; +print "For a URL such as $theUrl/foo/bar, \n"; +print "the correct PATH_INFO is /foo/bar, without any prefixed path \n"; +print "components. Test this now \n"; +print "- particularly if you are using Apache or IIS, or are using a web hosting provider.\n"; +print "The page resulting from the test link should have a PATH_INFO of /foo/bar.\n"; +print "
    mod_perl:$USE_MOD_PERL for this script (mod_perl $LOAD_MOD_PERL)
    User:$usr
    Note: "; +print "Your CGI scripts are executing as this user."; +print "
    Warning: "; + print "Since your CGI script is not running as user nobody, "; + print "you need to change the locks in the *,v RCS files of the TWiki "; + print "distribution from nobody to $usr.\n"; + print "Otherwise, changes to topics will not be logged by RCS.\n"; + print "
    Group(s):"; +print "$grp"; +print "
    \n"; + + + +print "

    Test of TWiki.cfg Configuration:

    \n"; + +# TWiki.cfg read earlier + +print "\n"; + +print "\n"; +my $junk1 = $wikiHomeUrl; # Avoid warning +print "\n"; + +print "\n"; +print "\n"; +my $val = $ENV{"HTTP_HOST"} || ''; +if( $defaultUrlHost !~ /$val/ ) { + print "\n"; +} + +print "\n"; +print "\n"; +$val = $ENV{"REQUEST_URI"} || ''; +if( $val !~ /^$scriptUrlPath/ ) { + print "\n"; +} + +print "\n"; +print "\n"; + +print "\n"; +print "\n"; +if( ! ( -e "$pubDir/wikiHome.gif" ) ) { + print "\n"; +} elsif( ! testFileIsWritable( "$pubDir/testenv.test" ) ) { + # directory is not writable + print "\n"; +} + +print "\n"; +print "\n"; +if( ! ( -e "$templateDir/view.tmpl" ) ) { + print "\n"; +} elsif( testFileIsWritable( "$templateDir/testenv.test" ) ) { + # directory is writable + print "\n"; +} + +print "\n"; +print "\n"; +if( ! ( -e "$dataDir" ) ) { + print "\n"; +} elsif( ! testFileIsWritable( "$dataDir/testenv.test" ) ) { + # directory is not writable + print "\n"; +} + +# Check 'sendmail' +$val = $mailProgram; +$val =~ s/([^\s]*).*/$1/g; +# Don't warn on Windows, as Net::SMTP is normally used +if( $OS ne 'WINDOWS' && ! ( -e $val ) ) { + print "\n"; +} + +print "\n"; +print "\n"; + + +# Check RCS directory +print "\n"; +print "\n"; + +# Check RCS +if( ! ( -e "$rcsDir/ci$exeSuffix" ) ) { + # RCS not installed + print "\n"; + +} else { + # Check RCS version + my $rcsVerNum = `$rcsDir/ci$exeSuffix -V`; # May fail due to diff or DLL not on PATH + $rcsVerNum = (split(/\s+/, $rcsVerNum))[2] || ""; # Recover from unset variable + + print "\n"; + print "\n"; + + if( $rcsVerNum && $rcsVerNum < $rcsverRequired ) { + # RCS too old + print "\n"; + } +} + +# Check 'ls' +print "\n"; +print "\n"; +$val = $lsCmd . $exeSuffix; +$val =~ s/([^\s]*).*/$1/go; +if( ! ( -e $val ) ) { + print "\n"; +} + +# Check 'grep' +print "\n"; +print "\n"; +$val = $egrepCmd . $exeSuffix; +$val =~ s/([^\s]*).*/$1/go; +if( ! ( -e $val ) ) { + print "\n"; +} + +# Check 'fgrep' +print "\n"; +print "\n"; +$val = $fgrepCmd . $exeSuffix; +$val =~ s/([^\s]*).*/$1/go; +if( ! ( -e $val ) ) { + print "\n"; +} + +print "\n"; +print "\n"; +} +print "\n"; + + +# Generate a separate table about specific environment variables +print "
    \$wikiHomeUrl:$wikiHomeUrl
    Note: "; +print "This is the link of the TWiki icon in the upper left corner."; +print "
    \$defaultUrlHost:$defaultUrlHost
    Note: "; +print "This must be the protocol and host part (with optional port number) of "; +print "the TWiki URL."; +print "
    Warning: "; + print "This does not match HTTP_HOST"; + print "
    \$scriptUrlPath:$scriptUrlPath
    Note: "; +print "This must be the URI of the TWiki cgi-bin directory."; +print "
    Warning: "; + print "This does not match REQUEST_URI"; + print "
    \$pubUrlPath:$pubUrlPath
    Note: "; +print "This must be the URI of the public directory."; +print "This is not set correctly if the "; +print "$pubUrlPath/wikiHome.gif image below is broken:
    "; +print ""; +print "
    \$pubDir:$pubDir
    Note: "; +print "This is the public directory, as seen from the file system. "; +print "It must correspond to \$pubUrlPath."; +print "
    Error: "; + print "Directory does not exist or file wikiHome.gif does not exist in this directory."; + print "
    Error: "; + print "This directory is not writable by $usr user."; + print "
    \$templateDir:$templateDir
    Note: "; +print "This is the TWiki template directory, as seen from the file system. "; +print "
    Error: "; + print "Directory does not exist or file view.tmpl does not exist in this directory."; + print "
    Warning: "; + print "Security issue: This directory should not be writable by the $usr user."; + print "
    \$dataDir:$dataDir
    Note: "; +print "This is the data directory where TWiki stores all topics."; +print "
    Error: "; + print "Directory does not exist."; + print "
    Error: "; + print "This directory must be writable by the $usr user."; + print "
    Warning: "; + print "Mail program $val not found. Check the path."; + print "
    \$mailProgram:$mailProgram
    Note: "; +if( $OS ne 'WINDOWS' ) { + print "This is the mail program TWiki uses to send mail."; +} else { + print "This is not typically used on Windows - the Perl Net::SMTP module is used instead."; +} +print "
    \$rcsDir:$rcsDir
    Note: "; +print "This is the directory where RCS is located."; +print "
    Warning: "; + print "RCS program $rcsDir/ci$exeSuffix not found. Check \$rcsDir setting in TWiki.cfg. "; + print "TWiki will not work (unless you are "; + print "using TWiki's built-in RCS implementation, RcsLite)."; + print "
    RCS Version:$rcsVerNum"; + print "  (Cygwin package rcs-$cygwinRcsVerNum)" if defined($cygwinRcsVerNum); + print "
    Note: "; + print "This is the version of RCS which will be used."; + print "
    Warning: "; + print "RCS program is too old, upgrade to version $rcsverRequired or higher."; + print "
    \$lsCmd:$lsCmd
    Note: "; +print "This is the file list program TWiki uses to list topics."; +print "
    Warning: "; + print "List program $val not found. Check the path."; + print "
    \$egrepCmd:$egrepCmd
    Note: "; +print "This is a program TWiki uses for search."; +print "
    Warning: "; + print "Search program $val not found. Check the path."; + print "
    \$fgrepCmd:$fgrepCmd
    Note: "; +print "This is a program TWiki uses for search."; +print "
    Warning: "; + print "Search program $val not found. Check the path."; + print "
    \$safeEnvPath:$safeEnvPath
    Note: "; +print "This is used to initialise the PATH variable, and is used to run the\n"; +print "'diff' program used by RCS, as well as to run shell programs such as\n"; +if( $OS eq 'WINDOWS' ) { + print "cmd.exe or Cygwin's 'bash'.\n"; + print "

    \n"; + if( $perltype eq 'Cygwin' ) { + print "Since you are using Cygwin Perl, 'bash' will be used without any special setup.\n"; + } elsif( $perltype eq 'ActiveState' ) { + print "To use 'bash' with ActiveState Perl, see the PERL5SHELL section below\n"; + print "- this is recommended\n"; + print "if Cygwin is installed.\n"; + } + print "

    \n"; +} else { + print "Bourne shell or 'bash'."; +} +if( $safeEnvPath eq '' ) { + print "
    Warning: \n"; + print "Security issue: \$safeEnvPath set to empty string. Check TWiki.cfg.\n"; + print "
    \n"; +print "

    Path and Shell Environment

    \n"; +print "\n"; + +# PATH check on all platforms + +print "\n"; +print "\n"; + +my $currentPath = $ENV{'PATH'} || ''; # As re-set earlier in this routine +print "\n"; +print "\n"; + + +# Check that diff is found in PATH and is GNU diff - used by various RCS +# commands, including ci. Since Windows makes it hard to capture stderr +# ('2>&1' works only on Win2000 or higher), and Windows will usually have +# GNU diff in any case, we only check for diff on Unix/Linux and Cygwin. +if( $OS eq 'UNIX' or ($OS eq 'WINDOWS' and $perltype eq 'Cygwin' ) ) { + print ""; + my $diffOut = `diff 2>&1` || ""; + my $notFound = ( $? == -1 ); + if( $notFound ) { + print ""; + } else { + # diff found, check that it's GNU - using '-v' should cause error if not GNU, + # since there are no arguments (tested with Solaris diff). + $diffOut = `diff -v 2>&1` || ""; + if( $diffOut !~ /\bGNU\b/ ) { + print ""; + } else { + print ""; + } + } + + # Final table row applies to all cases + print ""; +} + +# PERL5SHELL check for non-Cygwin Perl on Windows only +if( $OS eq 'WINDOWS' && $perltype ne 'Cygwin' ) { + + # ActiveState or SiePerl/other + my $perl5shell = $ENV{'PERL5SHELL'} || ''; + print "\n"; + print "\n"; + print "\n"; +} + +# Generate a separate table for locale setup +if ( $showLocales ) { # Only if TWiki.pm found + print "
    Original PATH:$originalPath
    Note: "; +print "This is the PATH value passed in from the web server to this script - it is reset by TWiki scripts to the PATH below, and is provided here for comparison purposes only.\n"; +print "
    Current PATH:$currentPath
    Note: "; +print "This is the actual PATH setting that will be used by Perl to run programs.\n"; +print "It is normally identical to \$safeEnvPath, unless that variable is empty.\n"; +print "
    diff:Warning: "; + print "'diff' program was not found on the current PATH.\n"; + print "
    Warning: "; + print "'diff' program was found on the PATH but is not GNU diff - this may cause problems.\n"; + print "
    GNU diff was found on the PATH - this is the recommended diff tool."; + print "
    Note:\n"; + print "The 'diff' command is used by RCS to compare files.\n"; + print "
    PERL5SHELL:$perl5shell
    Note: "; + print "This environment variable is used by ActiveState and other Win32 Perls to run \n"; + print "commands from TWiki scripts - it determines which shell\n"; + print "program is used to run commands that use 'pipes'. Examples of shell programs are \n"; + print "cmd.exe, command.com (aka 'DOS Prompt'), and Cygwin's 'bash'\n"; + print "(recommended if Cygwin is installed).\n"; + print "

    \n"; + print "To use 'bash' with ActiveState or other Win32 Perls, you should set the \n"; + print "PERL5SHELL environment variable to something like c:/YOURCYGWINDIR/bin/bash.exe -c.\n"; + print "This should be set in the System Environment, and ideally set \n"; + print "directly in the web server (e.g. using the Apache SetEnv \n"; + print "command, followed by an Apache restart). Once this is done, you should re-run testenv\n"; + print "to check that PERL5SHELL is set properly.\n"; + if ($perltype eq 'ActiveState' and + Win32::BuildNumber() < $ActivePerlRecommendedBuild ) { + print "

    \n"; + print "

    Warning: "; + print "ActiveState Perl must be upgraded to build $ActivePerlRecommendedBuild if you are going to use PERL5SHELL, which was broken in earlier builds."; + } + print "

    \n"; + print "
    \n"; + print "

    Internationalisation and Locale Setup

    \n"; + print "\n"; + + # $useLocale + print "\n"; + print "\n"; + + if( $OS eq 'WINDOWS' ) { + # Warn re known broken locale setup + print "\n"; + } + + # $siteLocale + print "\n"; + print "\n"; + + # Try to see if required locale was correctly set earlier + my $currentLocale = setlocale(&LC_CTYPE); + if ( $currentLocale ne $siteLocale ) { + print "\n"; + } + + # Locales are off, or using pre-5.6 Perl, so have to explicitly list the accented characters + my $perlVerPreferred = 5.006; # 5.6 or higher has [:lower:] etc + if ( not $useLocale or $perlvernum < $perlVerPreferred ) { + + # If using Perl 5.005_03 or lower, generate upper and lower case character + # classes to avoid doing this at run-time in TWiki. + my $forUpperNat; + my $forLowerNat; + if ( $perlvernum < $perlVerPreferred ) { + + # Get strings with the non-ASCII alphabetic characters only, upper and lower case + $forUpperNat = join '', grep { lc($_) ne $_ and m/[^A-Z]/ } map { chr($_) } 1..255; + $forLowerNat = join '', grep { uc($_) ne $_ and m/[^a-z]/ } map { chr($_) } 1..255; + } + + # $upperNational + print "\n"; + print "\n"; + + # $lowerNational + print "\n"; + print "\n"; + } +} + +print "
    \$useLocale:$useLocale
    Note: "; + print "This TWiki.cfg setting controls whether locales are used by Perl and 'grep'.\n"; + print "
    Warning: "; + print "Using Perl on Windows, which may have missing or incorrect locales (in Cygwin or ActiveState Perl, respectively)\n"; + print "- use of \$useLocale = 0 is recommended unless you know your version of Perl has working locale support.\n"; + print "
    \$siteLocale:$siteLocale
    Note: "; + print "This TWiki.cfg parameter sets the site-wide locale - for\n"; + print "example, de_AT.ISO-8859-1 where 'de' is the language code, 'AT' the country code and 'ISO-8859-1' is the character set. Use the locale -a command on your system to determine available locales.\n"; + print "
    Warning: "; + print "Unable to set locale to $siteLocale, actual locale is $currentLocale\n"; + print "- please test your locale settings.\n"; + print "
    \$upperNational:$upperNational
    Note: "; + print "This TWiki.cfg parameter is used when \$useLocale is 0, to work around missing or non-working locales.\n"; + print "It is also used with Perl 5.005 for efficiency reasons - upgrading to Perl 5.6.1 with working locales is recommended, and removes the need for this. \n"; + print "If required, this parameter should be set to the upper case accented characters you require in your locale.\n"; + if ( $forUpperNat ) { + print "

    The following upper case accented characters have been found in this locale and should be considered for use in this parameter: $forUpperNat

    \n"; + } + print "
    \$lowerNational:$lowerNational
    Note: "; + print "This TWiki.cfg parameter is used whenever \$upperNational is used.\n"; + print "This parameter should be set to the lower case accented characters you require in your locale.\n"; + if ( $forLowerNat ) { + print "

    The following lower case accented characters have been found in this locale and should be considered for use in this parameter: $forLowerNat

    \n"; + } + print "
    \n"; + +print < + + +EOM +exit; + +} + +# ========================= +sub testFileIsWritable +{ + my( $name ) = @_; + my $txt1 = "test 1 2 3"; + deleteTestFile( $name ); + writeTestFile( $name, $txt1 ); + my $txt2 = readTestFile( $name ); + deleteTestFile( $name ); + my $identical = ( $txt2 eq $txt1 ); + return $identical; +} + +# ========================= +sub readTestFile +{ + my( $name ) = @_; + my $data = ""; + undef $/; # set to read to EOF + open( IN_FILE, "<$name" ) || return ""; + $data = ; + $/ = "\n"; + close( IN_FILE ); + return $data; +} + +# ========================= +sub writeTestFile +{ + my( $name, $text ) = @_; + if( open( FILE, ">$name" ) ) { + print FILE $text; + close( FILE); + } +} + +# ========================= +sub deleteTestFile +{ + my( $name ) = @_; + if( -e $name ) { + unlink $name; + } +} + diff --git a/testscript b/testscript new file mode 100644 index 0000000..ef88a3d --- /dev/null +++ b/testscript @@ -0,0 +1,22 @@ +#!/bin/sh + +echo "Starte" + +export myvar="xxxxxxxxxx" +echo $myvar + +bla() +{ + echo $myvar +myvar="micht hallo" +} + +alles() +{ + +myvar="asdsadasdasda" + echo $myvar + bla + echo $myvar + set +} diff --git a/textbased b/textbased new file mode 100644 index 0000000..55baeab --- /dev/null +++ b/textbased @@ -0,0 +1,2 @@ +~/bin/route home +ssh ozean diff --git a/textmails b/textmails new file mode 100644 index 0000000..1332499 --- /dev/null +++ b/textmails @@ -0,0 +1,6 @@ +~/bin/route home +ssh ozean -lroot ". onlinegehen" +su -l nico -c mutt +ssh ozean -lroot ". offlinegehen" +read -p "Shutdown ? (y/n)" yes +case "$yes" in y|Y|j|J) shutdown -h now ;; esac diff --git a/to_eiche b/to_eiche new file mode 100644 index 0000000..83399fa --- /dev/null +++ b/to_eiche @@ -0,0 +1,20 @@ + +# fstab + +cat /etc/fstab | sed 's,^/dev/discs/disc0/part3,#/dev/discs/disc0/part3,' > \ +/tmp/fstab +cat /tmp/fstab | sed 's,^/dev/discs/disc0/part1,#/dev/discs/disc0/part1,' > \ +/etc/fstab +cat /etc/fstab | sed 's,^\(/dev/root.*\)ext3,\1reiserfs,' > \ +/tmp/fstab +mv /tmp/fstab /etc/fstab + +# X + +cat /etc/X11/XF86Config | sed 's/\(Driver.*\)"ati"/\1"nv"/' > /tmp/xf86conf +cat /tmp/xf86conf | sed 's,\(Option.*"Protocol".*\)"ps/2",\1"MouseMan",' > \ +/etc/X11/XF86Config +cat /etc/X11/XF86Config | sed 's,\(Option.*"Device".*\)"/dev/misc/psaux",\1"/dev/tts/0",' > /tmp/xf86conf +mv /tmp/xf86conf /etc/X11/XF86Config + + diff --git a/to_flapp b/to_flapp new file mode 100644 index 0000000..d39c99b --- /dev/null +++ b/to_flapp @@ -0,0 +1,20 @@ + +# fstab + +cat /etc/fstab | sed 's,^#/dev/discs/disc0/part3,/dev/discs/disc0/part3,' > \ +/tmp/fstab +cat /tmp/fstab | sed 's,^#/dev/discs/disc0/part1,/dev/discs/disc0/part1,' > \ +/etc/fstab +cat /etc/fstab | sed 's,^\(/dev/root.*\)reiserfs,\1ext3,' > \ +/tmp/fstab +mv /tmp/fstab /etc/fstab + +# X + +cat /etc/X11/XF86Config | sed 's/\(Driver.*\)"nv"/\1"ati"/' > /tmp/xf86conf +cat /tmp/xf86conf | sed 's,\(Option.*"Protocol".*\)"MouseMan",\1"ps/2",' > \ +/etc/X11/XF86Config +cat /etc/X11/XF86Config | sed 's,\(Option.*"Device".*\)"/dev/tts/0",\1"/dev/misc/psaux",' > /tmp/xf86conf +mv /tmp/xf86conf /etc/X11/XF86Config + + diff --git a/torrent_handler/alle_screens.sh b/torrent_handler/alle_screens.sh new file mode 100755 index 0000000..e8f2c0a --- /dev/null +++ b/torrent_handler/alle_screens.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +for screen in $(screen -ls | awk '/Detached/ { print $1 }'); do + echo screen -Ux $screen; + screen -Ux $screen; +done diff --git a/torrent_handler/downloader.sh b/torrent_handler/downloader.sh new file mode 100755 index 0000000..9e2cf20 --- /dev/null +++ b/torrent_handler/downloader.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +torrent="$1" +logfile="$2" +echo "Logging to $logfile" + +#btdownloadheadless --max_upload_rate 1 "$torrent" > "$logfile" 2>&1 +btdownloadheadless --display_interval 10 --max_upload_rate 1 "$torrent" 2>&1 | tee "$logfile" diff --git a/torrent_handler/find_succeeded.sh b/torrent_handler/find_succeeded.sh new file mode 100755 index 0000000..91cdffa --- /dev/null +++ b/torrent_handler/find_succeeded.sh @@ -0,0 +1,27 @@ +#!/bin/sh +# Nico Schottelius +# find succussfully downloaded torrents + +TOPABS=$(cd $(dirname $0); pwd -P) +TORDIR="$TOPABS/torrents" +LOGDIR="$TOPABS/logs" +OUTDIR="$TOPABS/out" +SAVEDIR="$TOPABS/fertig" +SAVETOR="$SAVEDIR/torrents" +SEARCHTERM='time left: Download Succeeded!' +TESTLINES="20" + +# place downloads into current diretory/out +cd "$LOGDIR" + +#for torrent in ${TORDIR}/*; do +for log in *; do + tail -n${TESTLINES} "$log" | grep -q "$SEARCHTERM" >/dev/null + if [ "$?" -eq 0 ]; then + echo "$log" finished. + file=$(tail -n${TESTLINES} "$log" | awk -F: '/^download to:/ { print $2 }' | tail -n1 | sed 's;^ */;/;') + mv "${file}" "${SAVEDIR}" + mv "${TORDIR}/${log}" "${SAVETOR}" + rm "$log" + fi +done diff --git a/torrent_handler/searchterm b/torrent_handler/searchterm new file mode 100644 index 0000000..ef89517 --- /dev/null +++ b/torrent_handler/searchterm @@ -0,0 +1 @@ +time left: Download Succeeded! diff --git a/torrent_handler/show_log_status.sh b/torrent_handler/show_log_status.sh new file mode 100755 index 0000000..830c843 --- /dev/null +++ b/torrent_handler/show_log_status.sh @@ -0,0 +1,5 @@ +for file in logs/*; + do + echo -n "${file}: "; + tail -n20 "$file" | grep "percent done:" | tail -n1; +done diff --git a/torrent_handler/start.sh b/torrent_handler/start.sh new file mode 100755 index 0000000..af870bf --- /dev/null +++ b/torrent_handler/start.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +#set -x + + +TOPABS=$(cd $(dirname $0); pwd -P) +TORDIR="$TOPABS/torrents" +LOGDIR="$TOPABS/logs" +OUTDIR="$TOPABS/out" +DNLOADR="$TOPABS/downloader.sh" + + +rm -f "${LOGDIR}/"* +# place downloads into current diretory/out +cd "$OUTDIR" + +for torrent in ${TORDIR}/*; do + logfile="$LOGDIR/$(basename "$torrent")" + #echo screen -d -m btdownloadcurses --max_upload_rate 1 "$torrent" G "$logfile" + #screen -d -m btdownloadheadless --max_upload_rate 1 "$torrent" > "$logfile" + screen -d -m "$DNLOADR" "$torrent" "$logfile" +done diff --git a/torrent_handler/stop.sh b/torrent_handler/stop.sh new file mode 100755 index 0000000..d5c9242 --- /dev/null +++ b/torrent_handler/stop.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +#PIDS=$(ps axuwww | awk '/\/usr\/bin\/btdownloadcurses/ { print $2 }') +PIDS=$(ps axuwww | awk '/\/usr\/bin\/btdownloadheadless/ { print $2 }') + +kill -TERM $PIDS +sleep 10 +kill -KILL $PIDS 2>/dev/null diff --git a/torrent_nach_hause b/torrent_nach_hause new file mode 100755 index 0000000..f2299f4 --- /dev/null +++ b/torrent_nach_hause @@ -0,0 +1,2 @@ +#!/bin/sh +scp *torrent zuhause.schottelius.org:torrent/t/ && rm *torrent diff --git a/traffic_view b/traffic_view new file mode 100755 index 0000000..d978578 --- /dev/null +++ b/traffic_view @@ -0,0 +1,2 @@ +#tcpdump -i ppp0 port ! ftp and port ! ftp-data and port ! ssh and port ! ircd $@ +tcpdump -i ppp0 port ! ssh and port ! ircd $@ diff --git a/ttl-increment b/ttl-increment new file mode 100755 index 0000000..c1547f1 --- /dev/null +++ b/ttl-increment @@ -0,0 +1,4 @@ +#!/bin/sh + +# Increase the ttl to avoid problems with braindead ISPs +iptables -t mangle -A POSTROUTING -o wlp3s0 -j TTL --ttl-inc 1 diff --git a/tune-mouse b/tune-mouse index 510359e..9749460 100755 --- a/tune-mouse +++ b/tune-mouse @@ -10,11 +10,12 @@ #synclient VertScrollDelta=-111 #synclient HorizScrollDelta=-111 -## # mouse speed - # XPS 13 # xinput set-prop "DLL0704:01 06CB:76AE Touchpad" "libinput Natural Scrolling Enabled" 1 # lenovo x1 carbon 2016 -xinput set-prop "SynPS/2 Synaptics TouchPad" "libinput Natural Scrolling Enabled" 1 -xinput set-prop "SynPS/2 Synaptics TouchPad" "libinput Accel Speed" -0.5 +xinput set-prop "SynPS/2 Synaptics TouchPad" "libinput Natural Scrolling Enabled" 1 +# xinput set-prop "SynPS/2 Synaptics TouchPad" "libinput Accel Speed" -0.5 + +# Dell Latitude 5285 +#xinput set-prop "Alps Alps Touchpad Touchpad" "libinput Natural Scrolling Enabled" 1 diff --git a/txt2pdf b/txt2pdf new file mode 100755 index 0000000..134d8e0 --- /dev/null +++ b/txt2pdf @@ -0,0 +1,13 @@ +#!/bin/sh + +filename=$1; shift +outfilename=${filename%.txt}.pdf + +if [ $# -eq 1 ]; then + title=$1; shift + set -- -b "$title" +else + set -- -B +fi + +iconv -f utf8 -t iso8859-1 < "$filename" | enscript -o - "$@" | ps2pdf - "$outfilename" diff --git a/ungleichconfig b/ungleichconfig index 1f09361..022e150 100755 --- a/ungleichconfig +++ b/ungleichconfig @@ -1,14 +1,14 @@ #!/bin/sh +# Nico, some years ago if [ $# -lt 1 ]; then - echo "$0 host-to-configure" + echo "$0 host(s)-to-configure" exit 1 fi -host=$1 -ssh -A ungleich@control.ungleich.ch " + +ssh -A ungleich@control.place5.ungleich.ch " cd ~/.cdist - git pull - git submodule update --init; " '~/cdist/bin/cdist config -vp' "$@" - + git pull -v + git submodule update --init; " '~/cdist/bin/cdist config -vvp' "$@" diff --git a/until-event b/until-event new file mode 100755 index 0000000..0bb81ee --- /dev/null +++ b/until-event @@ -0,0 +1,18 @@ +#!/bin/sh + +event="Historic event" +arrival="2014-7-14" +arrival="2014-8-20" +arrival="2014-12-08" +arrival="2014-11-29" +arrival="2016-01-25" +arrival="2016-08-10"; event="First exam" +arrival="2016-08-23"; event="FMFP exam" +arrival="2017-01-24"; event="Algolabs exam" +arrival="2017-01-30"; event="Algolabs exam 2" +arrival="2017-02-07"; event="syssec" +arrival="2017-08-21"; event="cil" + +export arrival event + +python3 -c 'import os; import datetime; day=datetime.datetime.strptime(os.environ["arrival"], "%Y-%m-%d"); delta = day - datetime.datetime.now(); print("%s is %sd away" % (os.environ["event"], delta.days + 1))' diff --git a/update-git+cogito.sh b/update-git+cogito.sh new file mode 100755 index 0000000..a83e70a --- /dev/null +++ b/update-git+cogito.sh @@ -0,0 +1,86 @@ +#!/bin/sh +# Nico Schottelius +# Date: Mit Nov 9 12:57:04 CET 2005 +# Last Modified: Thu Nov 10 12:53:00 CET 2005 +# +# Install latest git and cogito to $INSTALL_PREFIX/$name and +# link the binaries to $BINDIR +# Needs git and cogito to work! +# And: +# - libexpat-dev +# - libcurl3-dev +# - libssl-dev +# - libz-dev + + +# +# Configuration +# +BUILDDIR=${BUILDDIR:-/home/user/nico/build} +INSTALL_PREFIX=${INSTALL_PREFIX:-/usr/packages} +BINDIR=${BINDIR:-/usr/local/bin} +MAKE=${MAKE:-make} + + +# +# No configuration needed below here +# + +BASE_GET=http://www.kernel.org/pub/scm/ +PROJECTS="git cogito" +# urls for initial cloning +git_url=http://www.kernel.org/pub/software/scm/git/ +cogito_url=http://www.kernel.org/pub/software/scm/cogito/ + +error_in() +{ + echo "[failed] $1" + echo "Exiting now." + exit 1 +} + + +for project in $PROJECTS; do + echo "Working on $project (in $BUILDDIR/$project) ... " + + + # Test for existence: if git or cogito is missing, install it from + # the current archive + which $project > /dev/null + + if [ $? -ne 0 ]; then + echo "$project not found, installing from archive" + + eval base_url=\$${project}_url + get_url=$(lynx -dump "$base_url" | awk "/$project-([0-9]\.)*tar.bz2\$/ { print \$2 }" | sort -n | tail -n 1) + + echo "Retrieving $project from $get_url" + fi + + if [ ! -d "$BUILDDIR/$project" ]; then + echo "Cloning $project" + cg-clone "${BASE_GET}${project}/${project}.git" "$BUILDDIR/$project" + else + echo "Updating $project from \"origin\"" + cd "$BUILDDIR/$project" || error_in "$BUILDDIR/$project" + cg-update origin + fi + + if [ $? -ne 0 ]; then + echo "Pull or clone failed, ABORTING." + exit 23 + fi + + cd "$BUILDDIR/$project" + version=$(cg-object-id) + echo "Installing $project (Version: $version)" + DDIR=$INSTALL_PREFIX/$project-$version + $MAKE clean || error_in "Cleaning $project" + $MAKE "prefix=$DDIR" all || error_in "Building $project" + $MAKE "prefix=$DDIR" install || error_in "Installing $project" + + echo "Linking files to $BINDIR ..." + for file in "$DDIR/bin/"*; do + ln -sf $file "$BINDIR" || error_in "Linking $file" + done +done diff --git a/update-notify/new-packages.debian b/update-notify/new-packages.debian new file mode 100755 index 0000000..6948a8e --- /dev/null +++ b/update-notify/new-packages.debian @@ -0,0 +1,5 @@ +#!/bin/sh +# Nico Schottelius +# usable as cron script, to show which packages should be updated + +apt-get update >/dev/null && echo n | apt-get -q --no-download dist-upgrade diff --git a/update-notify/new-packages.gentoo b/update-notify/new-packages.gentoo new file mode 100755 index 0000000..c02b5e1 --- /dev/null +++ b/update-notify/new-packages.gentoo @@ -0,0 +1,6 @@ +#!/bin/sh +# Nico Schottelius +# stolen from Frank +# usable as cron script, to show which packages should be updated + +emerge sync >/dev/null && emerge -pDuv diff --git a/update-puppet-on-host b/update-puppet-on-host new file mode 120000 index 0000000..bbba05a --- /dev/null +++ b/update-puppet-on-host @@ -0,0 +1 @@ +/home/users/nico/localch/vcs/sysadmin-logs/update-puppet-on-host \ No newline at end of file diff --git a/update-wddb b/update-wddb new file mode 100755 index 0000000..fa5e749 --- /dev/null +++ b/update-wddb @@ -0,0 +1,8 @@ +#!/bin/sh +export TMPFILE="/tmp/`basename $0`-$$" +cat > $TMPFILE + +/home/user/nico/bin/mail.add.wddb "$TMPFILE" +#/home/user/nico/bin/mail.add.wddb "$TMPFILE" &> /home/user/nico/LOG.wddb + +rm -f $TMPFILE diff --git a/update_time b/update_time new file mode 100644 index 0000000..17c7c73 --- /dev/null +++ b/update_time @@ -0,0 +1 @@ +ntpdate ntp0.fau.de ntp1.fau.de ntps1-0.cs.tu-berlin.de diff --git a/upload b/upload new file mode 100755 index 0000000..89d14ab --- /dev/null +++ b/upload @@ -0,0 +1,443 @@ +#!/usr/bin/perl -wT +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html + +# Set library paths in @INC, at compile time +BEGIN { unshift @INC, '.'; require 'setlib.cfg'; } + +# 'Use locale' for internationalisation of Perl regexes - +# main locale settings are done in TWiki::setupLocale +BEGIN { + # Do a dynamic 'use locale' for this module + if( $TWiki::useLocale ) { + require locale; + import locale (); + } +} + +use CGI::Carp qw(fatalsToBrowser); +use CGI; +use File::Copy; # FIXME remove +use TWiki; + +&main(); + + +# ========================= +# code fragment to extract pixel size from images +# taken from http://www.tardis.ed.ac.uk/~ark/wwwis/ +# subroutines: imgsize, gifsize, OLDgifsize, gif_blockskip, +# NEWgifsize, jpegsize +# +# looking at the filename really sucks I should be using the first 4 bytes +# of the image. If I ever do it these are the numbers.... (from chris@w3.org) +# PNG 89 50 4e 47 +# GIF 47 49 46 38 +# JPG ff d8 ff e0 +# XBM 23 64 65 66 + + +# ========================= +sub imgsize { + my( $file ) = shift @_; + my( $x, $y) = ( 0, 0 ); + + if( defined( $file ) && open( STRM, "<$file" ) ) { + binmode( STRM ); # for crappy MS OSes - Win/Dos/NT use is NOT SUPPORTED + if( $file =~ /\.jpg$/i || $file =~ /\.jpeg$/i ) { + ( $x, $y ) = &jpegsize( \*STRM ); + } elsif( $file =~ /\.gif$/i ) { + ( $x, $y ) = &gifsize(\*STRM); + } + close( STRM ); + } + return( $x, $y ); +} + + +# ========================= +sub gifsize +{ + my( $GIF ) = @_; + if( 0 ) { + return &NEWgifsize( $GIF ); + } else { + return &OLDgifsize( $GIF ); + } +} + + +# ========================= +sub OLDgifsize { + my( $GIF ) = @_; + my( $type, $a, $b, $c, $d, $s ) = ( 0, 0, 0, 0, 0, 0 ); + + if( defined( $GIF ) && + read( $GIF, $type, 6 ) && + $type =~ /GIF8[7,9]a/ && + read( $GIF, $s, 4 ) == 4 ) { + ( $a, $b, $c, $d ) = unpack( "C"x4, $s ); + return( $b<<8|$a, $d<<8|$c ); + } + return( 0, 0 ); +} + + +# ========================= +# part of NEWgifsize +sub gif_blockskip { + my ( $GIF, $skip, $type ) = @_; + my ( $s ) = 0; + my ( $dummy ) = ''; + + read( $GIF, $dummy, $skip ); # Skip header (if any) + while( 1 ) { + if( eof( $GIF ) ) { + #warn "Invalid/Corrupted GIF (at EOF in GIF $type)\n"; + return ""; + } + read( $GIF, $s, 1 ); # Block size + last if ord( $s ) == 0; # Block terminator + read( $GIF, $dummy, ord( $s ) ); # Skip data + } +} + + +# ========================= +# this code by "Daniel V. Klein" +sub NEWgifsize { + my( $GIF ) = @_; + my( $cmapsize, $a, $b, $c, $d, $e ) = 0; + my( $type, $s ) = ( 0, 0 ); + my( $x, $y ) = ( 0, 0 ); + my( $dummy ) = ''; + + return( $x,$y ) if( !defined $GIF ); + + read( $GIF, $type, 6 ); + if( $type !~ /GIF8[7,9]a/ || read( $GIF, $s, 7 ) != 7 ) { + #warn "Invalid/Corrupted GIF (bad header)\n"; + return( $x, $y ); + } + ( $e ) = unpack( "x4 C", $s ); + if( $e & 0x80 ) { + $cmapsize = 3 * 2**(($e & 0x07) + 1); + if( !read( $GIF, $dummy, $cmapsize ) ) { + #warn "Invalid/Corrupted GIF (global color map too small?)\n"; + return( $x, $y ); + } + } + FINDIMAGE: + while( 1 ) { + if( eof( $GIF ) ) { + #warn "Invalid/Corrupted GIF (at EOF w/o Image Descriptors)\n"; + return( $x, $y ); + } + read( $GIF, $s, 1 ); + ( $e ) = unpack( "C", $s ); + if( $e == 0x2c ) { # Image Descriptor (GIF87a, GIF89a 20.c.i) + if( read( $GIF, $s, 8 ) != 8 ) { + #warn "Invalid/Corrupted GIF (missing image header?)\n"; + return( $x, $y ); + } + ( $a, $b, $c, $d ) = unpack( "x4 C4", $s ); + $x = $b<<8|$a; + $y = $d<<8|$c; + return( $x, $y ); + } + if( $type eq "GIF89a" ) { + if( $e == 0x21 ) { # Extension Introducer (GIF89a 23.c.i) + read( $GIF, $s, 1 ); + ( $e ) = unpack( "C", $s ); + if( $e == 0xF9 ) { # Graphic Control Extension (GIF89a 23.c.ii) + read( $GIF, $dummy, 6 ); # Skip it + next FINDIMAGE; # Look again for Image Descriptor + } elsif( $e == 0xFE ) { # Comment Extension (GIF89a 24.c.ii) + &gif_blockskip( $GIF, 0, "Comment" ); + next FINDIMAGE; # Look again for Image Descriptor + } elsif( $e == 0x01 ) { # Plain Text Label (GIF89a 25.c.ii) + &gif_blockskip( $GIF, 12, "text data" ); + next FINDIMAGE; # Look again for Image Descriptor + } elsif( $e == 0xFF ) { # Application Extension Label (GIF89a 26.c.ii) + &gif_blockskip( $GIF, 11, "application data" ); + next FINDIMAGE; # Look again for Image Descriptor + } else { + #printf STDERR "Invalid/Corrupted GIF (Unknown extension %#x)\n", $e; + return( $x, $y ); + } + } else { + #printf STDERR "Invalid/Corrupted GIF (Unknown code %#x)\n", $e; + return( $x, $y ); + } + } else { + #warn "Invalid/Corrupted GIF (missing GIF87a Image Descriptor)\n"; + return( $x, $y ); + } + } +} + + +# ========================= +# jpegsize : gets the width and height (in pixels) of a jpeg file +# Andrew Tong, werdna@ugcs.caltech.edu February 14, 1995 +# modified slightly by alex@ed.ac.uk +sub jpegsize { + my( $JPEG ) = @_; + my( $done ) = 0; + my( $c1, $c2, $ch, $s, $length, $dummy ) = ( 0, 0, 0, 0, 0, 0 ); + my( $a, $b, $c, $d ); + + if( defined( $JPEG ) && + read( $JPEG, $c1, 1 ) && + read( $JPEG, $c2, 1 ) && + ord( $c1 ) == 0xFF && + ord( $c2 ) == 0xD8 ) { + while ( ord( $ch ) != 0xDA && !$done ) { + # Find next marker (JPEG markers begin with 0xFF) + # This can hang the program!! + while( ord( $ch ) != 0xFF ) { + return( 0, 0 ) unless read( $JPEG, $ch, 1 ); + } + # JPEG markers can be padded with unlimited 0xFF's + while( ord( $ch ) == 0xFF ) { + return( 0, 0 ) unless read( $JPEG, $ch, 1 ); + } + # Now, $ch contains the value of the marker. + if( ( ord( $ch ) >= 0xC0 ) && ( ord( $ch ) <= 0xC3 ) ) { + return( 0, 0 ) unless read( $JPEG, $dummy, 3 ); + return( 0, 0 ) unless read( $JPEG, $s, 4 ); + ( $a, $b, $c, $d ) = unpack( "C"x4, $s ); + return( $c<<8|$d, $a<<8|$b ); + } else { + # We **MUST** skip variables, since FF's within variable names are + # NOT valid JPEG markers + return( 0, 0 ) unless read( $JPEG, $s, 2 ); + ( $c1, $c2 ) = unpack( "C"x2, $s ); + $length = $c1<<8|$c2; + last if( !defined( $length ) || $length < 2 ); + read( $JPEG, $dummy, $length-2 ); + } + } + } + return( 0, 0 ); +} + + +# ========================= +sub addLinkToEndOfTopic +{ + my ( $text, $pathFilename, $fileName, $fileComment ) = @_; + my $fileLink = ""; + my $imgSize = ""; + + if( $fileName =~ /\.(gif|jpg|jpeg|png)$/i ) { + # inline image + $fileComment = $fileName if( ! $fileComment ); + my( $nx, $ny ) = &imgsize( $pathFilename ); + if( ( $nx > 0 ) && ( $ny > 0 ) ) { + $imgSize = " width=\"$nx\" height=\"$ny\" "; + } + $fileLink = &TWiki::Prefs::getPreferencesValue( "ATTACHEDIMAGEFORMAT" ) + || ' * $comment:
    ' + . ' $name'; + } else { + # normal attached file + $fileLink = &TWiki::Prefs::getPreferencesValue( "ATTACHEDFILELINKFORMAT" ) + || ' * [[%ATTACHURL%/$name][$name]]: $comment'; + } + + $fileLink =~ s/^ /\t\t/go; + $fileLink =~ s/^ /\t/go; + $fileLink =~ s/\$name/$fileName/g; + $fileLink =~ s/\$comment/$fileComment/g; + $fileLink =~ s/\$size/$imgSize/g; + $fileLink =~ s/\\t/\t/go; + $fileLink =~ s/\\n/\n/go; + $fileLink =~ s/([^\n])$/$1\n/; + + return "$text$fileLink"; +} + +# ========================= +sub handleError +{ + my( $noredirect, $message, $query, $theWeb, $theTopic, + $theOopsTemplate, $oopsArg1, $oopsArg2 ) = @_; + + if( $noredirect ) { + $oopsArg1 = "" if( ! $oopsArg1 ); + $oopsArg2 = "" if( ! $oopsArg2 ); + &TWiki::writeHeader( $query ); + print "ERROR $theWeb.$theTopic $message $oopsArg1 $oopsArg2\n"; + } else { + my $url = &TWiki::getOopsUrl( $theWeb, $theTopic, $theOopsTemplate, $oopsArg1, $oopsArg2 ); + TWiki::redirect( $query, $url ); + } +} + + +# ========================= +sub main +{ + my $query = new CGI; + + ##### for debug only: Remove next 3 comments (but redirect does not work) + #open(STDERR,'>&STDOUT'); # redirect error to browser + #$| = 1; # no buffering + #TWiki::writeHeader( $query ); + + my $thePathInfo = $query->path_info(); + my $theRemoteUser = $query->remote_user(); + my $theTopic = $query->param( 'topic' ); + my $theUrl = $query->url; + my $doChangeProperties = $query->param( 'changeproperties' ); + my $hideFile = $query->param( 'hidefile' ) || ""; + my $noredirect = $query->param( 'noredirect' ) || ""; + + ( $topic, $webName, $dummy, $userName ) = + &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query ); + $dummy = ""; # to suppress warning + + my $wikiUserName = &TWiki::userToWikiName( $userName ); + + if( ! &TWiki::Store::webExists( $webName ) ) { + handleError( $noredirect, "Missing Web", $query, $webName, $topic, "oopsnoweb" ); + return; + } + + my( $mirrorSiteName, $mirrorViewURL ) = &TWiki::readOnlyMirrorWeb( $webName ); + if( $mirrorSiteName ) { + handleError( $noredirect, "This is a readonly mirror", + $query, $webName, $topic, "oopsmirror", $mirrorSiteName, $mirrorViewURL ); + return; + } + + # check access permission + if( ! &TWiki::Access::checkAccessPermission( "change", $wikiUserName, "", $topic, $webName ) ) { + handleError( $noredirect, "No change permission", $query, $webName, $topic, "oopsaccesschange" ); + return; + } + + my $filePath = $query->param( 'filepath' ) || ""; + my $fileName = $query->param( 'filename' ) || ""; + if ( $filePath && ! $fileName ) { + $filePath =~ m|([^/\\]*$)|; + $fileName = $1; + } + my $tmpFilename = $query->tmpFileName( $filePath ) || ""; + my $fileComment = $query->param( 'filecomment' ) || ""; + my $createLink = $query->param( 'createlink' ) || ""; + + close $filePath if( $TWiki::OS eq "WINDOWS"); + + # JET need to change windows path to unix path + $tmpFilename =~ s@\\@/@go; + $tmpFilename =~ /(.*)/; + $tmpFilename = $1; + #&TWiki::writeDebug( "upload: tmpFilename $tmpFilename" ); + + my( $fileSize, $fileUser, $fileDate, $fileVersion ) = ""; + + if( ! $doChangeProperties ) { + # check if file exists and has non zero size + my $size = -s $tmpFilename; + if( ! -e $tmpFilename || ! $size ) { + handleError( $noredirect, "File missing or zero size", + $query, $webName, $topic, "oopsupload", $fileName ); + return; + } + + # cut path from filepath name (Windows "\" and Unix "/" format) + my @pathz = ( split( /\\/, $filePath ) ); + my $filetemp = $pathz[$#pathz]; + my @pathza = ( split( '/', $filetemp ) ); + $fileName = $pathza[$#pathza]; + + # Delete unwanted characters from filename, with I18N + my $nonAlphaNum = "[^${TWiki::mixedAlphaNum}" . '\._-]+'; + $fileName =~ s/${nonAlphaNum}//go; + $fileName =~ s/$TWiki::uploadFilter/$1\.txt/goi; # apply security filter + + # Update + my $text1 = ""; + my $saveCmd = ""; + my $doNotLogChanges = 1; + my $doUnlock = 0; + my $dontNotify = ""; + my $error = &TWiki::Store::saveAttachment( $webName, $topic, $text1, $saveCmd, + $fileName, $doNotLogChanges, $doUnlock, + $dontNotify, $fileComment, $tmpFilename ); + + if ( $error ) { + handleError( $noredirect, "Save attachment error", $query, $webName, $topic, + "oopssaveerr", $error ); + return; + } + + # get user name + $fileUser = $userName; + + # get time stamp and file size of uploaded file: + my( $tmp1,$tmp2,$tmp3,$tmp4,$tmp5,$tmp6,$tmp7,$tmp9, + $mtime,$tmp11,$tmp12,$tmp13 ) = ""; + ( $tmp1,$tmp2,$tmp3,$tmp4,$tmp5,$tmp6,$tmp7,$fileSize,$tmp9, + $mtime,$tmp11,$tmp12,$tmp13 ) = stat $tmpFilename; + $fileDate = $mtime; + + $fileVersion = TWiki::Store::getRevisionNumber( $webName, $topic, $fileName ); + + if( $TWiki::doLogTopicUpload ) { + # write log entry + &TWiki::Store::writeLog( "upload", "$webName.$topic", $fileName ); + #FIXE also do log for change property? + } + } + + + # update topic + my( $meta, $text ) = &TWiki::Store::readTopic( $webName, $topic ); + + if( $doChangeProperties ) { + TWiki::Attach::updateProperties( $fileName, $hideFile, $fileComment, $meta ); + } else { + TWiki::Attach::updateAttachment( + $fileVersion, $fileName, $filePath, $fileSize, + $fileDate, $fileUser, $fileComment, $hideFile, $meta ); + } + + if( $createLink ) { + my $filePath = &TWiki::Store::getFileName( $webName, $topic, $fileName ); + $text = addLinkToEndOfTopic( $text, $filePath, $fileName, $fileComment ); + } + + my $error = &TWiki::Store::saveTopic( $webName, $topic, $text, $meta, "", 1 ); + if( $error ) { + handleError( $noredirect, "Save topic error", $query, $webName, $topic, + "oopssaveerr", $error ); + } else { + # and finally display topic + if( $noredirect ) { + &TWiki::writeHeader( $query ); + my $message = ( $doChangeProperties ) ? "properties changed" : "$fileName uploaded"; + print( "OK $message\n" ); + } else { + TWiki::redirect( $query, &TWiki::getViewUrl( "", $topic ) ); + } + } +} + +# EOF diff --git a/video.sh b/video.sh new file mode 100644 index 0000000..a0f0e57 --- /dev/null +++ b/video.sh @@ -0,0 +1,3 @@ +#!/bin/sh +mencoder mf://*-snapshot.jpg -mf w=960:h=720:fps=50:type=jpg -ovc lavc \ + -lavcopts vcodec=mpeg4:mbd=2:trell -oac copy -o output.avi diff --git a/viewfile b/viewfile new file mode 100755 index 0000000..991185e --- /dev/null +++ b/viewfile @@ -0,0 +1,90 @@ +#!/usr/bin/perl -wT +# +# TWiki Collaboration Platform, http://TWiki.org/ +# +# Copyright (C) 1999-2003 Peter Thoeny, peter@thoeny.com +# +# For licensing info read license.txt file in the TWiki root. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html + +# Set library paths in @INC, at compile time +BEGIN { unshift @INC, '.'; require 'setlib.cfg'; } + +use CGI::Carp qw(fatalsToBrowser); +use CGI; +use TWiki; + +&main(); + +sub suffixToMimeType +{ + my( $theFilename ) = @_; + + my $mimeType = 'text/plain'; + if( $theFilename =~ /\.(.+)$/ ) { + my $suffix = $1; + my @types = grep{ s/^\s*([^\s]+).*?\s$suffix\s.*$/$1/i } + map{ "$_ " } + split( /[\n\r]/, &TWiki::Store::readFile( $TWiki::mimeTypesFilename ) ); + $mimeType = $types[0] if( @types ); + } + return $mimeType; +} + +sub main +{ + my $query = new CGI; + + my $thePathInfo = $query->path_info(); + my $theRemoteUser = $query->remote_user(); + my $theTopic = $query->param( 'topic' ); + my $theUrl = $query->url; + + ( $topic, $webName ) = + &TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query ); + + my $tmpl= ""; + + if( ! &TWiki::Store::webExists( $webName ) ) { + my $url = &TWiki::getOopsUrl( $webName, $topic, "oopsnoweb" ); + TWiki::redirect( $query, $url ); + return; + } + + my $fileName = $query->param( 'filename' ); + + my $rev = $query->param( 'rev' ) || ""; + my $topRev = &TWiki::Store::getRevisionNumber( $webName, $topic, $fileName ); + + if( ( $rev ) && ( $rev ne $topRev ) ) { + my $fileContent = &TWiki::Store::readAttachmentVersion( $webName, $topic, $fileName, $rev ); + if( $fileContent ) { + my $mimeType = suffixToMimeType( $fileName ); + print $query->header( -type => $mimeType, + -Content_Disposition => "inline;filename=$fileName"); + print "$fileContent"; + return; + } else { + # If no file content we'll try and show pub content, should there be a warning FIXME + } + } + + # this should actually kick off a document conversion + # (.doc, .xls... to .html) and show the html file. + # Convert only if html file does not yet exist + # for now, show the original document: + + # PTh 20 Jun 2000: Added host + my $pubUrlPath = &TWiki::getPubUrlPath(); + my $host = $TWiki::urlHost; + TWiki::redirect( $query, "$host$pubUrlPath/$webName/$topic/$fileName" ); +} diff --git a/wacom-tuning b/wacom-tuning new file mode 100755 index 0000000..2a0ae08 --- /dev/null +++ b/wacom-tuning @@ -0,0 +1,28 @@ +#!/bin/sh + +if [ $# -eq 1 ]; then + display=$1 +else + display=LVDS1 +fi + +devfinger="Wacom Bamboo 16FG 4x5 Finger" + +xinput set-prop "$devfinger" "Device Enabled" 0 + +#xsetwacom --set "Wacom Bamboo 16FG 4x5 Pen stylus" MapToOutput $display +#xsetwacom --set "Wacom Bamboo 16FG 4x5 Pen eraser" MapToOutput $display + +exit 0 +# xinput set-prop "Wacom Bamboo 16FG 4x5 Finger pad" "Device Enabled" 0 + +xsetwacom --set "Wacom Bamboo 16FG 4x5 Pen stylus" mode relative + +xinput set-prop "Wacom Bamboo 16FG 4x5 Pen stylus" "Device Accel Constant Deceleration" 4 +xinput set-prop "Wacom Bamboo 16FG 4x5 Pen stylus" "Device Accel Adaptive Deceleration" 2 + +# Rotate so usb cable is not disturbing me +# xinput set-prop 14 "Evdev Axis Inversion" 1 1 +# xsetwacom --set "Wacom Bamboo 16FG 4x5 Pen" MapToOutput LVDS1 + +exit 0 diff --git a/wireless b/wireless new file mode 100644 index 0000000..f14c37f --- /dev/null +++ b/wireless @@ -0,0 +1,15 @@ +IW_DEV="eth1" +IW_MODE="ad-hoc" +IW_ESSID="home" +IW_IP="192.168.10.5" +IW_NETM="255.255.255.0" + +case $1 in + start) + iwconfig $IW_DEV mode $IW_MODE + iwconfig $IW_DEV essid $IW_ESSID + ifconfig $IW_DEV $IW_IP netmask $IW_NETM up + ;; + stop) + ;; +esac diff --git a/x-autostart b/x-autostart new file mode 100755 index 0000000..b8a0597 --- /dev/null +++ b/x-autostart @@ -0,0 +1,14 @@ +#!/bin/sh + +# Restore layouts +i3-msg 'workspace 1; append_layout /home/users/nico/.i3/workspace-1.json' +i3-msg 'workspace 2; append_layout /home/users/nico/.i3/workspace-2.json' +i3-msg 'workspace 10; append_layout /home/users/nico/.i3/workspace-10.json' + +# Start programs afterwards and watch matching +chromium & +# slack & +#firefox & +#choqok & + +ssh-add &2 + exit 1 +} + +disconnected_off="" +for output in $disconnected; do + disconnected_off="$disconnected_off --output $output --off" +done + +_xrandr() { + echo "xrandr $disconnected_off $@" + xrandr $disconnected_off $@ + echo "xrandr return code: $?" +} + +case "$mode" in + beamer) + [ -n "$secondary" ] || die "No secondary output detected." + _xrandr --output $primary --mode $resolution --primary \ + --output $secondary --same-as $primary + ;; + reset) + args="--output $primary --auto --primary" + [ -n "$secondary" ] && args="$args --output $secondary --off" + _xrandr $args + ;; + normal) + args="--output $primary --auto --primary" + [ -n "$secondary" ] && args="$args --output $secondary --auto --${location} $primary" + _xrandr $args + ;; + extern) + if [ -n "$secondary" ]; then + args="--output $secondary --auto --primary" + args="$args --output $primary --off" + _xrandr $args + else + echo "No secondary output found, aborting." >&2 + exit 1 + fi + ;; +esac diff --git a/수산 b/수산 new file mode 120000 index 0000000..e9b4575 --- /dev/null +++ b/수산 @@ -0,0 +1 @@ +/bin/ls \ No newline at end of file