]> git.pond.sub.org Git - empserver/commitdiff
New make target check
authorMarkus Armbruster <armbru@pond.sub.org>
Sat, 14 Jul 2012 06:46:38 +0000 (08:46 +0200)
committerMarkus Armbruster <armbru@pond.sub.org>
Wed, 8 May 2013 04:55:11 +0000 (06:55 +0200)
Just a smoke test so far, extracted from src/scripts/nightly/.  This
makes the existing smoke test more easily accessible.  Noteworthy
differences:

* Instead of patching the code to make output more stable, postprocess
  the output to normalize it.

* Compare actual results to expected results instead of the previous
  test run's results.

* Much faster.  The old test harness used sleep liberally to "ensure"
  things always happen in the same order.

Known shortcomings:

* The smoke test hangs when the server fails to complete startup, or
  fails to terminate.

* Normalization of xdump hardcodes columns instead of getting them
  from xdump meta.

* Normalization of time values in xdump is an ugly hack.

* xdump meta column type isn't normalized.  Actual values can vary
  between systems, because the width of enumeration types is
  implementation-defined.  The smoke test works only when they're
  represented as int, which is the case on common systems.

* Currently expected to work only with thread package LWP and a
  random() that behaves exactly like the one on my development system,
  because:

  - Thread scheduling is reliably deterministic only with LWP

  - The PRN sequence produced by random() isn't portable

  - Shell builtin kill appears not to do the job in MinGW

  - The Windows server tries to run as service when -d isn't
    specified

Further work is needed to address these shortcomings.

Getting C programs behave exactly the same on all systems is hard.
We'll likely run into system-dependent differences that upset the
smoke test.  Floating-point computation seems particularly vulnerable.

Instead of updating src/scripts/nightly/ to use "make check", retire
it.  It hasn't been used in quite a while.  Investing more into our
homegrown auto-builder doesn't make sense, as canned auto-builders
such as Travis CI and Jenkins are readily available.

The shell scripts src/scripts/nightly/tests/?? become Empire batch
files tests/smoke/.  The shell scripts are actually shell boilerplate
around Empire batch files.  To make sure git recognizes the move, this
commit moves them unchanged.  tests/smoke-test strips the boilerplate
before it feeds the batch files to the client.  The next commit will
get rid fo that.

115 files changed:
Make.mk
src/scripts/nightly/.gitignore [deleted file]
src/scripts/nightly/common.sh [deleted file]
src/scripts/nightly/conf/ubuntu-lwp.i386.config [deleted file]
src/scripts/nightly/conf/ubuntu-pthread.i386.config [deleted file]
src/scripts/nightly/conf/win32.i386.config [deleted file]
src/scripts/nightly/cron/cron.ubuntu.i386 [deleted file]
src/scripts/nightly/cron/cron.win32.i386 [deleted file]
src/scripts/nightly/diff_to_prev.sh [deleted file]
src/scripts/nightly/nightlybuild.sh [deleted file]
src/scripts/nightly/patches/All/README [deleted file]
src/scripts/nightly/patches/All/emptime.c.patch [deleted file]
src/scripts/nightly/patches/All/journal.econfig [deleted file]
src/scripts/nightly/patches/All/pr.c.patch [deleted file]
src/scripts/nightly/patches/All/pre_update.econfig [deleted file]
src/scripts/nightly/patches/win32.i386/mingw.econfig [deleted file]
src/scripts/nightly/report.sh [deleted file]
src/scripts/nightly/tests/00/00 [deleted file]
src/scripts/nightly/tests/00/01 [deleted file]
src/scripts/nightly/tests/00/02 [deleted file]
src/scripts/nightly/tests/00/03 [deleted file]
src/scripts/nightly/tests/00/04 [deleted file]
src/scripts/nightly/tests/00/05 [deleted file]
src/scripts/nightly/tests/00/06 [deleted file]
src/scripts/nightly/tests/00/07 [deleted file]
src/scripts/nightly/tests/00/08 [deleted file]
src/scripts/nightly/tests/00/09 [deleted file]
src/scripts/nightly/tests/00/10 [deleted file]
src/scripts/nightly/tests/01/01 [deleted file]
src/scripts/nightly/tests/02/01 [deleted file]
src/scripts/nightly/tests/03/01 [deleted file]
src/scripts/nightly/tests/03/08 [deleted file]
src/scripts/nightly/tests/04/01 [deleted file]
src/scripts/nightly/tests/04/08 [deleted file]
src/scripts/nightly/tests/05/01 [deleted file]
src/scripts/nightly/tests/06/01 [deleted file]
src/scripts/nightly/tests/06/08 [deleted file]
src/scripts/nightly/tests/07/01 [deleted file]
src/scripts/nightly/tests/07/08 [deleted file]
src/scripts/nightly/tests/08/01 [deleted file]
src/scripts/nightly/tests/08/08 [deleted file]
src/scripts/nightly/tests/09/01 [deleted file]
src/scripts/nightly/tests/09/08 [deleted file]
src/scripts/nightly/tests/10/01 [deleted file]
src/scripts/nightly/tests/10/08 [deleted file]
src/scripts/nightly/tests/11/01 [deleted file]
src/scripts/nightly/tests/11/08 [deleted file]
src/scripts/nightly/tests/12/01 [deleted file]
src/scripts/nightly/tests/12/08 [deleted file]
src/scripts/nightly/tests/13/01 [deleted file]
src/scripts/nightly/tests/13/02 [deleted file]
src/scripts/nightly/tests/13/08 [deleted file]
src/scripts/nightly/tests/14/01 [deleted file]
src/scripts/nightly/tests/14/02 [deleted file]
src/scripts/nightly/tests/14/08 [deleted file]
src/scripts/nightly/tests/15/01 [deleted file]
src/scripts/nightly/tests/15/02 [deleted file]
src/scripts/nightly/tests/15/08 [deleted file]
src/scripts/nightly/tests/16/01 [deleted file]
src/scripts/nightly/tests/16/02 [deleted file]
src/scripts/nightly/tests/16/08 [deleted file]
src/scripts/nightly/tests/99/00 [deleted file]
src/scripts/nightly/tests/99/01 [deleted file]
src/scripts/nightly/tests/update [deleted file]
tests/normalize.pl [new file with mode: 0755]
tests/smoke-test [new file with mode: 0755]
tests/smoke/00/00 [new file with mode: 0644]
tests/smoke/00/01 [new file with mode: 0644]
tests/smoke/00/02 [new file with mode: 0644]
tests/smoke/00/03 [new file with mode: 0644]
tests/smoke/00/04 [new file with mode: 0644]
tests/smoke/00/05 [new file with mode: 0644]
tests/smoke/00/06 [new file with mode: 0644]
tests/smoke/00/07 [new file with mode: 0644]
tests/smoke/00/08 [new file with mode: 0644]
tests/smoke/00/09 [new file with mode: 0644]
tests/smoke/00/10 [new file with mode: 0644]
tests/smoke/01/01 [new file with mode: 0644]
tests/smoke/02/01 [new file with mode: 0644]
tests/smoke/03/01 [new file with mode: 0644]
tests/smoke/03/08 [new file with mode: 0644]
tests/smoke/04/01 [new file with mode: 0644]
tests/smoke/04/08 [new file with mode: 0644]
tests/smoke/05/01 [new file with mode: 0644]
tests/smoke/06/01 [new file with mode: 0644]
tests/smoke/06/08 [new file with mode: 0644]
tests/smoke/07/01 [new file with mode: 0644]
tests/smoke/07/08 [new file with mode: 0644]
tests/smoke/08/01 [new file with mode: 0644]
tests/smoke/08/08 [new file with mode: 0644]
tests/smoke/09/01 [new file with mode: 0644]
tests/smoke/09/08 [new file with mode: 0644]
tests/smoke/10/01 [new file with mode: 0644]
tests/smoke/10/08 [new file with mode: 0644]
tests/smoke/11/01 [new file with mode: 0644]
tests/smoke/11/08 [new file with mode: 0644]
tests/smoke/12/01 [new file with mode: 0644]
tests/smoke/12/08 [new file with mode: 0644]
tests/smoke/13/01 [new file with mode: 0644]
tests/smoke/13/02 [new file with mode: 0644]
tests/smoke/13/08 [new file with mode: 0644]
tests/smoke/14/01 [new file with mode: 0644]
tests/smoke/14/02 [new file with mode: 0644]
tests/smoke/14/08 [new file with mode: 0644]
tests/smoke/15/01 [new file with mode: 0644]
tests/smoke/15/02 [new file with mode: 0644]
tests/smoke/15/08 [new file with mode: 0644]
tests/smoke/16/01 [new file with mode: 0644]
tests/smoke/16/02 [new file with mode: 0644]
tests/smoke/16/08 [new file with mode: 0644]
tests/smoke/99/00 [new file with mode: 0644]
tests/smoke/99/01 [new file with mode: 0644]
tests/smoke/journal.log [new file with mode: 0644]
tests/smoke/server.log [new file with mode: 0644]
tests/smoke/smoke.out [new file with mode: 0644]

diff --git a/Make.mk b/Make.mk
index 3286454040edcdb3a657f26d1debbac288139ca2..c2c83598f2379c64b296415dfdd0369a42e88b80 100644 (file)
--- a/Make.mk
+++ b/Make.mk
@@ -27,7 +27,7 @@
 #   Make.mk: The real Makefile, included by GNUmakefile
 #
 #   Known contributors to this file:
-#      Markus Armbruster, 2005-2011
+#      Markus Armbruster, 2005-2012
 #
 
 # This makefile was inspired by `Recursive Make Considered Harmful',
@@ -131,6 +131,8 @@ ttop := info/TOP.t
 info.nr := $(addprefix info.nr/, $(info))
 info.html := $(addprefix info.html/, $(addsuffix .html, $(info)))
 info.all := $(info.nr) $(info.html) info.ps
+# Tests
+# sandbox
 
 # Conditionally generated files:
 empth_obj := src/lib/empthread/io.o
@@ -155,7 +157,7 @@ endif
 # Each generated file should be in one of the following sets.
 # Removed by clean:
 clean := $(obj) $(deps) $(libs) $(util) $(client) $(server) $(tsubj)   \
-$(ttop) $(info.all) $(empth_obj) $(empth_lib)
+$(ttop) $(info.all) $(empth_obj) $(empth_lib) sandbox
 # Removed by distclean:
 distclean := $(ac) $(mk)
 # Distributed by dist-source from $(srcdir):
@@ -178,6 +180,10 @@ endif
 $(client): LDLIBS := $(LIBS_client)
 $(server): LDLIBS := $(LIBS_server)
 
+# Self-tests
+checks := check-smoke
+
+
 ### Advertized goals
 
 .PHONY: all
@@ -189,7 +195,7 @@ html: $(info.html)
 
 .PHONY: clean
 clean:
-       $(call quiet-command,rm -f $(clean),CLEAN)
+       $(call quiet-command,rm -rf $(clean),CLEAN)
 
 .PHONY: distclean
 distclean: clean
@@ -244,6 +250,17 @@ uninstall:
 .PHONY: dist
 dist: dist-source dist-client dist-info
 
+.PHONY: check $(checks)
+check: $(checks)
+$(checks): all
+check-smoke:
+       @echo "Warning: smoke test is immature and needs work." >&2
+ifeq ($(empthread),LWP)
+       $(srcdir)/tests/smoke-test $(srcdir)
+else
+       @echo "$(srcdir)/tests/smoke-test SKIPPED"
+endif
+
 
 ### Implicit rules
 
diff --git a/src/scripts/nightly/.gitignore b/src/scripts/nightly/.gitignore
deleted file mode 100644 (file)
index 33df980..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-boxes
-logs
diff --git a/src/scripts/nightly/common.sh b/src/scripts/nightly/common.sh
deleted file mode 100644 (file)
index e3b4a1e..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#
-# Common functions
-#
-# Blame it on marcolz
-#
-err() {
-       echo "ERROR: $@" >&2
-       exit 1
-}
-
-warn() {
-       echo "WARNING: $@" >&2
-}
-
-trykill() {
-       [ -n "$1" ] || { warn "INTERNAL ERROR: trykill: no argument ?" ; return 2 ; }
-       kill -TERM "$1" || { warn "Could not kill pid '${1}'" ; return 1 ; }
-       sleep 1
-       /bin/kill -KILL "$1" 2>/dev/null && { warn "Process ${1} would not die" ; }
-       sleep 1
-       /bin/kill -KILL "$1" 2>/dev/null && { warn "Process ${1} would not die after -KILL" ; return 1 ; }
-
-       return 0
-}
-
-runfeed() {
-       [ -n "$1" ] || { warn "INTERNAL ERROR: No coun/repr given ?" ; return 2 ; }
-       REP="$2"
-       [ -n "$REP" ] || REP="$1"
-       ${EMPIRE_PATH}/empire "$1" "$REP" || { warn "empire not ok ?" ; return 1 ; }
-       return 0
-}
diff --git a/src/scripts/nightly/conf/ubuntu-lwp.i386.config b/src/scripts/nightly/conf/ubuntu-lwp.i386.config
deleted file mode 100644 (file)
index 09fab2f..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-SCRIPTDIR=/home/empire
-BOXDIR=boxes
-LOGDIR=logs
-INSTANCE=ubuntu-lwp.i386
-EMPPORT=8889
-NIGHTLY_SKIP_STEP=
-GITROOT=/home/empire/empserver.git
-export LANG=C
diff --git a/src/scripts/nightly/conf/ubuntu-pthread.i386.config b/src/scripts/nightly/conf/ubuntu-pthread.i386.config
deleted file mode 100644 (file)
index 85daed1..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-SCRIPTDIR=/home/empire
-BOXDIR=boxes
-LOGDIR=logs
-INSTANCE=ubuntu-pthread.i386
-EMPPORT=8889
-NIGHTLY_SKIP_STEP=
-GITROOT=/home/empire/empserver.git
-export LANG=C
-export CONFIGURE_OPTIONS="--with-pthread"
diff --git a/src/scripts/nightly/conf/win32.i386.config b/src/scripts/nightly/conf/win32.i386.config
deleted file mode 100644 (file)
index 344b0cb..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-SCRIPTDIR=/home/empire
-export BOXDIR=boxes
-LOGDIR=logs
-export INSTANCE=win32.i386
-EMPPORT=8889
-NIGHTLY_SKIP_STEP=
-GITROOT=ssh://ron-VM3/~empire/empserver.git
-PATH=$PATH:/c/Progra~1/git/bin
-export MINGW_DIR="c:/MinGW"
-
diff --git a/src/scripts/nightly/cron/cron.ubuntu.i386 b/src/scripts/nightly/cron/cron.ubuntu.i386
deleted file mode 100755 (executable)
index 34bac62..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-cd /home/empire/empserver.git
-git pull 2>&1 >/dev/null
-cd /home/empire
-./nightlybuild.sh ubuntu-lwp.i386.config
-./report.sh ubuntu-lwp.i386.config | mutt -s 'empserver ubuntu-lwp.i386' empserver-devel@lists.sourceforge.net
-./nightlybuild.sh ubuntu-pthread.i386.config
-./report.sh ubuntu-pthread.i386.config | mutt -s 'empserver ubuntu-pthread.i386' empserver-devel@lists.sourceforge.net
diff --git a/src/scripts/nightly/cron/cron.win32.i386 b/src/scripts/nightly/cron/cron.win32.i386
deleted file mode 100755 (executable)
index d2b3d96..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-cd /home/empire
-./nightlybuild.sh win32.i386.config </dev/null
-./report.sh win32.i386.config | /c/download/blat250/full/blat.exe -to empserver-devel@lists.sourceforge.net -subject "empserver win32.i386" -p ron\r
-:end\r
diff --git a/src/scripts/nightly/diff_to_prev.sh b/src/scripts/nightly/diff_to_prev.sh
deleted file mode 100755 (executable)
index 1c835e5..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-#
-# Check differences between the last two logs
-#
-# Blame it on marcolz
-#
-
-PROGNAME="$0"
-
-usage() {
-       echo "Usage: ${PROGNAME} <configfile>" >&2;
-       exit 1;
-}
-
-[ $# -lt 1 ] && usage
-
-[ -f "$1" ] || usage
-
-# Source config file
-case "$1"
-in
-       */*)
-               . "$1"
-               ;;
-       *)
-               . ./"$1"
-               ;;
-esac
-
-[ -f "${SCRIPTDIR}/common.sh" ] || { echo "Broken config ?" >&2; exit 1; }
-. "${SCRIPTDIR}"/common.sh
-
-cd "${LOGDIR}" || err "Could not cd to ${LOGDIR}"
-
-diff -u $(ls "${INSTANCE}."* | tail -2)
diff --git a/src/scripts/nightly/nightlybuild.sh b/src/scripts/nightly/nightlybuild.sh
deleted file mode 100755 (executable)
index 6b5abf4..0000000
+++ /dev/null
@@ -1,496 +0,0 @@
-#!/bin/sh
-#
-# Blame it on marcolz
-#
-# Skip certain parts of this script by exporting the variable
-# "NIGHTLY_SKIP_STEP" containing the following possible substrings,
-# preventing the named behaviour:
-#
-# REDIRECT     -       Redirect all output to a logfile
-# CHECKOUT     -       Fill the sandbox with a fresh checkout
-# PATCH                -       Apply the patches for this system (global + specific)
-# BUILD                -       Build everything
-# GENERATE     -       Generate a new world
-# SERVERSTART  -       Start the server
-# TESTSCRIPT   -       Run the testscript
-# SERVERSTOP   -       Stop the server if it was started by this script
-# CLEANUP      -       Remove the contents of the sandbox
-# REMOVE_REPOSITORY    Removes the git repository when cleaning up
-#
-
-PROGNAME="$0"
-TERM="${TERM:-vt100}"
-export TERM
-
-usage() {
-       echo "Usage: ${PROGNAME} <configfile>" >&2;
-       exit 1;
-}
-
-[ $# -lt 1 ] && usage
-
-[ -f "$1" ] || usage
-
-# Source config file
-case "$1"
-in
-       */*)
-               . "$1"
-               ;;
-       *)
-               . ./"$1"
-               ;;
-esac
-
-[ -f "${SCRIPTDIR}/common.sh" ] || { echo "Broken config ?" >&2; exit 1; }
-. "${SCRIPTDIR}"/common.sh
-export SCRIPTDIR
-
-
-STAMP="`date +%Y%m%d%H%M%S`"
-WORKDIR="${INSTANCE}"
-[ -n "${EXTRASUFFIX}" ] && WORKDIR="${WORKDIR}.${EXTRASUFFIX}"
-LOGFILE="${LOGDIR}/${WORKDIR}.${STAMP}"
-
-#
-# START REDIRECT
-#
-case "${NIGHTLY_SKIP_STEP}"
-in
-       *REDIRECT*) ;;
-       *)
-
-# Log everything
-exec > "${LOGFILE}"
-exec 2>&1
-
-               ;;
-esac
-#
-# END REDIRECT
-#
-
-case "${BOXDIR}"
-in
-       /*)
-               ;;
-       *)
-               BOXDIR="${SCRIPTDIR}/${BOXDIR}"
-               ;;
-esac
-
-cd "${BOXDIR}" || err "Could not chdir to ${BOXDIR}"
-
-echo "Nightly build starting at `date`"
-
-
-#
-# START CHECKOUT
-#
-case "${NIGHTLY_SKIP_STEP}"
-in
-       *CHECKOUT*) ;;
-       *)
-
-# Make sandbox
-if [ -d "${WORKDIR}" ]
-then
-       [ -d "${WORKDIR}"/empserver/.git ] || err "Invalid sandbox, missing .git directory"
-else
-       echo making directory
-       mkdir "${WORKDIR}" || warn "Could not create ${BOXDIR}/${WORKDIR}"
-fi
-cd "${WORKDIR}" || err "Could not cd to ${BOXDIR}/${WORKDIR}"
-
-echo "Getting source from GIT:"
-# Extract source
-export GITROOT=${GITROOT:= git://git.pond.sub.org/~armbru/empserver}
-RETR=0
-if ! [ -d empserver ]
-then
-       while ! git clone --quiet $GITROOT empserver >/dev/null
-       do
-               sleep "`expr 5 + ${RETR}`"
-               RETR="`expr 1 + ${RETR}`"
-               [ "${RETR}" -gt 5 ] && err "git clone Timeout after ${RETR} retres."
-       done
-       cd empserver || err "Could not cd to ${BOXDIR}/${WORKDIR}/empserver."
-else
-       cd empserver || err "Could not cd to ${BOXDIR}/${WORKDIR}/empserver."
-       while ! git pull --quiet $GITROOT master >/dev/null
-       do
-               sleep "`expr 5 + ${RETR}`"
-               RETR="`expr 1 + ${RETR}`"
-               [ "${RETR}" -gt 5 ] && err "GIT pull Timeout after ${RETR} retres."
-done
-
-fi
-
-echo "Commit `git describe --match 'v*' --always`"
-echo "Done (GIT)."
-echo ""
-               ;;
-esac
-#
-# END CHECKOUT
-#
-
-#
-# START PATCH
-#
-cd "${BOXDIR}/${WORKDIR}/empserver" || err "Could not cd to ${BOXDIR}/${WORKDIR}/empserver"
-case "${NIGHTLY_SKIP_STEP}"
-in
-       *PATCH*) ;;
-       *)
-
-echo "Applying global patches from ${BOXDIR}/${WORKDIR}/empserver/src/scripts/nightly/patches/All"
-for i in "${BOXDIR}/${WORKDIR}/empserver/src/scripts/nightly/patches/All"/*.patch
-do
-       [ -r "${i}" ] || continue
-       if git apply "${i}" >/dev/null
-       then
-               echo "${i}: OK"
-       else
-               echo "========== ${i}: NOT OK! ${?} =========="
-       fi
-done
-echo "Done (patch All)."
-echo ""
-
-LOCALPATCHDIRECTORY="${BOXDIR}/${WORKDIR}/empserver/src/scripts/nightly/patches/${INSTANCE}"
-if [ -n "${LOCALPATCHDIRECTORY}" -a -d "${LOCALPATCHDIRECTORY}/." ]
-then
-       echo "Applying system specific patches from ${LOCALPATCHDIRECTORY}:"
-       for i in "${LOCALPATCHDIRECTORY}"/*.patch
-       do
-               [ -r "${i}" ] || continue
-               if git apply "${i}" >/dev/null
-               then
-                       echo "${i}: OK"
-               else
-                       echo "========== ${i}: NOT OK! ${?} =========="
-               fi
-       done
-       echo "Done (patch specific)."
-       echo ""
-fi
-echo "Apply controlled time patch."
-for f in `git-ls-files | grep -E '\.[ch](\.in)?$' | xargs grep -l \>`
-do
- n=`grep -n '^[     ]*#[     ]*include\>' $f | tail -n 1 | sed 's/:.*//'`
-if [ $n ]
-then
-sed "$n"'a\
-#include "emptime.h"\
-#undef time\
-#define time(timer) emp_time((timer), __FUNCTION__)\
-#undef gettimeofday\
-#define gettimeofday(tv, tz) emp_gettimeofday((tv), (tz))' $f >$f.patched
-mv $f.patched $f
-fi
-done
-git add include/emptime.h src/lib/gen/emptime.c
-echo "Done applying controlled time patch."
-echo ""
-git pull --quiet
-sh ./bootstrap
-./configure --prefix ${BOXDIR}/${WORKDIR}/emp4 ${CONFIGURE_OPTIONS}
-
-               ;;
-esac
-#
-# END PATCH
-#
-
-#
-# START BUILD
-#
-case "${NIGHTLY_SKIP_STEP}"
-in
-       *BUILD*) ;;
-       *)
-
-
-# Start the build
-echo "Building server"
-if make -k install >/dev/null
-then
-       warn "make did not return 0"
-fi
-echo "Done (make)."
-echo ""
-
-               ;;
-esac
-#
-# END BUILD
-#
-
-cd "${BOXDIR}/${WORKDIR}" || err "Could not cd to ${BOXDIR}/${WORKDIR}"
-# Try to run startup utilities
-for onetime in 1
-do
-       #
-       # START GENERATE
-       #
-       case "${NIGHTLY_SKIP_STEP}"
-       in
-               *GENERATE*) ;;
-               *)
-
-       if [ -d emp4 -a -d emp4/bin -a -d emp4/sbin -a -d emp4/var/empire ]
-       then
-               echo "Directory structure is ok"
-       else
-               warn "Directory structure is NOT ok"
-               break
-       fi
-
-       if [ ! -f emp4/etc/empire/schedule ]
-       then
-               warn "schedule file is missing"
-               break
-       fi
-
-       if [ ! -f emp4/etc/empire/econfig ]
-       then
-               warn "econfig file is missing"
-               break
-       fi
-
-       if ! emp4/sbin/pconfig >emp4/etc/empire/econfig
-       then
-               warn "pconfig failed to create econfig file"
-               break
-       fi
-echo "Applying global econfig patches from ${BOXDIR}/${WORKDIR}/empserver/src/scripts/nightly/patches/All"
-for i in "${BOXDIR}/${WORKDIR}/empserver/src/scripts/nightly/patches/All"/*.econfig
-do
-       [ -r "${i}" ] || continue
-       if "${i}" >>emp4/etc/empire/econfig
-       then
-               echo "${i}: OK"
-       else
-               echo "========== ${i}: NOT OK! ${?} =========="
-       fi
-done
-echo "Done (econfig patch All)."
-echo ""
-
-LOCALPATCHDIRECTORY="${BOXDIR}/${WORKDIR}/empserver/src/scripts/nightly/patches/${INSTANCE}"
-if [ -n "${LOCALPATCHDIRECTORY}" -a -d "${LOCALPATCHDIRECTORY}/." ]
-then
-       echo "Applying system specific econfig patches from ${LOCALPATCHDIRECTORY}:"
-       for i in "${LOCALPATCHDIRECTORY}"/*.econfig
-       do
-               [ -r "${i}" ] || continue
-               if "${i}" >>emp4/etc/empire/econfig
-               then
-                       echo "${i}: OK"
-               else
-                       echo "========== ${i}: NOT OK! ${?} =========="
-               fi
-       done
-       echo "Done (econfig patch specific)."
-       echo ""
-fi
-
-       cd emp4/bin || err "Could not cd to emp4/bin"
-
-       echo "Determining type of files in bin directory"
-       file *
-       echo "Done (file *)."
-       echo ""
-
-       cd ../sbin || err "Could not cd to ../sbin"
-
-       echo "Determining type of files in sbin directory"
-       file *
-       echo "Done (file *)."
-       echo ""
-
-       echo "Running files and fairland"
-       echo y | ./files -e ../etc/empire/econfig || warn "Error running files"
-       ./fairland -R 1 -e ../etc/empire/econfig 10 30 >/dev/null || { warn "Error running fairland" ; break ; }
-       [ -s "newcap_script" ] || { warn "fairland did not produce newcap_script" ; break ; }
-       echo "Done (files & fairland)."
-       echo ""
-
-                       ;;
-       esac
-       #
-       # END GENERATE
-       #
-
-       #
-       # START SERVERSTART
-       #
-       case "${NIGHTLY_SKIP_STEP}"
-       in
-               *SERVERSTART*) ;;
-               *)
-
-       echo "Removing existing server.log and journal.log"
-       if [ -f "../var/empire/server.log" ]
-       then
-           rm "../var/empire/server.log"
-       fi
-       if [ -f "../var/empire/journal.log" ]
-       then
-           rm "../var/empire/journal.log"
-       fi
-       echo "Removing existing schedule"
-       if [ -f "../etc/empire/schedule" ]
-       then
-           >../etc/empire/schedule
-       fi
-       echo "Starting server with -d in the background"
-       ./emp_server -R 1 -e ../etc/empire/econfig -d 2>/dev/null &
-       PID="$!"
-       sleep 1
-       kill -0 "${PID}" || { warn "emp_server not running ?" ; break ; }
-       echo "Done (emp_server)."
-       echo ""
-
-                       ;;
-       esac
-       #
-       # END SERVERSTART
-       #
-
-       #
-       # START GENERATE (2nd part)
-       #
-       case "${NIGHTLY_SKIP_STEP}"
-       in
-               *GENERATE*) ;;
-               *)
-
-export EMPIRE_PATH=${BOXDIR}/${WORKDIR}/emp4/bin
-       echo "Running newcap_script through empire"
-       runfeed POGO peter < newcap_script >/dev/null 2>&1 ||
-               {
-                       warn "Could not run newcap_script"
-                       echo "Stopping server"
-                       trykill $PID
-                       break
-               }
-       echo "Done (newcap_script / empire)."
-       echo ""
-
-                       ;;
-       esac
-       #
-       # END GENERATE (2nd part)
-       #
-
-       #
-       # START TESTSCRIPT
-       #
-       case "${NIGHTLY_SKIP_STEP}"
-       in
-               *TESTSCRIPT*) ;;
-               *)
-
-echo "Applying tests from ${BOXDIR}/${WORKDIR}/empserver/src/scripts/nightly/tests"
-cd ${BOXDIR}/${WORKDIR}/empserver/src/scripts/nightly/tests
-for i in *
-do
-       [ -d "$i" ] || continue
-       cd  "$i"
-       if [ "$i" -ne "00" ]
-       then
-               echo "Update Turn $i starting"
-               if ../update
-               then
-                       echo "Update Turn $i completed successfully"
-               else
-                       echo "Update Turn $i failed"
-               fi
-
-       fi
-       for j in *
-       do
-               [ -x "$j" ] || continue
-               echo "Player $j Turn $i starting"
-               if ./"$j"
-               then
-                       echo "Player $j Turn $i completed successfully"
-               else
-                       echo "Player $j Turn $i failed"
-               fi
-       done
-       cd ..
-done
-echo "Done tests."
-echo ""
-
-                       ;;
-       esac
-       #
-       # END TESTSCRIPT
-       #
-
-       #
-       # START SERVERSTOP
-       #
-       case "${NIGHTLY_SKIP_STEP}"
-       in
-               *SERVERSTOP*) ;;
-               *)
-                       case "${NIGHTLY_SKIP_STEP}"
-                       in
-                               *SERVERSTART*) ;;
-                               *)
-
-       echo "Stopping server"
-       trykill "${PID}"
-       echo "Done (kill)."
-cd "${BOXDIR}/${WORKDIR}/emp4/var/empire" || err "Could not cd to ${BOXDIR}/${WORKDIR}/emp4/var/empire"
-       echo "-- Start Server Log --"
-       cat server.log
-       echo "-- End of Server Log --"
-       echo "-- Start Journal Log --"
-       cat journal.log
-       echo "-- End of Journal Log --"
-       echo "Server stopped"
-                                       ;;
-                       esac
-                       ;;
-       esac
-       #
-       # END SERVERSTOP
-       #
-done
-
-#
-# START CLEANUP
-#
-case "${NIGHTLY_SKIP_STEP}"
-in
-       *CLEANUP*) ;;
-       *)
-
-echo "Cleaning sandbox"
-cd "${BOXDIR}" || err "Could not cd back to sandbox root !"
-case "${NIGHTLY_SKIP_STEP}"
-in
-       *REMOVE_REPOSITORY*)
-rm -rf `find "${WORKDIR}" -maxdepth 1 ! -name .git` || warn "Directory ${WORKDIR} could not be forcibly removed !"
-               ;;
-       *)
-rm -rf "${WORKDIR}" || warn "Directory ${WORKDIR} could not be forcibly removed !"
-[ -d "${WORKDIR}/." ] && warn "Directory ${WORKDIR} still present"
-               ;;
-esac
-echo "Done (cleaning)."
-               ;;
-esac
-#
-# END CLEANUP
-#
-
-echo "Nightly build finished at `date`"
-
-exit 0
diff --git a/src/scripts/nightly/patches/All/README b/src/scripts/nightly/patches/All/README
deleted file mode 100644 (file)
index 325faa0..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-Nota Bene:
-
-The patches in these directories are executed in alphabetical order. One
-patch could influence the other, by patching the same files for
-instance.
diff --git a/src/scripts/nightly/patches/All/emptime.c.patch b/src/scripts/nightly/patches/All/emptime.c.patch
deleted file mode 100644 (file)
index c56d692..0000000
+++ /dev/null
@@ -1,115 +0,0 @@
-diff --git a/include/emptime.h b/include/emptime.h
-new file mode 100644
-index 0000000..3c1eb7b
---- /dev/null
-+++ b/include/emptime.h
-@@ -0,0 +1,43 @@
-+/*
-+ *  Empire - A multi-player, client/server Internet based war game.
-+ *  Copyright (C) 1986-2013, Dave Pare, Jeff Bailey, Thomas Ruschak,
-+ *                Ken Stevens, Steve McClure, Markus Armbruster
-+ *
-+ *  Empire 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/>.
-+ *
-+ *  ---
-+ *
-+ *  See files README, COPYING and CREDITS in the root of the source
-+ *  tree for related information and legal notices.  It is expected
-+ *  that future projects/authors will amend these files as needed.
-+ *
-+ *  ---
-+ *
-+ *  emptime.h: Time functions for regression testing
-+ *
-+ *  Known contributors to this file:
-+ *     Ron Koenderink, 2008
-+ *     Markus Armbruster, 2012
-+ */
-+
-+#ifndef EMPTIME_H
-+#define EMPTIME_H
-+
-+#include <sys/time.h>
-+#include <time.h>
-+
-+extern time_t emp_time(time_t *, const char []);
-+extern int emp_gettimeofday(struct timeval *, void *);
-+
-+#endif
-diff --git a/src/lib/gen/emptime.c b/src/lib/gen/emptime.c
-new file mode 100644
-index 0000000..4461093
---- /dev/null
-+++ b/src/lib/gen/emptime.c
-@@ -0,0 +1,60 @@
-+/*
-+ *  Empire - A multi-player, client/server Internet based war game.
-+ *  Copyright (C) 1986-2013, Dave Pare, Jeff Bailey, Thomas Ruschak,
-+ *                Ken Stevens, Steve McClure, Markus Armbruster
-+ *
-+ *  Empire 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/>.
-+ *
-+ *  ---
-+ *
-+ *  See files README, COPYING and CREDITS in the root of the source
-+ *  tree for related information and legal notices.  It is expected
-+ *  that future projects/authors will amend these files as needed.
-+ *
-+ *  ---
-+ *
-+ *  emptime.c: Time functions for regression testing
-+ *
-+ *  Known contributors to this file:
-+ *     Ron Koenderink, 2008
-+ *     Markus Armbruster, 2012
-+ */
-+
-+#include <stdio.h>
-+#include <string.h>
-+#include "emptime.h"
-+
-+static time_t now = (time_t)100L;
-+
-+time_t
-+emp_time(time_t * time_ptr, const char function[])
-+{
-+    if (strcmp(function, "update_main") == 0)
-+      now += 100L;
-+
-+    if (time_ptr != NULL)
-+      *time_ptr = now;
-+
-+    return now;
-+}
-+
-+int
-+emp_gettimeofday(struct timeval *tv, void *tz)
-+{
-+    if (tv) {
-+      tv->tv_sec = now;
-+      tv->tv_usec = 0;
-+    }
-+    return 0;
-+}
diff --git a/src/scripts/nightly/patches/All/journal.econfig b/src/scripts/nightly/patches/All/journal.econfig
deleted file mode 100755 (executable)
index 4ae40f3..0000000
+++ /dev/null
@@ -1 +0,0 @@
-echo keep_journal 1
diff --git a/src/scripts/nightly/patches/All/pr.c.patch b/src/scripts/nightly/patches/All/pr.c.patch
deleted file mode 100644 (file)
index 7aefb1e..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-Index: empserver/src/lib/subs/pr.c
---- empserver/src/lib/subs/pr.c        18 Aug 2007 17:03:13 -0000      1.41
-+++ empserver/src/lib/subs/pr.c        9 Sep 2007 02:42:51 -0000
-@@ -351,7 +358,7 @@
- void
- prprompt(int min, int btu)
- {
--    pr_id(player, C_PROMPT, "%d %d\n", min, btu);
-+    pr_id(player, C_PROMPT, "0 640\n"); /* Hack for nightlybuild */
- }
-
- /*
diff --git a/src/scripts/nightly/patches/All/pre_update.econfig b/src/scripts/nightly/patches/All/pre_update.econfig
deleted file mode 100755 (executable)
index dd1e5ab..0000000
+++ /dev/null
@@ -1 +0,0 @@
-#echo pre_update_hook '"echo pre_update_hook executed here"'
diff --git a/src/scripts/nightly/patches/win32.i386/mingw.econfig b/src/scripts/nightly/patches/win32.i386/mingw.econfig
deleted file mode 100755 (executable)
index 17e25c9..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-echo data "$MINGW_DIR$BOXDIR/$INSTANCE/emp4/var/empire"
-echo info "$MINGW_DIR$BOXDIR/$INSTANCE/emp4/share/empire/info.nr"
-echo builtin "$MINGW_DIR$BOXDIR/$INSTANCE/emp4/share/empire/builtin"
diff --git a/src/scripts/nightly/report.sh b/src/scripts/nightly/report.sh
deleted file mode 100755 (executable)
index 622612d..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/bin/sh
-#
-# Generate report from the last two build logs
-#
-# Blame it on marcolz
-#
-
-INTERPRETER="$_"
-
-case "$INTERPRETER"
-in
-       */ksh|ksh)
-               ;;
-       *)
-               if  [ "`uname`" = "SunOS" ]
-               then
-                       exec ksh "$0" "$@"
-               fi
-       ;;
-esac
-
-PROGNAME="$0"
-
-usage() {
-       echo "Usage: ${PROGNAME} <configfile>" >&2;
-       exit 1;
-}
-
-[ $# -lt 1 ] && usage
-
-[ -f "$1" ] || usage
-
-# Source config file
-case "$1"
-in
-       */*)
-               . "$1"
-               ;;
-       *)
-               . ./"$1"
-               ;;
-esac
-
-[ -f "${SCRIPTDIR}/common.sh" ] || { echo "Broken config ?" >&2; exit 1; }
-. "${SCRIPTDIR}"/common.sh
-
-cd "${LOGDIR}" || err "Could not cd to ${LOGDIR}"
-
-BUILDTYPE="${INSTANCE}"
-[ -n "${EXTRASUFFIX}" ] && BUILDTYPE="${BUILDTYPE}.${EXTRASUFFIX}"
-
-echo "This was generated using: ${0} ${1}"
-echo ""
-echo "Sections: <diff> <full>"
-echo ""
-echo "Environment:"
-echo "uname -a: $(uname -a)"
-echo "gcc -v: $(gcc -v 2>&1)"
-echo ""
-echo "========================================="
-echo "===== Differences since last build: ====="
-echo "========================================="
-echo ""
-diff -u `ls "${BUILDTYPE}."* | tail -2`
-echo ""
-
-echo "========================================="
-echo "================ Full log: =============="
-echo "========================================="
-echo ""
-cat `ls "${BUILDTYPE}."* | tail -1`
diff --git a/src/scripts/nightly/tests/00/00 b/src/scripts/nightly/tests/00/00
deleted file mode 100755 (executable)
index 42cdd1b..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed POGO peter << EOF
-xdump meta sect
-xdump meta ship
-xdump meta plane
-xdump meta land
-xdump meta nuke
-xdump meta news
-xdump meta treaty
-xdump meta trade
-xdump meta nat
-xdump meta loan
-xdump meta commodity
-xdump meta lost
-xdump meta realm
-xdump meta game
-xdump meta item
-xdump meta product
-xdump meta sect-chr
-xdump meta ship-chr
-xdump meta plane-chr
-xdump meta land-chr
-xdump meta nuke-chr
-xdump meta news-chr
-xdump meta infrastructure
-xdump meta updates
-xdump meta table
-xdump meta version
-xdump meta meta
-xdump meta sector
-xdump meta agreement-status
-xdump meta land-chr-flags
-xdump meta level
-xdump meta meta-flags
-xdump meta meta-type
-xdump meta missions
-xdump meta nation-flags
-xdump meta nation-rejects
-xdump meta nation-relationships
-xdump meta nation-status
-xdump meta nuke-chr-flags
-xdump meta packing
-xdump meta page-headings
-xdump meta plague-stages
-xdump meta plane-chr-flags
-xdump meta plane-flags
-xdump meta resources
-xdump meta retreat-flags
-xdump meta ship-chr-flags
-xdump meta treaty-flags
-xdump meta country
-EOF
diff --git a/src/scripts/nightly/tests/00/01 b/src/scripts/nightly/tests/00/01
deleted file mode 100755 (executable)
index 11be302..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-xdump sect 0,0
-break
-expl c 0,0 1 uh
-expl c 2,0 1 jh
-expl c 2,0 1 uh
-expl c 2,0 1 nh
-expl c 2,0 1 bh
-expl c 0,0 1 yh
-expl c 0,0 1 gh
-expl c 0,0 1 bh
-desi * ?ne=- +
-expl c 2,0 1 njh
-expl c 2,0 1 nnh
-expl c 2,0 1 bnh
-expl c 0,0 1 bbh
-expl c 0,0 1 yyh
-expl c 0,0 1 yuh
-expl c 0,0 1 bnh
-expl c 2,0 1 yuh
-expl c 2,0 1 uuh
-expl c 2,0 1 juh
-desi * ?ne=- +
-expl c 2,0 1 nnnh
-expl c 2,0 1 nnjh
-expl c 2,0 1 njjh
-expl c 2,0 1 uujh
-expl c 0,0 1 bbnh
-expl c 0,0 1 bnnh
-expl c 0,0 1 yygh
-expl c 0,0 1 yuuh
-desi * ?ne=- +
-expl c 2,0 1 nnjjh
-desi * ?ne=- +
-expl c 2,0 1 nnjjjh
-desi * ?ne=- +
-mov u 0,0 75 jh
-demob 0:2,0 55 y
-desi 2,0 m
-mov c 0,0 600 -1,-1
-desi -1,-1 g
-mov c 0,0 275 1,-1
-mov c 2,0 274 1,-1
-desi 1,-1 m
-deliver i 2,0 230 u
-deliver i 1,-1 0 j
-dist 4,0 2,0
-thres i 2,0 1
-des 0,-2 c
-capital 0,-2
-des 0,0 g
-thres d 0,0 1
-EOF
diff --git a/src/scripts/nightly/tests/00/02 b/src/scripts/nightly/tests/00/02
deleted file mode 100755 (executable)
index 9fb9b9a..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 2 << EOF
-break
-expl c 0,0 1 uh
-desi 1,-1 +
-mov c 0,0 205 uh
-desi 1,-1 g
-cen *
-xdump meta sect
-xdump meta ship
-xdump meta plane
-xdump meta land
-xdump meta nuke
-xdump meta news
-xdump meta treaty
-xdump meta trade
-xdump meta nat
-xdump meta loan
-xdump meta commodity
-xdump meta lost
-xdump meta realm
-xdump meta game
-xdump meta item
-xdump meta product
-xdump meta sect-chr
-xdump meta ship-chr
-xdump meta plane-chr
-xdump meta land-chr
-xdump meta nuke-chr
-xdump meta news-chr
-xdump meta infrastructure
-xdump meta updates
-xdump meta table
-xdump meta version
-xdump meta meta
-xdump meta sector
-xdump meta agreement-status
-xdump meta land-chr-flags
-xdump meta level
-xdump meta meta-flags
-xdump meta meta-type
-xdump meta missions
-xdump meta nation-flags
-xdump meta nation-rejects
-xdump meta nation-relationships
-xdump meta nation-status
-xdump meta nuke-chr-flags
-xdump meta packing
-xdump meta page-headings
-xdump meta plague-stages
-xdump meta plane-chr-flags
-xdump meta plane-flags
-xdump meta resources
-xdump meta retreat-flags
-xdump meta ship-chr-flags
-xdump meta treaty-flags
-xdump meta country
-EOF
diff --git a/src/scripts/nightly/tests/00/03 b/src/scripts/nightly/tests/00/03
deleted file mode 100755 (executable)
index 13b5cf5..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 3 << EOF
-break
-expl c 0,0 1 uh
-desi 1,-1 +
-mov c 0,0 205 uh
-desi 1,-1 g
-cen *
-EOF
diff --git a/src/scripts/nightly/tests/00/04 b/src/scripts/nightly/tests/00/04
deleted file mode 100755 (executable)
index 1741ae8..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 4 << EOF
-break
-expl c 0,0 1 uh
-desi 1,-1 +
-mov c 0,0 205 uh
-desi 1,-1 g
-cen *
-EOF
diff --git a/src/scripts/nightly/tests/00/05 b/src/scripts/nightly/tests/00/05
deleted file mode 100755 (executable)
index 9b27206..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 5 << EOF
-break
-expl c 0,0 1 uh
-desi 1,-1 +
-mov c 0,0 205 uh
-desi 1,-1 g
-cen *
-EOF
diff --git a/src/scripts/nightly/tests/00/06 b/src/scripts/nightly/tests/00/06
deleted file mode 100755 (executable)
index 2a12ff2..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 6 << EOF
-break
-expl c 0,0 1 uh
-desi 1,-1 +
-mov c 0,0 205 uh
-desi 1,-1 g
-cen *
-EOF
diff --git a/src/scripts/nightly/tests/00/07 b/src/scripts/nightly/tests/00/07
deleted file mode 100755 (executable)
index 5366bca..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 7 << EOF
-break
-expl c 0,0 1 uh
-desi 1,-1 +
-mov c 0,0 205 uh
-desi 1,-1 g
-cen *
-EOF
diff --git a/src/scripts/nightly/tests/00/08 b/src/scripts/nightly/tests/00/08
deleted file mode 100755 (executable)
index 986c2f8..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-break
-expl c 0,0 1 uh
-desi 1,-1 +
-mov c 0,0 205 uh
-desi 1,-1 g
-cen *
-EOF
diff --git a/src/scripts/nightly/tests/00/09 b/src/scripts/nightly/tests/00/09
deleted file mode 100755 (executable)
index d91cc9a..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 9 << EOF
-break
-expl c 0,0 1 uh
-desi 1,-1 +
-mov c 0,0 205 uh
-desi 1,-1 g
-cen *
-EOF
diff --git a/src/scripts/nightly/tests/00/10 b/src/scripts/nightly/tests/00/10
deleted file mode 100755 (executable)
index 09106e9..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 10 << EOF
-break
-expl c 0,0 1 uh
-desi 1,-1 +
-mov c 0,0 205 uh
-desi 1,-1 g
-cen *
-EOF
diff --git a/src/scripts/nightly/tests/01/01 b/src/scripts/nightly/tests/01/01
deleted file mode 100755 (executable)
index 1c74624..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-real 0 -8:12,-4:4
-cen *
-map #
-read y
-EOF
diff --git a/src/scripts/nightly/tests/02/01 b/src/scripts/nightly/tests/02/01
deleted file mode 100755 (executable)
index 9bac433..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-desi -1,-1 b
-mov i 2,0 200 4,0
-mov i 1,-1 4 jh
-mov c -1,-1 300 4,0
-mov c -1,-1 300 3,-1
-mov c 1,-1 175 3,-1
-deli i 2,0 0 j
-deli i 1,-1 0 j
-mov c 2,0 230 5,-1
-desi 4,0 k
-desi 3,-1 j
-dist # 5,-1
-thre h 4,0 1
-thre l 3,-1 1
-desi 5,-1 h
-EOF
diff --git a/src/scripts/nightly/tests/03/01 b/src/scripts/nightly/tests/03/01
deleted file mode 100755 (executable)
index d8631e3..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-cen *
-map #
-read y
-build sh 5,-1 frg
-mov l 5,-1 102 6,-2
-mov c 4,0 255 6,-2
-desi 6,-2 l
-thre l 6,-2 150
-mov c 2,0 370 -2,2
-deliver i 2,0 0 j
-deliver i 1,-1 0 j
-thres d 1,1 1
-thres o -2,2 1
-thres i 2,0 0
-thres i 1,-1 0
-desi -2,2 o
-desi 1,1 g
-thres c -1:5,-1 768
-thres c -2:4,0 768
-thres c 6,-2 250
-thres c 4,-2 300
-thres l 4,-2 100
-thres o 4,-2 50
-thres d 4,-2 10
-thres d -1,-1 50
-thres c 1,1 768
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/03/08 b/src/scripts/nightly/tests/03/08
deleted file mode 100755 (executable)
index 491ef22..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-cen *
-map #
-read y
-exp c 0,0 50 gyyygh
-des -7,-3 )
-lost *
-EOF
diff --git a/src/scripts/nightly/tests/04/01 b/src/scripts/nightly/tests/04/01
deleted file mode 100755 (executable)
index 26a1e40..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-cen *
-ship *
-map #
-read y
-des 4,-2 t
-enlist 3,-1 50
-mov m 3,-1 50 5,-1
-load m 0 50
-nav 0
-j
-j
-h
-assault 11,-1 0
-25
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/04/08 b/src/scripts/nightly/tests/04/08
deleted file mode 100755 (executable)
index 3e2496b..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-cen *
-map #
-read y
-lost *
-EOF
diff --git a/src/scripts/nightly/tests/05/01 b/src/scripts/nightly/tests/05/01
deleted file mode 100755 (executable)
index 0bb6b92..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-real 0 -8:16,-4:4
-cen *
-ship *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/06/01 b/src/scripts/nightly/tests/06/01
deleted file mode 100755 (executable)
index 93eed5e..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-real 1 -16:24,-8:8
-convert 11,-1 76
-thres c -2,2 769
-mov c -2,2 47 0,2
-des 0:2,2 g
-thres d 0:2,2 1
-thres c 0:2,2 769
-des 3,1 g
-thres d 3,1 1
-thres c 3,1 769
-des 0,0 m
-deliver i 0,0 0 g
-thres d -1,-1 300
-thres d 0,0 0
-mov d 0,0 1 -1,-1
-thres c 0,-2 100
-thres c 4:6,-2 210
-thres c -1,-1 100
-thres i 4,0 999
-thres i 3,-1 999
-des -2,0 j
-thres c -2,0 769
-thres l -2,0 1
-bmap #1
-nav 0 njnh
-look 0
-radar 0
-radar 11,-1
-cen *
-ship *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/06/08 b/src/scripts/nightly/tests/06/08
deleted file mode 100755 (executable)
index 9918af5..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-exp c 0,0 1 gh
-exp c 0,0 1 yh
-exp c 0,0 1 ygh
-exp c 0,0 1 yyh
-exp c 0,0 1 yyyh
-exp c 0,0 1 yyyyh
-exp c 0,0 1 yygh
-exp c 0,0 1 yygyh
-exp c 0,0 1 yygyyh
-exp c 0,0 1 bh
-exp c 0,0 1 bgh
-exp c 0,0 1 nh
-exp c 0,0 1 njh
-exp c 0,0 1 yuh
-exp c 0,0 1 yuyh
-exp c 0,0 1 yuuh
-exp c 0,0 1 yuuyh
-exp c 2,0 1 jh
-exp c 2,0 1 jjh
-exp c 2,0 1 jjjh
-exp c 2,0 1 uh
-exp c 2,0 1 ujh
-exp c 2,0 1 ujjh
-exp c 2,0 1 uyh
-exp c 2,0 1 uuh
-exp c 2,0 1 uujh
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/07/01 b/src/scripts/nightly/tests/07/01
deleted file mode 100755 (executable)
index 565d1a2..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-build bridge 5,-1 j
-explore c 5,-1 1 jh
-mov c 5,-1 76 7,-1
-thres c 7,-1 77
-dist * 5,-1
-des 1,1 m
-deliver i 1,1 0 g
-thres d 1,1 0
-mov d 1,1 1 -1,-1
-des -1,1 k
-thres h -1,1 1
-thres c -1,1 769
-des -4:-2,-2 o
-thres o -4:-2,-2 1
-thres c -4:-2,-2 769
-des 1,-3 o
-thres o 1,-3 1
-thres c 1,-3 769
-des 4:8,2 g
-thres d 4:8,2 1
-thres c 4:8,2 769
-thres c * ?c_dist=768 769
-bmap #1
-radar 11,-1
-cen *
-ship *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/07/08 b/src/scripts/nightly/tests/07/08
deleted file mode 100755 (executable)
index 40ee9d8..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-des 7,-1 c
-capital 7,-1
-des * ?gold>1 g
-thres d * ?newdes=g 1
-thres d * ?des=g 1
-thres d 4,0 0
-thres d 1,-1 1
-des -5,-3 o
-thres o -5,-3 1
-des -6,-4 o
-thres o -6,-4 1
-des 1,-1 m
-thres i 1,-1 1
-des 3,1 w
-dist * 3,1
-thres c 0:2,0 769
-thres c 1,-1 769
-thres c 4,0 350
-thres c 3,-1 769
-mov c 2,0 231 jh
-mov c 0,0 231 jjh
-mov c 1,-1 231 jh
-bmap #
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/08/01 b/src/scripts/nightly/tests/08/01
deleted file mode 100755 (executable)
index ff44a87..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-des 0,2 m
-deliver i 0,2 0 j
-thres d 0,2 0
-mov d 0,2 1 -1,-1
-des 3,1 m
-deliver i 3,1 0 j
-thres d 3,1 0
-mov d 3,1 1 -1,-1
-des 2,2 k
-thres h 2,2 1
-thres d 2,2 0
-mov d 2,2 1 -1,-1
-thres d 4,-2 15
-thres o 4,-2 75
-thres l 4,-2 150
-des 5:7,1 g
-thres d 5:7,1 1
-thres c 5:7,1 769
-des 10,2 g
-thres d 10,2 1
-thres c 10,2 769
-radar 11,-1
-bmap #1
-cen *
-ship *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/08/08 b/src/scripts/nightly/tests/08/08
deleted file mode 100755 (executable)
index 4d5a7dd..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-thres c -3:-1,-1 769
-des 0:2,0 m
-thres i 0:2,0 1
-bmap #
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/09/01 b/src/scripts/nightly/tests/09/01
deleted file mode 100755 (executable)
index 9de0598..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-mov u 2,0 10 7,-1
-des -2,2 i
-thres l -2,2 600
-thres h -2,2 300
-thres s -2,2 1
-thres o -2,2 0
-mov o -2,2 1 4,-2
-thres c * ?des#= 769
-thres c -1:1,3 100
-bmap #1
-cen *
-ship *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/09/08 b/src/scripts/nightly/tests/09/08
deleted file mode 100755 (executable)
index f6c4a12..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-thres d 1,-1 0
-mov d 1,-1 1 4,0
-des 3,-1 m
-thres i 3,-1 1
-thres d 3,-1 0
-mov d 3,-1 1 4,0
-thres c -6,-4 769
-thres c 6,-2 769
-thres c 1,-3 769
-des 4,0 b
-thres d 4,0 300
-thres d 0:2,0 0
-mov d 0,0 1 4,0
-mov d 2,0 1 4,0
-thres i -3,-1 999
-bmap #
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/10/01 b/src/scripts/nightly/tests/10/01
deleted file mode 100755 (executable)
index 691582e..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-mov h 5,-1 100 7,-1
-build bridge 7,-1 j
-explore c 7,-1 1 jh
-thres c 9,-1 77
-mov u 7,-1 12 4,0
-thres u 2,0 579
-thres u 4,0 869
-thres i 4,0 1200
-thres u 11,-1 1
-thres l 6,-2 250
-des 7,1 d
-thres l 7,1 200
-thres h 7,1 100
-thres o 7,1 20
-thres g 7,1 1
-thres d 7,1 0
-mov d 7,1 1 -1,-1
-des 5,1 j
-thres l 5,1 1
-thres d 5,1 0
-mov d 5,1 1 -1,-1
-des 4,2 r
-thres l 4,2 100
-thres o 4,2 50
-thres d 4,2 10
-des 6,2 w
-thres d 6,2 0
-mov d 6,2 1 -1,-1
-des 8,2 e
-thres d 8,2 0
-mov d 8,2 1 -1,-1
-thres m 8,2 1
-des 10,2 !
-thres l 10,2 200
-thres h 10,2 200
-thres s 10,2 200
-thres g 10,2 25
-thres d 10,2 0
-mov d 10,2 1 -1,-1
-des 5,3 p
-thres l 5,3 75
-dist #1 5,-1
-thres c -1:1,3 769
-spy 11,-1
-bmap #1
-cen *
-ship *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/10/08 b/src/scripts/nightly/tests/10/08
deleted file mode 100755 (executable)
index d2487f5..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-des -3,-1 j
-thres i -3,-1 999
-thres l -3,-1 1
-thres c 6,0 769
-thres d -3,-1 0
-mov d -3,-1 1 4,0
-thres l 1,-3 300
-thres i -1,1 999
-thres i 0,-4 999
-bmap #
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/11/01 b/src/scripts/nightly/tests/11/01
deleted file mode 100755 (executable)
index f64732b..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-thres l 6,-2 300
-thres l 5,-1 200
-thres h 5,-1 200
-thres i 5,-1 1
-thres o 5,-1 1
-thres d 5,-1 1
-dist #1 6,2
-build l 10,2 cav
-bmap #1
-cen *
-ship *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/11/08 b/src/scripts/nightly/tests/11/08
deleted file mode 100755 (executable)
index 18aec92..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-des -1,-1 m
-thres i -1,-1 1
-thres d -1,-1 0
-mov d -1,-1 1 4,0
-des 1,-3 l
-des -1,1 j
-thres l -1,1 1
-des 0,-4 k
-thres h 0,-4 1
-thres d 1,-3 0
-thres l 6,-2 300
-thres o 6,-2 150
-thres d 6,-2 30
-thres l 8,0 600
-thres h 8,0 300
-thres c -3:-1,1 769
-thres c 0,-4 769
-thres c 8,0 769
-bmap #
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/12/01 b/src/scripts/nightly/tests/12/01
deleted file mode 100755 (executable)
index 05e6244..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-build l 10,2 cav 5
-build sh 5,-1 cs 3
-thres m 10,2 25
-thres i -4:-2,-2 999
-thres i 1,-3 999
-bmap #1
-cen *
-ship *
-land *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/12/08 b/src/scripts/nightly/tests/12/08
deleted file mode 100755 (executable)
index fea65f1..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-des 6,-2 t
-des 6,0 h
-thres d 6,0 0
-thres l 6,0 200
-thres h 6,0 200
-des 8,0 i
-thres s 8,0 1
-thres c 4,0 400
-thres c -2:4,-2 769
-thres i 4,-2 999
-des 4,-2 j
-thres i -3,1 999
-bmap #
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/13/01 b/src/scripts/nightly/tests/13/01
deleted file mode 100755 (executable)
index d1c3fa3..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-des -2,-2 j
-thres l -2,-2 1
-des -4,-2 k
-thres h -4,-2 1
-thres o -4:-2,-2 0
-des 1,-3 j
-thres l 1,-3 1
-thres o 1,-3 0
-des -1,3 o
-thres o -1,3 1
-des 2,2 m
-thres i 2,2 1
-thres h 2,2 0
-des 3,-1 m
-thres l 3,-1 0
-thres i 3,-1 1
-thres l 6,-2 400
-radar 11,-1
-lload m 0 20
-lload m 1/2/3 1
-march 0/1/2/3 5,-1
-load m 1 25
-load c 1 300
-load l 1 100
-load h 1 100
-load c 2 10
-load c 3 10
-load land 1 0
-load land 2 1
-load land 3 2
-load land 3 3
-build l 10,2 art
-nav 2 nh
-scrap l 1
-y
-scrap s 2
-y
-scuttle l 1
-y
-scuttle s 2
-y
-comm 5,-1
-scrap l 2
-y
-comm 5,-1
-scrap s 3
-y
-comm 5,-1
-thres i 5,-1 0
-thres d 5,-1 0
-thres o 5,-1 0
-bmap #1
-cen *
-ship *
-land *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/13/02 b/src/scripts/nightly/tests/13/02
deleted file mode 100755 (executable)
index 07c26b5..0000000
+++ /dev/null
@@ -1,93 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 2 << EOF
-explore c 2,0  1 uh
-explore c 2,0  1 jh
-explore c 2,0  1 bh
-explore c 2,0  1 nh
-des * ?des=- +
-explore c 2,0  1 yuh
-explore c 2,0  1 ygh
-explore c 2,0  1 juh
-explore c 2,0  1 ggh
-explore c 2,0  1 bgh
-explore c 2,0  1 bbh
-explore c 2,0  1 bnh
-des * ?des=- +
-explore c 2,0  1 jujh
-explore c 2,0  1 gggh
-explore c 2,0  1 bggh
-explore c 2,0  1 bbgh
-explore c 2,0  1 bbbh
-explore c 2,0  1 bbnh
-explore c 2,0  1 bnnh
-des * ?des=- +
-explore c 2,0  1 gggyh
-explore c 2,0  1 ggggh
-explore c 2,0  1 bgggh
-explore c 2,0  1 bbggh
-explore c 2,0  1 bbbgh
-des * ?des=- +
-explore c 2,0  1 gggyuh
-des * ?des=- +
-explore c 0,0  1 yh
-explore c 0,0  1 gh
-explore c 0,0  1 bh
-explore c 0,0  1 nh
-des * ?des=- +
-explore c 0,0  1 uuh
-explore c 0,0  1 juh
-explore c 0,0  1 ggh
-explore c 0,0  1 jjh
-explore c 0,0  1 bgh
-explore c 0,0  1 jnh
-explore c 0,0  1 bbh
-explore c 0,0  1 bnh
-explore c 0,0  1 nnh
-des * ?des=- +
-explore c 0,0  1 ggyh
-explore c 0,0  1 jjuh
-explore c 0,0  1 gggh
-explore c 0,0  1 bggh
-explore c 0,0  1 bbgh
-explore c 0,0  1 bbbh
-explore c 0,0  1 bbnh
-explore c 0,0  1 bnnh
-explore c 0,0  1 nnnh
-des * ?des=- +
-explore c 0,0  1 ggyyh
-explore c 0,0  1 ggyuh
-explore c 0,0  1 ggygh
-explore c 0,0  1 jjujh
-explore c 0,0  1 bgggh
-des * ?des=- +
-designate 2,-2 c
-capital 2,-2
-des * ?gold>10 g
-thres d * ?gold>10 1
-des  -1,-1 o
-thres o -1,-1 1
-des 1,-1 b
-thres d 1,-1 300
-thres c * ?des#+ 769
-thres c -4,-2 230
-thres c 2,-2 50
-thres c 1,-1 385
-thres c 3,-1 300
-thres c 5,-1 600
-des -4,-2 w
-distr * 1,-1
-mov c 1,1 231 -4,-2
-demob 0:2,0 55
-y
-mov c 0,0 260 3,-1
-mov c 2,0 165 3,-1
-mov c 2,0 100 5,-1
-thres u 0:2,0 579
-thres u -5,-1 579
-bmap #1
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/13/08 b/src/scripts/nightly/tests/13/08
deleted file mode 100755 (executable)
index 319450c..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-thres c -2,0 769
-thres c 1,1 769
-thres c 5,-1 769
-thres c -5,-3 769
-thres c -4,-2 769
-thres c -1,-3 769
-thres u -1:3,-1 512
-thres u 0:2,0 512
-thres d -3,1 0
-thres l -3,1 1
-thres i 2,-2 999
-des 2,-2 k
-thres h 2,-2 1
-des -3,1 j
-bmap #
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/14/01 b/src/scripts/nightly/tests/14/01
deleted file mode 100755 (executable)
index 0c577c7..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-lload m 4/5 5
-lload s 5 200
-lload g 5 20
-march 4/5 ggyyh
-thres l 6,-2 450
-des 11,-1 *
-thres l 11,-1 200
-thres h 11,-1 200
-thres p 11,-1 200
-thres u 3:5,1 579
-des 2,-2 o
-build s 5,-1 tk
-load c 2 200
-telegram 2
-Want an alliance?
-.
-declare war 8
-declare alliance 2
-bmap #1
-cen *
-ship *
-land *
-plane *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/14/02 b/src/scripts/nightly/tests/14/02
deleted file mode 100755 (executable)
index 27cd4a1..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 2 << EOF
-des 0:2,0 m
-thres i 0:2,0 1
-thres i -5,-1 999
-dist * -4,-2
-thres o 4,0 1
-wall
-Sure
-.
-declare alliance 1
-declare hostile 8
-wire y
-announce
-Hello World
-.
-wire y
-flash 1 Testing Flash
-bmap #1
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/14/08 b/src/scripts/nightly/tests/14/08
deleted file mode 100755 (executable)
index c4aafd7..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-thres c * 769
-thres i -2:0,-2 1
-des -2:0,-2 m
-thres d -2:2,-2 0
-thres o 5,-1 10
-thres l 5,-1 50
-thres h 5,-1 100
-thres h -6,-4 100
-declare war 1
-declare hostile 2
-wire y
-bmap #
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/15/01 b/src/scripts/nightly/tests/15/01
deleted file mode 100755 (executable)
index 69560fa..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-build p 11,-1 f1 3
-thres s 11,-1 200
-thres p 11,-1 200
-des 2,-2 %
-thres p 2,-2 1
-thres s 5,-1 200
-thres g 5,-1 10
-thres d -1,-1 0
-thres c * 0
-march 4/5 ujjjh
-build s 5,-1 od
-load c 3 200
-build s 5,-1 ft
-load c 4 200
-bmap #1
-cen *
-ship *
-land *
-plane *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/15/02 b/src/scripts/nightly/tests/15/02
deleted file mode 100755 (executable)
index af0204a..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 2 << EOF
-des -5,-1 j
-thres l -5,-1 1
-thres l 3,-1 300
-thres c 5,-1 769
-thres i 5,-1 999
-thres c 7,-1 400
-bmap #1
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/15/08 b/src/scripts/nightly/tests/15/08
deleted file mode 100755 (executable)
index 001b5ee..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-des 5,-1 d
-thres g 5,-1 1
-des -6,-4 f
-thres g -6,-4 7
-thres s -6,-4 200
-des -4,-2 *
-thres l -4,-2 200
-thres h -4,-2 200
-thres s -4,-2 200
-thres d -4,-2 0
-des -1,-3 !
-thres l -1,-3 200
-thres h -1,-3 200
-thres s -1,-3 200
-thres g -1,-3 10
-thres d -1,-3 0
-des -2,0 p
-thres d -2,0 0
-thres l -2,0 75
-des 1,1 k
-thres i 1,1 999
-thres h 1,1 1
-thres l 1,-3 400
-mov m 0,0 55 -6,-4
-bmap #
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/16/01 b/src/scripts/nightly/tests/16/01
deleted file mode 100755 (executable)
index ca98b4d..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 << EOF
-mov c 1,-1 230 jjh
-mov c 3,-1 230 jh
-mov c 2,-2 230 njh
-mov c 4,-2 230 nh
-mov c 6,-2 230 bh
-load c 3/4 999
-nav 3 6,0
-h
-nav 3 vh
-order 3 des 5,-1 6,0
-order 3 level 1 end oil 1
-nav 4 nvh
-order 4 des 5,-1 6,0
-order 4 level 1 start food 30
-order 4 level 1 end food 30
-reco 0 . 11,-1 ujbgh
-bomb 1 . stat 11,-1 ujh
-mission p 2 o . 2
-fire l 5 12,-2
-attack 12,-2 0 0 0 0
-0
-N
-attack 12,-2
-1
-y
-bmap #1
-cen *
-ship *
-land *
-plane *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/16/02 b/src/scripts/nightly/tests/16/02
deleted file mode 100755 (executable)
index 73ebd39..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 2 << EOF
-des 3,-1 l
-thres d 3,-1 0
-des 5,-1 k
-thres d 5,-1 0
-thres h 5,-1 1
-thres c 7,-1 769
-thres i 7,-1 999
-thres l -6,0 300
-thres o -6,0 150
-thres d -6,0 30
-thres c -6,0 400
-bmap #1
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/16/08 b/src/scripts/nightly/tests/16/08
deleted file mode 100755 (executable)
index 593352f..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 8 << EOF
-des -4,-4 o
-thres o -4,-4 1
-thres o -5,-3 0
-bmap #
-cen *
-map #
-read y
-prod *
-EOF
diff --git a/src/scripts/nightly/tests/99/00 b/src/scripts/nightly/tests/99/00
deleted file mode 100755 (executable)
index c841d75..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed POGO peter << EOF
-xdump sect 0,0
-xdump ship *
-xdump plane *
-xdump land *
-xdump nuke *
-xdump news *
-xdump treaty *
-xdump trade *
-xdump nat *
-xdump loan *
-xdump commodity *
-xdump lost *
-xdump realm 0
-xdump game *
-xdump item *
-xdump product *
-xdump sect-chr *
-xdump ship-chr *
-xdump plane-chr *
-xdump land-chr *
-xdump nuke-chr *
-xdump news-chr *
-xdump infrastructure *
-xdump updates *
-xdump table *
-xdump version *
-xdump meta *
-xdump sector *
-xdump agreement-status *
-xdump land-chr-flags *
-xdump level *
-xdump meta-flags *
-xdump meta-type *
-xdump missions *
-xdump nation-flags *
-xdump nation-rejects *
-xdump nation-relationships *
-xdump nation-status *
-xdump nuke-chr-flags *
-xdump packing *
-xdump page-headings *
-xdump plague-stages *
-xdump plane-chr-flags *
-xdump plane-flags *
-xdump resources *
-xdump retreat-flags *
-xdump ship-chr-flags *
-xdump treaty-flags *
-xdump country *
-EOF
diff --git a/src/scripts/nightly/tests/99/01 b/src/scripts/nightly/tests/99/01
deleted file mode 100755 (executable)
index 1a9306c..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed 1 1 << EOF
-xdump sect 0,0
-xdump ship *
-xdump plane *
-xdump land *
-xdump nuke *
-xdump news *
-xdump treaty *
-xdump trade *
-xdump nat *
-xdump loan *
-xdump commodity *
-xdump lost *
-xdump realm *
-xdump game *
-xdump item *
-xdump product *
-xdump sect-chr *
-xdump ship-chr *
-xdump plane-chr *
-xdump land-chr *
-xdump nuke-chr *
-xdump news-chr *
-xdump infrastructure *
-xdump updates *
-xdump table *
-xdump version *
-xdump meta *
-xdump sector *
-xdump agreement-status *
-xdump land-chr-flags *
-xdump level *
-xdump meta-flags *
-xdump meta-type *
-xdump missions *
-xdump nation-flags *
-xdump nation-rejects *
-xdump nation-relationships *
-xdump nation-status *
-xdump nuke-chr-flags *
-xdump packing *
-xdump page-headings *
-xdump plague-stages *
-xdump plane-chr-flags *
-xdump plane-flags *
-xdump resources *
-xdump retreat-flags *
-xdump ship-chr-flags *
-xdump treaty-flags *
-xdump country *
-EOF
diff --git a/src/scripts/nightly/tests/update b/src/scripts/nightly/tests/update
deleted file mode 100755 (executable)
index 627069d..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-. "${SCRIPTDIR}"/common.sh
-runfeed POGO peter << EOF
-power new
-report *
-cen * ?own#0
-comm * ?own#0
-reso * ?own#0
-force
-EOF
-sleep 10
diff --git a/tests/normalize.pl b/tests/normalize.pl
new file mode 100755 (executable)
index 0000000..4c4f5ee
--- /dev/null
@@ -0,0 +1,129 @@
+#!/usr/bin/perl
+
+# TODO Don't hardcode xdump columns, get them from xdump meta
+
+use warnings;
+use strict;
+use Getopt::Std;
+
+$Getopt::Std::STANDARD_HELP_VERSION = 1;
+our ($opt_j, $opt_s);
+getopts('js')
+    or die "$0: invalid options\n";
+die "$0: either -j or -s, not both\n"
+    if $opt_j && $opt_s;
+
+my $ctime_re = qr/(Sun|Mon|Tue|Wed|Thu|Fri|Sat) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) [ 123][0-9] [0-2][0-9]:[0-5][0-9]:[0-6][0-9] [0-9][0-9][0-9][0-9]/;
+my $xdfld_re = qr/\([^)]*\)|[^ (][^ ]*/;
+
+# Current dump, if any
+# Either zero or the name of the dump we're currently processing.
+# Legacy dump names start with an uppercase letter, and xdump names
+# start with a lowercase letter.
+my $dump = "";
+
+sub norm_ctime {
+    my ($s) = @_;
+    $s =~ s/$ctime_re/Thu Jan  1 00:00:00 1970/g;
+    return $s;
+}
+
+while (<>) {
+    chomp;
+
+    my $pfx = '';
+
+    if ($opt_j || $opt_s) {
+       die "$0: malformed line" unless substr($_, 24, 1) eq ' ';
+       $pfx .= norm_ctime(substr($_, 0, 25));
+       $_ = substr($_, 25);
+    }
+
+    if ($opt_j) {
+       die "$0: malformed line" unless substr($_, 10, 1) eq ' ';
+       $pfx .= substr($_, 0, 11);
+       $_ = substr($_, 11);
+       if (/(^output [^ ]* 1 )(.*)/) {
+           $pfx .= $1;
+           $_ = $2;
+       } else {
+           $pfx .= $_;
+           $_ = '';
+       }
+    }
+
+    if ($opt_s) {
+       $_ = norm_ctime($_);
+       ### Host environment in logs
+       # getrusage() results in server.log
+       s/(End update|done assembling paths) .* user .* system/$1 0.0 user 0.0 system/g;
+       # PID in server.log
+       s/(Empire server \(pid) [0-9]+(\) started)/$1 42$2/g;
+       ### Harmless races
+       # shutdown wins race with logout
+       next if /Waiting for player threads to terminate/;
+       print "$pfx$_\n";
+       next;
+    }
+
+    $dump = ""
+       if ($dump =~ /^[a-z]/
+           and /^\//)
+       or ($dump =~ /^[A-Z]/
+           and (/\: No (sector|ship|plane|unit|nuke)\(s\)|\: Nothing lost/
+                or /^[0-9]+ (sector|ship|plane|unit|nuke|lost item)/));
+
+    ### Formatted time
+    # nat_timeused in prompt
+    s/^\[[0-9]+(:[0-9]+\] Command \:)/[0$1/g;
+    # TODO command play column time
+    # result of ctime() in many commands
+    $_ = norm_ctime($_)
+       unless $dump;
+    ### Time values in legacy dumps
+    s/(DUMP (SECTOR|SHIPS|PLANES|LAND UNITS|NUKES|LOST ITEMS)) [0-9]+$/$1 0/g;
+    s/ [0-9]+$/ 0/
+       if $dump eq 'LOST ITEMS';
+    ### Time values in xdump
+    s/(XDUMP (meta )?[-a-z0-9]+) [0-9]+$/$1 0/
+       unless $dump;
+    # HACK: assume any integer with more than 10 digits is time
+    # TODO don't do that, use xdump meta instead
+    s/(^| )[0-9]{10,}/${1}0/g
+       if $dump =~ /^[a-z]/;
+    # timeused in xdump country (column 9)
+    s/^(($xdfld_re ){9})([0-9]+) /${1}255 /
+       if $dump eq 'country';
+    # timeused in xdump nat (column 14)
+    s/^(($xdfld_re ){14})([0-9]+) /${1}255 /
+       if $dump eq 'nat';
+    # duration in xdump news (column 4)
+    s/^(($xdfld_re ){4})([0-9]+) /${1}0 /
+       if $dump eq 'news';
+    ### nsc_type values in xdump
+    # Can vary between systems, because the width of enumeration types
+    # is implementation-defined.
+    # TODO type in xdump meta
+    ### nrndx values in xdump
+    # Encoding depends on the host, see resources[].  Too clever by half;
+    # perhaps we should change it.
+    # nrndx in xdump product (column 12)
+    s/^(($xdfld_re ){12})([0-9]+) /${1}0 /
+       if $dump eq 'product';
+    # value in xdump resources (column 0)
+    s/^[0-9]+ /0 /
+       if $dump eq 'resources';
+    ### Floating-point zero in xdump
+    # Windows %#g prints it with seven significant digits instead of six
+    s/ 0\.000000/ 0.00000/g
+       if $dump =~ /^[a-z]/;
+
+    print "$pfx$_\n";
+
+    if (/XDUMP (meta )?([-a-z0-9]+)/) {
+       $dump = $2;
+       die unless $dump =~ /^[a-z]/;
+    } elsif (/DUMP (SECTOR|SHIPS|PLANES|LAND UNITS|NUKES|LOST ITEMS) /) {
+       $dump = $1;
+    }
+}
diff --git a/tests/smoke-test b/tests/smoke-test
new file mode 100755 (executable)
index 0000000..7344ccf
--- /dev/null
@@ -0,0 +1,132 @@
+#!/bin/sh -e
+# Smoke test for Empire
+
+if [ $# -ne 1 ]
+then echo "Usage: $0 SRCDIR" >&2; exit 1
+fi
+
+srcdir="$1"
+
+export EMPIREHOST=127.0.0.1 LOGNAME=tester
+
+if [ -x ./config.status ] && ./config.status --version | grep -q '^Wolfpack Empire'
+then :
+else echo "$0: Must be run in root of build tree" >&2; exit 1
+fi
+
+#
+# Currently expected to work only with thread package LWP and a
+# random() that behaves exactly like the one on my development system,
+# because:
+# 
+# - Thread scheduling is reliably deterministic only with LWP
+# - The PRN sequence produced by random() isn't portable
+# - Shell builtin kill appears not to do the job in MinGW
+# - The Windows server tries to run as service when -d isn't
+#   specified
+#
+# TODO address these shortcomings.
+#
+if [ "`uname -s`" != "Linux" ] # lame approx. of "random() behaves like mine"
+then echo "Warning: smoke test not expected to work on this system!" >&2
+elif [ `sed -n 's/empthread *:= *\(.*\)/\1/p' <GNUmakefile` != LWP ]
+then echo "Warning: smoke test not expected to work with this thread package!" >&2
+fi
+
+# Create sandbox
+rm -rf sandbox
+mkdir -p sandbox/etc/empire sandbox/share/empire/builtin sandbox/var/empire
+touch sandbox/etc/empire/schedule
+cat >sandbox/etc/empire/econfig <<EOF
+data "../../var/empire"
+info "../../../../info.nr"
+builtin "../../share/empire/builtin"
+listen_addr "$EMPIREHOST"
+keep_journal 1
+EOF
+cp "$srcdir"/src/lib/global/*.config sandbox/share/empire/builtin
+
+exec 3>sandbox/smoke.out
+
+pid=
+trap 'if [ "$pid" ]; then kill "$pid" 2>/dev/null || true; fi' EXIT
+
+# Create world and start server
+src/util/files -e sandbox/etc/empire/econfig -f >&3
+src/util/fairland -e sandbox/etc/empire/econfig -q -s sandbox/newcap_script -R 1 10 30
+src/server/emp_server -e sandbox/etc/empire/econfig -R 1
+while src/client/empire red herring 2>&1 | grep -q "Connection refused"
+do :                           # FIXME hangs here if server crashes on startup
+done
+pid=`cat sandbox/var/empire/server.pid`
+src/client/empire POGO peter <sandbox/newcap_script >/dev/null
+
+# Feed player input
+need_update=
+for i in "$srcdir"/tests/smoke/[0-9]*
+do
+    t="${i##*/}"
+    if [ "$need_update" ]
+    then
+       echo "Update Turn $t starting" >&3
+       src/client/empire POGO peter <<EOF >&3
+power new
+report *
+cen * ?own#0
+comm * ?own#0
+reso * ?own#0
+force
+EOF
+       echo "Update Turn $t completed successfully" >&3
+    fi
+    for j in "$i"/*
+    do
+       p="${j##*/}"
+       echo "Player $p Turn $t starting" >&3
+       if [ $p -eq 0 ]
+       then c=POGO r=peter
+       else c="${p#0}"; r="$c"
+       fi
+       sed '1,3d;$d' <$j | src/client/empire "$c" "$r" >&3
+       echo "Player $p Turn $t completed successfully" >&3
+    done
+    need_update=y
+done
+
+# Stop server
+kill "$pid"
+while kill -0 "$pid" 2>/dev/null
+do :                           # FIXME hangs here if server fails to exit
+done
+
+exec 3>&-
+
+# Smoke test completed; compare results
+
+cmp_out()
+{
+    local opt exp act nrm msg ret=0
+    for i
+    do
+       case "$i" in
+           */journal.log) opt=-j ;;
+           */server.log)  opt=-s ;;
+           *)             opt= ;;
+       esac
+       exp="$srcdir/tests/smoke/${i##*/}"
+       act="sandbox/$i"
+       nrm="sandbox/normalized-${i##*/}"
+       perl "$srcdir"/tests/normalize.pl $opt "$act" >"$nrm"
+       if msg=`diff -q "$exp" "$nrm"`
+       then
+           echo "$exp OK"
+       else
+           ret=$?
+           echo "$exp FAIL"
+           echo $msg
+       fi
+    done
+    return $ret
+}
+
+cmp_out smoke.out var/empire/server.log var/empire/journal.log
diff --git a/tests/smoke/00/00 b/tests/smoke/00/00
new file mode 100644 (file)
index 0000000..42cdd1b
--- /dev/null
@@ -0,0 +1,53 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed POGO peter << EOF
+xdump meta sect
+xdump meta ship
+xdump meta plane
+xdump meta land
+xdump meta nuke
+xdump meta news
+xdump meta treaty
+xdump meta trade
+xdump meta nat
+xdump meta loan
+xdump meta commodity
+xdump meta lost
+xdump meta realm
+xdump meta game
+xdump meta item
+xdump meta product
+xdump meta sect-chr
+xdump meta ship-chr
+xdump meta plane-chr
+xdump meta land-chr
+xdump meta nuke-chr
+xdump meta news-chr
+xdump meta infrastructure
+xdump meta updates
+xdump meta table
+xdump meta version
+xdump meta meta
+xdump meta sector
+xdump meta agreement-status
+xdump meta land-chr-flags
+xdump meta level
+xdump meta meta-flags
+xdump meta meta-type
+xdump meta missions
+xdump meta nation-flags
+xdump meta nation-rejects
+xdump meta nation-relationships
+xdump meta nation-status
+xdump meta nuke-chr-flags
+xdump meta packing
+xdump meta page-headings
+xdump meta plague-stages
+xdump meta plane-chr-flags
+xdump meta plane-flags
+xdump meta resources
+xdump meta retreat-flags
+xdump meta ship-chr-flags
+xdump meta treaty-flags
+xdump meta country
+EOF
diff --git a/tests/smoke/00/01 b/tests/smoke/00/01
new file mode 100644 (file)
index 0000000..11be302
--- /dev/null
@@ -0,0 +1,55 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+xdump sect 0,0
+break
+expl c 0,0 1 uh
+expl c 2,0 1 jh
+expl c 2,0 1 uh
+expl c 2,0 1 nh
+expl c 2,0 1 bh
+expl c 0,0 1 yh
+expl c 0,0 1 gh
+expl c 0,0 1 bh
+desi * ?ne=- +
+expl c 2,0 1 njh
+expl c 2,0 1 nnh
+expl c 2,0 1 bnh
+expl c 0,0 1 bbh
+expl c 0,0 1 yyh
+expl c 0,0 1 yuh
+expl c 0,0 1 bnh
+expl c 2,0 1 yuh
+expl c 2,0 1 uuh
+expl c 2,0 1 juh
+desi * ?ne=- +
+expl c 2,0 1 nnnh
+expl c 2,0 1 nnjh
+expl c 2,0 1 njjh
+expl c 2,0 1 uujh
+expl c 0,0 1 bbnh
+expl c 0,0 1 bnnh
+expl c 0,0 1 yygh
+expl c 0,0 1 yuuh
+desi * ?ne=- +
+expl c 2,0 1 nnjjh
+desi * ?ne=- +
+expl c 2,0 1 nnjjjh
+desi * ?ne=- +
+mov u 0,0 75 jh
+demob 0:2,0 55 y
+desi 2,0 m
+mov c 0,0 600 -1,-1
+desi -1,-1 g
+mov c 0,0 275 1,-1
+mov c 2,0 274 1,-1
+desi 1,-1 m
+deliver i 2,0 230 u
+deliver i 1,-1 0 j
+dist 4,0 2,0
+thres i 2,0 1
+des 0,-2 c
+capital 0,-2
+des 0,0 g
+thres d 0,0 1
+EOF
diff --git a/tests/smoke/00/02 b/tests/smoke/00/02
new file mode 100644 (file)
index 0000000..9fb9b9a
--- /dev/null
@@ -0,0 +1,59 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 2 << EOF
+break
+expl c 0,0 1 uh
+desi 1,-1 +
+mov c 0,0 205 uh
+desi 1,-1 g
+cen *
+xdump meta sect
+xdump meta ship
+xdump meta plane
+xdump meta land
+xdump meta nuke
+xdump meta news
+xdump meta treaty
+xdump meta trade
+xdump meta nat
+xdump meta loan
+xdump meta commodity
+xdump meta lost
+xdump meta realm
+xdump meta game
+xdump meta item
+xdump meta product
+xdump meta sect-chr
+xdump meta ship-chr
+xdump meta plane-chr
+xdump meta land-chr
+xdump meta nuke-chr
+xdump meta news-chr
+xdump meta infrastructure
+xdump meta updates
+xdump meta table
+xdump meta version
+xdump meta meta
+xdump meta sector
+xdump meta agreement-status
+xdump meta land-chr-flags
+xdump meta level
+xdump meta meta-flags
+xdump meta meta-type
+xdump meta missions
+xdump meta nation-flags
+xdump meta nation-rejects
+xdump meta nation-relationships
+xdump meta nation-status
+xdump meta nuke-chr-flags
+xdump meta packing
+xdump meta page-headings
+xdump meta plague-stages
+xdump meta plane-chr-flags
+xdump meta plane-flags
+xdump meta resources
+xdump meta retreat-flags
+xdump meta ship-chr-flags
+xdump meta treaty-flags
+xdump meta country
+EOF
diff --git a/tests/smoke/00/03 b/tests/smoke/00/03
new file mode 100644 (file)
index 0000000..13b5cf5
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 3 << EOF
+break
+expl c 0,0 1 uh
+desi 1,-1 +
+mov c 0,0 205 uh
+desi 1,-1 g
+cen *
+EOF
diff --git a/tests/smoke/00/04 b/tests/smoke/00/04
new file mode 100644 (file)
index 0000000..1741ae8
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 4 << EOF
+break
+expl c 0,0 1 uh
+desi 1,-1 +
+mov c 0,0 205 uh
+desi 1,-1 g
+cen *
+EOF
diff --git a/tests/smoke/00/05 b/tests/smoke/00/05
new file mode 100644 (file)
index 0000000..9b27206
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 5 << EOF
+break
+expl c 0,0 1 uh
+desi 1,-1 +
+mov c 0,0 205 uh
+desi 1,-1 g
+cen *
+EOF
diff --git a/tests/smoke/00/06 b/tests/smoke/00/06
new file mode 100644 (file)
index 0000000..2a12ff2
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 6 << EOF
+break
+expl c 0,0 1 uh
+desi 1,-1 +
+mov c 0,0 205 uh
+desi 1,-1 g
+cen *
+EOF
diff --git a/tests/smoke/00/07 b/tests/smoke/00/07
new file mode 100644 (file)
index 0000000..5366bca
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 7 << EOF
+break
+expl c 0,0 1 uh
+desi 1,-1 +
+mov c 0,0 205 uh
+desi 1,-1 g
+cen *
+EOF
diff --git a/tests/smoke/00/08 b/tests/smoke/00/08
new file mode 100644 (file)
index 0000000..986c2f8
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+break
+expl c 0,0 1 uh
+desi 1,-1 +
+mov c 0,0 205 uh
+desi 1,-1 g
+cen *
+EOF
diff --git a/tests/smoke/00/09 b/tests/smoke/00/09
new file mode 100644 (file)
index 0000000..d91cc9a
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 9 << EOF
+break
+expl c 0,0 1 uh
+desi 1,-1 +
+mov c 0,0 205 uh
+desi 1,-1 g
+cen *
+EOF
diff --git a/tests/smoke/00/10 b/tests/smoke/00/10
new file mode 100644 (file)
index 0000000..09106e9
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 10 << EOF
+break
+expl c 0,0 1 uh
+desi 1,-1 +
+mov c 0,0 205 uh
+desi 1,-1 g
+cen *
+EOF
diff --git a/tests/smoke/01/01 b/tests/smoke/01/01
new file mode 100644 (file)
index 0000000..1c74624
--- /dev/null
@@ -0,0 +1,8 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+real 0 -8:12,-4:4
+cen *
+map #
+read y
+EOF
diff --git a/tests/smoke/02/01 b/tests/smoke/02/01
new file mode 100644 (file)
index 0000000..9bac433
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+desi -1,-1 b
+mov i 2,0 200 4,0
+mov i 1,-1 4 jh
+mov c -1,-1 300 4,0
+mov c -1,-1 300 3,-1
+mov c 1,-1 175 3,-1
+deli i 2,0 0 j
+deli i 1,-1 0 j
+mov c 2,0 230 5,-1
+desi 4,0 k
+desi 3,-1 j
+dist # 5,-1
+thre h 4,0 1
+thre l 3,-1 1
+desi 5,-1 h
+EOF
diff --git a/tests/smoke/03/01 b/tests/smoke/03/01
new file mode 100644 (file)
index 0000000..d8631e3
--- /dev/null
@@ -0,0 +1,31 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+cen *
+map #
+read y
+build sh 5,-1 frg
+mov l 5,-1 102 6,-2
+mov c 4,0 255 6,-2
+desi 6,-2 l
+thre l 6,-2 150
+mov c 2,0 370 -2,2
+deliver i 2,0 0 j
+deliver i 1,-1 0 j
+thres d 1,1 1
+thres o -2,2 1
+thres i 2,0 0
+thres i 1,-1 0
+desi -2,2 o
+desi 1,1 g
+thres c -1:5,-1 768
+thres c -2:4,0 768
+thres c 6,-2 250
+thres c 4,-2 300
+thres l 4,-2 100
+thres o 4,-2 50
+thres d 4,-2 10
+thres d -1,-1 50
+thres c 1,1 768
+prod *
+EOF
diff --git a/tests/smoke/03/08 b/tests/smoke/03/08
new file mode 100644 (file)
index 0000000..491ef22
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+cen *
+map #
+read y
+exp c 0,0 50 gyyygh
+des -7,-3 )
+lost *
+EOF
diff --git a/tests/smoke/04/01 b/tests/smoke/04/01
new file mode 100644 (file)
index 0000000..26a1e40
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+cen *
+ship *
+map #
+read y
+des 4,-2 t
+enlist 3,-1 50
+mov m 3,-1 50 5,-1
+load m 0 50
+nav 0
+j
+j
+h
+assault 11,-1 0
+25
+prod *
+EOF
diff --git a/tests/smoke/04/08 b/tests/smoke/04/08
new file mode 100644 (file)
index 0000000..3e2496b
--- /dev/null
@@ -0,0 +1,8 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+cen *
+map #
+read y
+lost *
+EOF
diff --git a/tests/smoke/05/01 b/tests/smoke/05/01
new file mode 100644 (file)
index 0000000..0bb6b92
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+real 0 -8:16,-4:4
+cen *
+ship *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/06/01 b/tests/smoke/06/01
new file mode 100644 (file)
index 0000000..93eed5e
--- /dev/null
@@ -0,0 +1,37 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+real 1 -16:24,-8:8
+convert 11,-1 76
+thres c -2,2 769
+mov c -2,2 47 0,2
+des 0:2,2 g
+thres d 0:2,2 1
+thres c 0:2,2 769
+des 3,1 g
+thres d 3,1 1
+thres c 3,1 769
+des 0,0 m
+deliver i 0,0 0 g
+thres d -1,-1 300
+thres d 0,0 0
+mov d 0,0 1 -1,-1
+thres c 0,-2 100
+thres c 4:6,-2 210
+thres c -1,-1 100
+thres i 4,0 999
+thres i 3,-1 999
+des -2,0 j
+thres c -2,0 769
+thres l -2,0 1
+bmap #1
+nav 0 njnh
+look 0
+radar 0
+radar 11,-1
+cen *
+ship *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/06/08 b/tests/smoke/06/08
new file mode 100644 (file)
index 0000000..9918af5
--- /dev/null
@@ -0,0 +1,34 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+exp c 0,0 1 gh
+exp c 0,0 1 yh
+exp c 0,0 1 ygh
+exp c 0,0 1 yyh
+exp c 0,0 1 yyyh
+exp c 0,0 1 yyyyh
+exp c 0,0 1 yygh
+exp c 0,0 1 yygyh
+exp c 0,0 1 yygyyh
+exp c 0,0 1 bh
+exp c 0,0 1 bgh
+exp c 0,0 1 nh
+exp c 0,0 1 njh
+exp c 0,0 1 yuh
+exp c 0,0 1 yuyh
+exp c 0,0 1 yuuh
+exp c 0,0 1 yuuyh
+exp c 2,0 1 jh
+exp c 2,0 1 jjh
+exp c 2,0 1 jjjh
+exp c 2,0 1 uh
+exp c 2,0 1 ujh
+exp c 2,0 1 ujjh
+exp c 2,0 1 uyh
+exp c 2,0 1 uuh
+exp c 2,0 1 uujh
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/07/01 b/tests/smoke/07/01
new file mode 100644 (file)
index 0000000..565d1a2
--- /dev/null
@@ -0,0 +1,33 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+build bridge 5,-1 j
+explore c 5,-1 1 jh
+mov c 5,-1 76 7,-1
+thres c 7,-1 77
+dist * 5,-1
+des 1,1 m
+deliver i 1,1 0 g
+thres d 1,1 0
+mov d 1,1 1 -1,-1
+des -1,1 k
+thres h -1,1 1
+thres c -1,1 769
+des -4:-2,-2 o
+thres o -4:-2,-2 1
+thres c -4:-2,-2 769
+des 1,-3 o
+thres o 1,-3 1
+thres c 1,-3 769
+des 4:8,2 g
+thres d 4:8,2 1
+thres c 4:8,2 769
+thres c * ?c_dist=768 769
+bmap #1
+radar 11,-1
+cen *
+ship *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/07/08 b/tests/smoke/07/08
new file mode 100644 (file)
index 0000000..40ee9d8
--- /dev/null
@@ -0,0 +1,31 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+des 7,-1 c
+capital 7,-1
+des * ?gold>1 g
+thres d * ?newdes=g 1
+thres d * ?des=g 1
+thres d 4,0 0
+thres d 1,-1 1
+des -5,-3 o
+thres o -5,-3 1
+des -6,-4 o
+thres o -6,-4 1
+des 1,-1 m
+thres i 1,-1 1
+des 3,1 w
+dist * 3,1
+thres c 0:2,0 769
+thres c 1,-1 769
+thres c 4,0 350
+thres c 3,-1 769
+mov c 2,0 231 jh
+mov c 0,0 231 jjh
+mov c 1,-1 231 jh
+bmap #
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/08/01 b/tests/smoke/08/01
new file mode 100644 (file)
index 0000000..ff44a87
--- /dev/null
@@ -0,0 +1,32 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+des 0,2 m
+deliver i 0,2 0 j
+thres d 0,2 0
+mov d 0,2 1 -1,-1
+des 3,1 m
+deliver i 3,1 0 j
+thres d 3,1 0
+mov d 3,1 1 -1,-1
+des 2,2 k
+thres h 2,2 1
+thres d 2,2 0
+mov d 2,2 1 -1,-1
+thres d 4,-2 15
+thres o 4,-2 75
+thres l 4,-2 150
+des 5:7,1 g
+thres d 5:7,1 1
+thres c 5:7,1 769
+des 10,2 g
+thres d 10,2 1
+thres c 10,2 769
+radar 11,-1
+bmap #1
+cen *
+ship *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/08/08 b/tests/smoke/08/08
new file mode 100644 (file)
index 0000000..4d5a7dd
--- /dev/null
@@ -0,0 +1,12 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+thres c -3:-1,-1 769
+des 0:2,0 m
+thres i 0:2,0 1
+bmap #
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/09/01 b/tests/smoke/09/01
new file mode 100644 (file)
index 0000000..9de0598
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+mov u 2,0 10 7,-1
+des -2,2 i
+thres l -2,2 600
+thres h -2,2 300
+thres s -2,2 1
+thres o -2,2 0
+mov o -2,2 1 4,-2
+thres c * ?des#= 769
+thres c -1:1,3 100
+bmap #1
+cen *
+ship *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/09/08 b/tests/smoke/09/08
new file mode 100644 (file)
index 0000000..f6c4a12
--- /dev/null
@@ -0,0 +1,24 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+thres d 1,-1 0
+mov d 1,-1 1 4,0
+des 3,-1 m
+thres i 3,-1 1
+thres d 3,-1 0
+mov d 3,-1 1 4,0
+thres c -6,-4 769
+thres c 6,-2 769
+thres c 1,-3 769
+des 4,0 b
+thres d 4,0 300
+thres d 0:2,0 0
+mov d 0,0 1 4,0
+mov d 2,0 1 4,0
+thres i -3,-1 999
+bmap #
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/10/01 b/tests/smoke/10/01
new file mode 100644 (file)
index 0000000..691582e
--- /dev/null
@@ -0,0 +1,54 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+mov h 5,-1 100 7,-1
+build bridge 7,-1 j
+explore c 7,-1 1 jh
+thres c 9,-1 77
+mov u 7,-1 12 4,0
+thres u 2,0 579
+thres u 4,0 869
+thres i 4,0 1200
+thres u 11,-1 1
+thres l 6,-2 250
+des 7,1 d
+thres l 7,1 200
+thres h 7,1 100
+thres o 7,1 20
+thres g 7,1 1
+thres d 7,1 0
+mov d 7,1 1 -1,-1
+des 5,1 j
+thres l 5,1 1
+thres d 5,1 0
+mov d 5,1 1 -1,-1
+des 4,2 r
+thres l 4,2 100
+thres o 4,2 50
+thres d 4,2 10
+des 6,2 w
+thres d 6,2 0
+mov d 6,2 1 -1,-1
+des 8,2 e
+thres d 8,2 0
+mov d 8,2 1 -1,-1
+thres m 8,2 1
+des 10,2 !
+thres l 10,2 200
+thres h 10,2 200
+thres s 10,2 200
+thres g 10,2 25
+thres d 10,2 0
+mov d 10,2 1 -1,-1
+des 5,3 p
+thres l 5,3 75
+dist #1 5,-1
+thres c -1:1,3 769
+spy 11,-1
+bmap #1
+cen *
+ship *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/10/08 b/tests/smoke/10/08
new file mode 100644 (file)
index 0000000..d2487f5
--- /dev/null
@@ -0,0 +1,18 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+des -3,-1 j
+thres i -3,-1 999
+thres l -3,-1 1
+thres c 6,0 769
+thres d -3,-1 0
+mov d -3,-1 1 4,0
+thres l 1,-3 300
+thres i -1,1 999
+thres i 0,-4 999
+bmap #
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/11/01 b/tests/smoke/11/01
new file mode 100644 (file)
index 0000000..f64732b
--- /dev/null
@@ -0,0 +1,18 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+thres l 6,-2 300
+thres l 5,-1 200
+thres h 5,-1 200
+thres i 5,-1 1
+thres o 5,-1 1
+thres d 5,-1 1
+dist #1 6,2
+build l 10,2 cav
+bmap #1
+cen *
+ship *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/11/08 b/tests/smoke/11/08
new file mode 100644 (file)
index 0000000..18aec92
--- /dev/null
@@ -0,0 +1,27 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+des -1,-1 m
+thres i -1,-1 1
+thres d -1,-1 0
+mov d -1,-1 1 4,0
+des 1,-3 l
+des -1,1 j
+thres l -1,1 1
+des 0,-4 k
+thres h 0,-4 1
+thres d 1,-3 0
+thres l 6,-2 300
+thres o 6,-2 150
+thres d 6,-2 30
+thres l 8,0 600
+thres h 8,0 300
+thres c -3:-1,1 769
+thres c 0,-4 769
+thres c 8,0 769
+bmap #
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/12/01 b/tests/smoke/12/01
new file mode 100644 (file)
index 0000000..05e6244
--- /dev/null
@@ -0,0 +1,16 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+build l 10,2 cav 5
+build sh 5,-1 cs 3
+thres m 10,2 25
+thres i -4:-2,-2 999
+thres i 1,-3 999
+bmap #1
+cen *
+ship *
+land *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/12/08 b/tests/smoke/12/08
new file mode 100644 (file)
index 0000000..fea65f1
--- /dev/null
@@ -0,0 +1,21 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+des 6,-2 t
+des 6,0 h
+thres d 6,0 0
+thres l 6,0 200
+thres h 6,0 200
+des 8,0 i
+thres s 8,0 1
+thres c 4,0 400
+thres c -2:4,-2 769
+thres i 4,-2 999
+des 4,-2 j
+thres i -3,1 999
+bmap #
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/13/01 b/tests/smoke/13/01
new file mode 100644 (file)
index 0000000..d1c3fa3
--- /dev/null
@@ -0,0 +1,62 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+des -2,-2 j
+thres l -2,-2 1
+des -4,-2 k
+thres h -4,-2 1
+thres o -4:-2,-2 0
+des 1,-3 j
+thres l 1,-3 1
+thres o 1,-3 0
+des -1,3 o
+thres o -1,3 1
+des 2,2 m
+thres i 2,2 1
+thres h 2,2 0
+des 3,-1 m
+thres l 3,-1 0
+thres i 3,-1 1
+thres l 6,-2 400
+radar 11,-1
+lload m 0 20
+lload m 1/2/3 1
+march 0/1/2/3 5,-1
+load m 1 25
+load c 1 300
+load l 1 100
+load h 1 100
+load c 2 10
+load c 3 10
+load land 1 0
+load land 2 1
+load land 3 2
+load land 3 3
+build l 10,2 art
+nav 2 nh
+scrap l 1
+y
+scrap s 2
+y
+scuttle l 1
+y
+scuttle s 2
+y
+comm 5,-1
+scrap l 2
+y
+comm 5,-1
+scrap s 3
+y
+comm 5,-1
+thres i 5,-1 0
+thres d 5,-1 0
+thres o 5,-1 0
+bmap #1
+cen *
+ship *
+land *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/13/02 b/tests/smoke/13/02
new file mode 100644 (file)
index 0000000..07c26b5
--- /dev/null
@@ -0,0 +1,93 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 2 << EOF
+explore c 2,0  1 uh
+explore c 2,0  1 jh
+explore c 2,0  1 bh
+explore c 2,0  1 nh
+des * ?des=- +
+explore c 2,0  1 yuh
+explore c 2,0  1 ygh
+explore c 2,0  1 juh
+explore c 2,0  1 ggh
+explore c 2,0  1 bgh
+explore c 2,0  1 bbh
+explore c 2,0  1 bnh
+des * ?des=- +
+explore c 2,0  1 jujh
+explore c 2,0  1 gggh
+explore c 2,0  1 bggh
+explore c 2,0  1 bbgh
+explore c 2,0  1 bbbh
+explore c 2,0  1 bbnh
+explore c 2,0  1 bnnh
+des * ?des=- +
+explore c 2,0  1 gggyh
+explore c 2,0  1 ggggh
+explore c 2,0  1 bgggh
+explore c 2,0  1 bbggh
+explore c 2,0  1 bbbgh
+des * ?des=- +
+explore c 2,0  1 gggyuh
+des * ?des=- +
+explore c 0,0  1 yh
+explore c 0,0  1 gh
+explore c 0,0  1 bh
+explore c 0,0  1 nh
+des * ?des=- +
+explore c 0,0  1 uuh
+explore c 0,0  1 juh
+explore c 0,0  1 ggh
+explore c 0,0  1 jjh
+explore c 0,0  1 bgh
+explore c 0,0  1 jnh
+explore c 0,0  1 bbh
+explore c 0,0  1 bnh
+explore c 0,0  1 nnh
+des * ?des=- +
+explore c 0,0  1 ggyh
+explore c 0,0  1 jjuh
+explore c 0,0  1 gggh
+explore c 0,0  1 bggh
+explore c 0,0  1 bbgh
+explore c 0,0  1 bbbh
+explore c 0,0  1 bbnh
+explore c 0,0  1 bnnh
+explore c 0,0  1 nnnh
+des * ?des=- +
+explore c 0,0  1 ggyyh
+explore c 0,0  1 ggyuh
+explore c 0,0  1 ggygh
+explore c 0,0  1 jjujh
+explore c 0,0  1 bgggh
+des * ?des=- +
+designate 2,-2 c
+capital 2,-2
+des * ?gold>10 g
+thres d * ?gold>10 1
+des  -1,-1 o
+thres o -1,-1 1
+des 1,-1 b
+thres d 1,-1 300
+thres c * ?des#+ 769
+thres c -4,-2 230
+thres c 2,-2 50
+thres c 1,-1 385
+thres c 3,-1 300
+thres c 5,-1 600
+des -4,-2 w
+distr * 1,-1
+mov c 1,1 231 -4,-2
+demob 0:2,0 55
+y
+mov c 0,0 260 3,-1
+mov c 2,0 165 3,-1
+mov c 2,0 100 5,-1
+thres u 0:2,0 579
+thres u -5,-1 579
+bmap #1
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/13/08 b/tests/smoke/13/08
new file mode 100644 (file)
index 0000000..319450c
--- /dev/null
@@ -0,0 +1,23 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+thres c -2,0 769
+thres c 1,1 769
+thres c 5,-1 769
+thres c -5,-3 769
+thres c -4,-2 769
+thres c -1,-3 769
+thres u -1:3,-1 512
+thres u 0:2,0 512
+thres d -3,1 0
+thres l -3,1 1
+thres i 2,-2 999
+des 2,-2 k
+thres h 2,-2 1
+des -3,1 j
+bmap #
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/14/01 b/tests/smoke/14/01
new file mode 100644 (file)
index 0000000..0c577c7
--- /dev/null
@@ -0,0 +1,30 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+lload m 4/5 5
+lload s 5 200
+lload g 5 20
+march 4/5 ggyyh
+thres l 6,-2 450
+des 11,-1 *
+thres l 11,-1 200
+thres h 11,-1 200
+thres p 11,-1 200
+thres u 3:5,1 579
+des 2,-2 o
+build s 5,-1 tk
+load c 2 200
+telegram 2
+Want an alliance?
+.
+declare war 8
+declare alliance 2
+bmap #1
+cen *
+ship *
+land *
+plane *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/14/02 b/tests/smoke/14/02
new file mode 100644 (file)
index 0000000..27cd4a1
--- /dev/null
@@ -0,0 +1,25 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 2 << EOF
+des 0:2,0 m
+thres i 0:2,0 1
+thres i -5,-1 999
+dist * -4,-2
+thres o 4,0 1
+wall
+Sure
+.
+declare alliance 1
+declare hostile 8
+wire y
+announce
+Hello World
+.
+wire y
+flash 1 Testing Flash
+bmap #1
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/14/08 b/tests/smoke/14/08
new file mode 100644 (file)
index 0000000..c4aafd7
--- /dev/null
@@ -0,0 +1,20 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+thres c * 769
+thres i -2:0,-2 1
+des -2:0,-2 m
+thres d -2:2,-2 0
+thres o 5,-1 10
+thres l 5,-1 50
+thres h 5,-1 100
+thres h -6,-4 100
+declare war 1
+declare hostile 2
+wire y
+bmap #
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/15/01 b/tests/smoke/15/01
new file mode 100644 (file)
index 0000000..69560fa
--- /dev/null
@@ -0,0 +1,26 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+build p 11,-1 f1 3
+thres s 11,-1 200
+thres p 11,-1 200
+des 2,-2 %
+thres p 2,-2 1
+thres s 5,-1 200
+thres g 5,-1 10
+thres d -1,-1 0
+thres c * 0
+march 4/5 ujjjh
+build s 5,-1 od
+load c 3 200
+build s 5,-1 ft
+load c 4 200
+bmap #1
+cen *
+ship *
+land *
+plane *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/15/02 b/tests/smoke/15/02
new file mode 100644 (file)
index 0000000..af0204a
--- /dev/null
@@ -0,0 +1,15 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 2 << EOF
+des -5,-1 j
+thres l -5,-1 1
+thres l 3,-1 300
+thres c 5,-1 769
+thres i 5,-1 999
+thres c 7,-1 400
+bmap #1
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/15/08 b/tests/smoke/15/08
new file mode 100644 (file)
index 0000000..001b5ee
--- /dev/null
@@ -0,0 +1,33 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+des 5,-1 d
+thres g 5,-1 1
+des -6,-4 f
+thres g -6,-4 7
+thres s -6,-4 200
+des -4,-2 *
+thres l -4,-2 200
+thres h -4,-2 200
+thres s -4,-2 200
+thres d -4,-2 0
+des -1,-3 !
+thres l -1,-3 200
+thres h -1,-3 200
+thres s -1,-3 200
+thres g -1,-3 10
+thres d -1,-3 0
+des -2,0 p
+thres d -2,0 0
+thres l -2,0 75
+des 1,1 k
+thres i 1,1 999
+thres h 1,1 1
+thres l 1,-3 400
+mov m 0,0 55 -6,-4
+bmap #
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/16/01 b/tests/smoke/16/01
new file mode 100644 (file)
index 0000000..ca98b4d
--- /dev/null
@@ -0,0 +1,37 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 << EOF
+mov c 1,-1 230 jjh
+mov c 3,-1 230 jh
+mov c 2,-2 230 njh
+mov c 4,-2 230 nh
+mov c 6,-2 230 bh
+load c 3/4 999
+nav 3 6,0
+h
+nav 3 vh
+order 3 des 5,-1 6,0
+order 3 level 1 end oil 1
+nav 4 nvh
+order 4 des 5,-1 6,0
+order 4 level 1 start food 30
+order 4 level 1 end food 30
+reco 0 . 11,-1 ujbgh
+bomb 1 . stat 11,-1 ujh
+mission p 2 o . 2
+fire l 5 12,-2
+attack 12,-2 0 0 0 0
+0
+N
+attack 12,-2
+1
+y
+bmap #1
+cen *
+ship *
+land *
+plane *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/16/02 b/tests/smoke/16/02
new file mode 100644 (file)
index 0000000..73ebd39
--- /dev/null
@@ -0,0 +1,20 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 2 << EOF
+des 3,-1 l
+thres d 3,-1 0
+des 5,-1 k
+thres d 5,-1 0
+thres h 5,-1 1
+thres c 7,-1 769
+thres i 7,-1 999
+thres l -6,0 300
+thres o -6,0 150
+thres d -6,0 30
+thres c -6,0 400
+bmap #1
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/16/08 b/tests/smoke/16/08
new file mode 100644 (file)
index 0000000..593352f
--- /dev/null
@@ -0,0 +1,12 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 8 << EOF
+des -4,-4 o
+thres o -4,-4 1
+thres o -5,-3 0
+bmap #
+cen *
+map #
+read y
+prod *
+EOF
diff --git a/tests/smoke/99/00 b/tests/smoke/99/00
new file mode 100644 (file)
index 0000000..c841d75
--- /dev/null
@@ -0,0 +1,53 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed POGO peter << EOF
+xdump sect 0,0
+xdump ship *
+xdump plane *
+xdump land *
+xdump nuke *
+xdump news *
+xdump treaty *
+xdump trade *
+xdump nat *
+xdump loan *
+xdump commodity *
+xdump lost *
+xdump realm 0
+xdump game *
+xdump item *
+xdump product *
+xdump sect-chr *
+xdump ship-chr *
+xdump plane-chr *
+xdump land-chr *
+xdump nuke-chr *
+xdump news-chr *
+xdump infrastructure *
+xdump updates *
+xdump table *
+xdump version *
+xdump meta *
+xdump sector *
+xdump agreement-status *
+xdump land-chr-flags *
+xdump level *
+xdump meta-flags *
+xdump meta-type *
+xdump missions *
+xdump nation-flags *
+xdump nation-rejects *
+xdump nation-relationships *
+xdump nation-status *
+xdump nuke-chr-flags *
+xdump packing *
+xdump page-headings *
+xdump plague-stages *
+xdump plane-chr-flags *
+xdump plane-flags *
+xdump resources *
+xdump retreat-flags *
+xdump ship-chr-flags *
+xdump treaty-flags *
+xdump country *
+EOF
diff --git a/tests/smoke/99/01 b/tests/smoke/99/01
new file mode 100644 (file)
index 0000000..1a9306c
--- /dev/null
@@ -0,0 +1,53 @@
+#!/bin/sh
+. "${SCRIPTDIR}"/common.sh
+runfeed 1 1 << EOF
+xdump sect 0,0
+xdump ship *
+xdump plane *
+xdump land *
+xdump nuke *
+xdump news *
+xdump treaty *
+xdump trade *
+xdump nat *
+xdump loan *
+xdump commodity *
+xdump lost *
+xdump realm *
+xdump game *
+xdump item *
+xdump product *
+xdump sect-chr *
+xdump ship-chr *
+xdump plane-chr *
+xdump land-chr *
+xdump nuke-chr *
+xdump news-chr *
+xdump infrastructure *
+xdump updates *
+xdump table *
+xdump version *
+xdump meta *
+xdump sector *
+xdump agreement-status *
+xdump land-chr-flags *
+xdump level *
+xdump meta-flags *
+xdump meta-type *
+xdump missions *
+xdump nation-flags *
+xdump nation-rejects *
+xdump nation-relationships *
+xdump nation-status *
+xdump nuke-chr-flags *
+xdump packing *
+xdump page-headings *
+xdump plague-stages *
+xdump plane-chr-flags *
+xdump plane-flags *
+xdump resources *
+xdump retreat-flags *
+xdump ship-chr-flags *
+xdump treaty-flags *
+xdump country *
+EOF
diff --git a/tests/smoke/journal.log b/tests/smoke/journal.log
new file mode 100644 (file)
index 0000000..8dea279
--- /dev/null
@@ -0,0 +1,2786 @@
+Thu Jan  1 00:00:00 1970       Main startup
+Thu Jan  1 00:00:00 1970       Main prng BSD 1
+Thu Jan  1 00:00:00 1970      Conn0 input user tester
+Thu Jan  1 00:00:00 1970      Conn0 input coun red
+Thu Jan  1 00:00:00 1970      Conn1 input user tester
+Thu Jan  1 00:00:00 1970      Conn1 input coun POGO
+Thu Jan  1 00:00:00 1970      Conn1 input pass peter
+Thu Jan  1 00:00:00 1970      Conn1 input play 
+Thu Jan  1 00:00:00 1970      Conn1 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input add 1 1 1 p
+Thu Jan  1 00:00:00 1970     Play#0 command add
+Thu Jan  1 00:00:00 1970     Play#0 input newcap 1 5,19
+Thu Jan  1 00:00:00 1970     Play#0 command newcap
+Thu Jan  1 00:00:00 1970     Play#0 input add 2 2 2 p
+Thu Jan  1 00:00:00 1970     Play#0 command add
+Thu Jan  1 00:00:00 1970     Play#0 input newcap 2 16,10
+Thu Jan  1 00:00:00 1970     Play#0 command newcap
+Thu Jan  1 00:00:00 1970     Play#0 input add 3 3 3 p
+Thu Jan  1 00:00:00 1970     Play#0 command add
+Thu Jan  1 00:00:00 1970     Play#0 input newcap 3 60,10
+Thu Jan  1 00:00:00 1970     Play#0 command newcap
+Thu Jan  1 00:00:00 1970     Play#0 input add 4 4 4 p
+Thu Jan  1 00:00:00 1970     Play#0 command add
+Thu Jan  1 00:00:00 1970     Play#0 input newcap 4 49,1
+Thu Jan  1 00:00:00 1970     Play#0 command newcap
+Thu Jan  1 00:00:00 1970     Play#0 input add 5 5 5 p
+Thu Jan  1 00:00:00 1970     Play#0 command add
+Thu Jan  1 00:00:00 1970     Play#0 input newcap 5 34,8
+Thu Jan  1 00:00:00 1970     Play#0 command newcap
+Thu Jan  1 00:00:00 1970     Play#0 input add 6 6 6 p
+Thu Jan  1 00:00:00 1970     Play#0 command add
+Thu Jan  1 00:00:00 1970     Play#0 input newcap 6 2,30
+Thu Jan  1 00:00:00 1970     Play#0 command newcap
+Thu Jan  1 00:00:00 1970     Play#0 input add 7 7 7 p
+Thu Jan  1 00:00:00 1970     Play#0 command add
+Thu Jan  1 00:00:00 1970     Play#0 input newcap 7 24,0
+Thu Jan  1 00:00:00 1970     Play#0 command newcap
+Thu Jan  1 00:00:00 1970     Play#0 input add 8 8 8 p
+Thu Jan  1 00:00:00 1970     Play#0 command add
+Thu Jan  1 00:00:00 1970     Play#0 input newcap 8 23,21
+Thu Jan  1 00:00:00 1970     Play#0 command newcap
+Thu Jan  1 00:00:00 1970     Play#0 input add 9 9 9 p
+Thu Jan  1 00:00:00 1970     Play#0 command add
+Thu Jan  1 00:00:00 1970     Play#0 input newcap 9 38,26
+Thu Jan  1 00:00:00 1970     Play#0 command newcap
+Thu Jan  1 00:00:00 1970     Play#0 input add 10 10 10 p
+Thu Jan  1 00:00:00 1970     Play#0 command add
+Thu Jan  1 00:00:00 1970     Play#0 input newcap 10 52,22
+Thu Jan  1 00:00:00 1970     Play#0 command newcap
+Thu Jan  1 00:00:00 1970     Play#0 input add 11 visitor visitor v
+Thu Jan  1 00:00:00 1970     Play#0 command add
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970      Conn2 input user tester
+Thu Jan  1 00:00:00 1970      Conn2 input coun POGO
+Thu Jan  1 00:00:00 1970      Conn2 input pass peter
+Thu Jan  1 00:00:00 1970      Conn2 input play 
+Thu Jan  1 00:00:00 1970      Conn2 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta sect
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta ship
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta plane
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta land
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta nuke
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta news
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta treaty
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta trade
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta nat
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta loan
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta commodity
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta lost
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta realm
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta game
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta item
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta product
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta sect-chr
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta ship-chr
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta plane-chr
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta land-chr
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta nuke-chr
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta news-chr
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta infrastructure
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta updates
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta table
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta version
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta meta
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta sector
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta agreement-status
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta land-chr-flags
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta level
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta meta-flags
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta meta-type
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta missions
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta nation-flags
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta nation-rejects
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta nation-relationships
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta nation-status
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta nuke-chr-flags
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta packing
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta page-headings
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta plague-stages
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta plane-chr-flags
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta plane-flags
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta resources
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta retreat-flags
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta ship-chr-flags
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta treaty-flags
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta country
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970      Conn3 input user tester
+Thu Jan  1 00:00:00 1970      Conn3 input coun 1
+Thu Jan  1 00:00:00 1970      Conn3 input pass 1
+Thu Jan  1 00:00:00 1970      Conn3 input play 
+Thu Jan  1 00:00:00 1970      Conn3 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input xdump sect 0,0
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input break
+Thu Jan  1 00:00:00 1970     Play#1 command break
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 0,0 1 uh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 jh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 uh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 nh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 bh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 0,0 1 yh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 0,0 1 gh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 0,0 1 bh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input desi * ?ne=- +
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 njh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 nnh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 bnh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 0,0 1 bbh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 0,0 1 yyh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 0,0 1 yuh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 0,0 1 bnh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 yuh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 uuh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 juh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input desi * ?ne=- +
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 nnnh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 nnjh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 njjh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 uujh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 0,0 1 bbnh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 0,0 1 bnnh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 0,0 1 yygh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 0,0 1 yuuh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input desi * ?ne=- +
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 nnjjh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input desi * ?ne=- +
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input expl c 2,0 1 nnjjjh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input desi * ?ne=- +
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input mov u 0,0 75 jh
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input demob 0:2,0 55 y
+Thu Jan  1 00:00:00 1970     Play#1 command demobilize
+Thu Jan  1 00:00:00 1970     Play#1 input desi 2,0 m
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input mov c 0,0 600 -1,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input desi -1,-1 g
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input mov c 0,0 275 1,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input mov c 2,0 274 1,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input desi 1,-1 m
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input deliver i 2,0 230 u
+Thu Jan  1 00:00:00 1970     Play#1 command deliver
+Thu Jan  1 00:00:00 1970     Play#1 input deliver i 1,-1 0 j
+Thu Jan  1 00:00:00 1970     Play#1 command deliver
+Thu Jan  1 00:00:00 1970     Play#1 input dist 4,0 2,0
+Thu Jan  1 00:00:00 1970     Play#1 command distribute
+Thu Jan  1 00:00:00 1970     Play#1 input thres i 2,0 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 0,-2 c
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input capital 0,-2
+Thu Jan  1 00:00:00 1970     Play#1 command capital
+Thu Jan  1 00:00:00 1970     Play#1 input des 0,0 g
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 0,0 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970      Conn4 input user tester
+Thu Jan  1 00:00:00 1970      Conn4 input coun 2
+Thu Jan  1 00:00:00 1970      Conn4 input pass 2
+Thu Jan  1 00:00:00 1970      Conn4 input play 
+Thu Jan  1 00:00:00 1970      Conn4 login 2 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#2 input break
+Thu Jan  1 00:00:00 1970     Play#2 command break
+Thu Jan  1 00:00:00 1970     Play#2 input expl c 0,0 1 uh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input desi 1,-1 +
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input mov c 0,0 205 uh
+Thu Jan  1 00:00:00 1970     Play#2 command move
+Thu Jan  1 00:00:00 1970     Play#2 input desi 1,-1 g
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input cen *
+Thu Jan  1 00:00:00 1970     Play#2 command census
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta sect
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta ship
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta plane
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta land
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta nuke
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta news
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta treaty
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta trade
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta nat
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta loan
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta commodity
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta lost
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta realm
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta game
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta item
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta product
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta sect-chr
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta ship-chr
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta plane-chr
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta land-chr
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta nuke-chr
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta news-chr
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta infrastructure
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta updates
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta table
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta version
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta meta
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta sector
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta agreement-status
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta land-chr-flags
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta level
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta meta-flags
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta meta-type
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta missions
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta nation-flags
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta nation-rejects
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta nation-relationships
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta nation-status
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta nuke-chr-flags
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta packing
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta page-headings
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta plague-stages
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta plane-chr-flags
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta plane-flags
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta resources
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta retreat-flags
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta ship-chr-flags
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta treaty-flags
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input xdump meta country
+Thu Jan  1 00:00:00 1970     Play#2 command xdump
+Thu Jan  1 00:00:00 1970     Play#2 input ctld
+Thu Jan  1 00:00:00 1970     Play#2 logout 2
+Thu Jan  1 00:00:00 1970      Conn5 input user tester
+Thu Jan  1 00:00:00 1970      Conn5 input coun 3
+Thu Jan  1 00:00:00 1970      Conn5 input pass 3
+Thu Jan  1 00:00:00 1970      Conn5 input play 
+Thu Jan  1 00:00:00 1970      Conn5 login 3 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#3 input break
+Thu Jan  1 00:00:00 1970     Play#3 command break
+Thu Jan  1 00:00:00 1970     Play#3 input expl c 0,0 1 uh
+Thu Jan  1 00:00:00 1970     Play#3 command explore
+Thu Jan  1 00:00:00 1970     Play#3 input desi 1,-1 +
+Thu Jan  1 00:00:00 1970     Play#3 command designate
+Thu Jan  1 00:00:00 1970     Play#3 input mov c 0,0 205 uh
+Thu Jan  1 00:00:00 1970     Play#3 command move
+Thu Jan  1 00:00:00 1970     Play#3 input desi 1,-1 g
+Thu Jan  1 00:00:00 1970     Play#3 command designate
+Thu Jan  1 00:00:00 1970     Play#3 input cen *
+Thu Jan  1 00:00:00 1970     Play#3 command census
+Thu Jan  1 00:00:00 1970     Play#3 input ctld
+Thu Jan  1 00:00:00 1970     Play#3 logout 3
+Thu Jan  1 00:00:00 1970      Conn6 input user tester
+Thu Jan  1 00:00:00 1970      Conn6 input coun 4
+Thu Jan  1 00:00:00 1970      Conn6 input pass 4
+Thu Jan  1 00:00:00 1970      Conn6 input play 
+Thu Jan  1 00:00:00 1970      Conn6 login 4 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#4 input break
+Thu Jan  1 00:00:00 1970     Play#4 command break
+Thu Jan  1 00:00:00 1970     Play#4 input expl c 0,0 1 uh
+Thu Jan  1 00:00:00 1970     Play#4 command explore
+Thu Jan  1 00:00:00 1970     Play#4 input desi 1,-1 +
+Thu Jan  1 00:00:00 1970     Play#4 command designate
+Thu Jan  1 00:00:00 1970     Play#4 input mov c 0,0 205 uh
+Thu Jan  1 00:00:00 1970     Play#4 command move
+Thu Jan  1 00:00:00 1970     Play#4 input desi 1,-1 g
+Thu Jan  1 00:00:00 1970     Play#4 command designate
+Thu Jan  1 00:00:00 1970     Play#4 input cen *
+Thu Jan  1 00:00:00 1970     Play#4 command census
+Thu Jan  1 00:00:00 1970     Play#4 input ctld
+Thu Jan  1 00:00:00 1970     Play#4 logout 4
+Thu Jan  1 00:00:00 1970      Conn7 input user tester
+Thu Jan  1 00:00:00 1970      Conn7 input coun 5
+Thu Jan  1 00:00:00 1970      Conn7 input pass 5
+Thu Jan  1 00:00:00 1970      Conn7 input play 
+Thu Jan  1 00:00:00 1970      Conn7 login 5 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#5 input break
+Thu Jan  1 00:00:00 1970     Play#5 command break
+Thu Jan  1 00:00:00 1970     Play#5 input expl c 0,0 1 uh
+Thu Jan  1 00:00:00 1970     Play#5 command explore
+Thu Jan  1 00:00:00 1970     Play#5 input desi 1,-1 +
+Thu Jan  1 00:00:00 1970     Play#5 command designate
+Thu Jan  1 00:00:00 1970     Play#5 input mov c 0,0 205 uh
+Thu Jan  1 00:00:00 1970     Play#5 command move
+Thu Jan  1 00:00:00 1970     Play#5 input desi 1,-1 g
+Thu Jan  1 00:00:00 1970     Play#5 command designate
+Thu Jan  1 00:00:00 1970     Play#5 input cen *
+Thu Jan  1 00:00:00 1970     Play#5 command census
+Thu Jan  1 00:00:00 1970     Play#5 input ctld
+Thu Jan  1 00:00:00 1970     Play#5 logout 5
+Thu Jan  1 00:00:00 1970      Conn8 input user tester
+Thu Jan  1 00:00:00 1970      Conn8 input coun 6
+Thu Jan  1 00:00:00 1970      Conn8 input pass 6
+Thu Jan  1 00:00:00 1970      Conn8 input play 
+Thu Jan  1 00:00:00 1970      Conn8 login 6 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#6 input break
+Thu Jan  1 00:00:00 1970     Play#6 command break
+Thu Jan  1 00:00:00 1970     Play#6 input expl c 0,0 1 uh
+Thu Jan  1 00:00:00 1970     Play#6 command explore
+Thu Jan  1 00:00:00 1970     Play#6 input desi 1,-1 +
+Thu Jan  1 00:00:00 1970     Play#6 command designate
+Thu Jan  1 00:00:00 1970     Play#6 input mov c 0,0 205 uh
+Thu Jan  1 00:00:00 1970     Play#6 command move
+Thu Jan  1 00:00:00 1970     Play#6 input desi 1,-1 g
+Thu Jan  1 00:00:00 1970     Play#6 command designate
+Thu Jan  1 00:00:00 1970     Play#6 input cen *
+Thu Jan  1 00:00:00 1970     Play#6 command census
+Thu Jan  1 00:00:00 1970     Play#6 input ctld
+Thu Jan  1 00:00:00 1970     Play#6 logout 6
+Thu Jan  1 00:00:00 1970      Conn9 input user tester
+Thu Jan  1 00:00:00 1970      Conn9 input coun 7
+Thu Jan  1 00:00:00 1970      Conn9 input pass 7
+Thu Jan  1 00:00:00 1970      Conn9 input play 
+Thu Jan  1 00:00:00 1970      Conn9 login 7 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#7 input break
+Thu Jan  1 00:00:00 1970     Play#7 command break
+Thu Jan  1 00:00:00 1970     Play#7 input expl c 0,0 1 uh
+Thu Jan  1 00:00:00 1970     Play#7 command explore
+Thu Jan  1 00:00:00 1970     Play#7 input desi 1,-1 +
+Thu Jan  1 00:00:00 1970     Play#7 command designate
+Thu Jan  1 00:00:00 1970     Play#7 input mov c 0,0 205 uh
+Thu Jan  1 00:00:00 1970     Play#7 command move
+Thu Jan  1 00:00:00 1970     Play#7 input desi 1,-1 g
+Thu Jan  1 00:00:00 1970     Play#7 command designate
+Thu Jan  1 00:00:00 1970     Play#7 input cen *
+Thu Jan  1 00:00:00 1970     Play#7 command census
+Thu Jan  1 00:00:00 1970     Play#7 input ctld
+Thu Jan  1 00:00:00 1970     Play#7 logout 7
+Thu Jan  1 00:00:00 1970     Conn10 input user tester
+Thu Jan  1 00:00:00 1970     Conn10 input coun 8
+Thu Jan  1 00:00:00 1970     Conn10 input pass 8
+Thu Jan  1 00:00:00 1970     Conn10 input play 
+Thu Jan  1 00:00:00 1970     Conn10 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input break
+Thu Jan  1 00:00:00 1970     Play#8 command break
+Thu Jan  1 00:00:00 1970     Play#8 input expl c 0,0 1 uh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input desi 1,-1 +
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input mov c 0,0 205 uh
+Thu Jan  1 00:00:00 1970     Play#8 command move
+Thu Jan  1 00:00:00 1970     Play#8 input desi 1,-1 g
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn11 input user tester
+Thu Jan  1 00:00:00 1970     Conn11 input coun 9
+Thu Jan  1 00:00:00 1970     Conn11 input pass 9
+Thu Jan  1 00:00:00 1970     Conn11 input play 
+Thu Jan  1 00:00:00 1970     Conn11 login 9 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#9 input break
+Thu Jan  1 00:00:00 1970     Play#9 command break
+Thu Jan  1 00:00:00 1970     Play#9 input expl c 0,0 1 uh
+Thu Jan  1 00:00:00 1970     Play#9 command explore
+Thu Jan  1 00:00:00 1970     Play#9 input desi 1,-1 +
+Thu Jan  1 00:00:00 1970     Play#9 command designate
+Thu Jan  1 00:00:00 1970     Play#9 input mov c 0,0 205 uh
+Thu Jan  1 00:00:00 1970     Play#9 command move
+Thu Jan  1 00:00:00 1970     Play#9 input desi 1,-1 g
+Thu Jan  1 00:00:00 1970     Play#9 command designate
+Thu Jan  1 00:00:00 1970     Play#9 input cen *
+Thu Jan  1 00:00:00 1970     Play#9 command census
+Thu Jan  1 00:00:00 1970     Play#9 input ctld
+Thu Jan  1 00:00:00 1970     Play#9 logout 9
+Thu Jan  1 00:00:00 1970     Conn12 input user tester
+Thu Jan  1 00:00:00 1970     Conn12 input coun 10
+Thu Jan  1 00:00:00 1970     Conn12 input pass 10
+Thu Jan  1 00:00:00 1970     Conn12 input play 
+Thu Jan  1 00:00:00 1970     Conn12 login 10 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970    Play#10 input break
+Thu Jan  1 00:00:00 1970    Play#10 command break
+Thu Jan  1 00:00:00 1970    Play#10 input expl c 0,0 1 uh
+Thu Jan  1 00:00:00 1970    Play#10 command explore
+Thu Jan  1 00:00:00 1970    Play#10 input desi 1,-1 +
+Thu Jan  1 00:00:00 1970    Play#10 command designate
+Thu Jan  1 00:00:00 1970    Play#10 input mov c 0,0 205 uh
+Thu Jan  1 00:00:00 1970    Play#10 command move
+Thu Jan  1 00:00:00 1970    Play#10 input desi 1,-1 g
+Thu Jan  1 00:00:00 1970    Play#10 command designate
+Thu Jan  1 00:00:00 1970    Play#10 input cen *
+Thu Jan  1 00:00:00 1970    Play#10 command census
+Thu Jan  1 00:00:00 1970    Play#10 input ctld
+Thu Jan  1 00:00:00 1970    Play#10 logout 10
+Thu Jan  1 00:00:00 1970     Conn13 input user tester
+Thu Jan  1 00:00:00 1970     Conn13 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn13 input pass peter
+Thu Jan  1 00:00:00 1970     Conn13 input play 
+Thu Jan  1 00:00:00 1970     Conn13 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn14 input user tester
+Thu Jan  1 00:00:00 1970     Conn14 input coun 1
+Thu Jan  1 00:00:00 1970     Conn14 input pass 1
+Thu Jan  1 00:00:00 1970     Conn14 input play 
+Thu Jan  1 00:00:00 1970     Conn14 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input real 0 -8:12,-4:4
+Thu Jan  1 00:00:00 1970     Play#1 command realm
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn15 input user tester
+Thu Jan  1 00:00:00 1970     Conn15 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn15 input pass peter
+Thu Jan  1 00:00:00 1970     Conn15 input play 
+Thu Jan  1 00:00:00 1970     Conn15 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn16 input user tester
+Thu Jan  1 00:00:00 1970     Conn16 input coun 1
+Thu Jan  1 00:00:00 1970     Conn16 input pass 1
+Thu Jan  1 00:00:00 1970     Conn16 input play 
+Thu Jan  1 00:00:00 1970     Conn16 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input desi -1,-1 b
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input mov i 2,0 200 4,0
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input mov i 1,-1 4 jh
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input mov c -1,-1 300 4,0
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input mov c -1,-1 300 3,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input mov c 1,-1 175 3,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input deli i 2,0 0 j
+Thu Jan  1 00:00:00 1970     Play#1 command deliver
+Thu Jan  1 00:00:00 1970     Play#1 input deli i 1,-1 0 j
+Thu Jan  1 00:00:00 1970     Play#1 command deliver
+Thu Jan  1 00:00:00 1970     Play#1 input mov c 2,0 230 5,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input desi 4,0 k
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input desi 3,-1 j
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input dist # 5,-1
+Thu Jan  1 00:00:00 1970     Play#1 command distribute
+Thu Jan  1 00:00:00 1970     Play#1 input thre h 4,0 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thre l 3,-1 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input desi 5,-1 h
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn17 input user tester
+Thu Jan  1 00:00:00 1970     Conn17 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn17 input pass peter
+Thu Jan  1 00:00:00 1970     Conn17 input play 
+Thu Jan  1 00:00:00 1970     Conn17 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn18 input user tester
+Thu Jan  1 00:00:00 1970     Conn18 input coun 1
+Thu Jan  1 00:00:00 1970     Conn18 input pass 1
+Thu Jan  1 00:00:00 1970     Conn18 input play 
+Thu Jan  1 00:00:00 1970     Conn18 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input build sh 5,-1 frg
+Thu Jan  1 00:00:00 1970     Play#1 command build
+Thu Jan  1 00:00:00 1970     Play#1 input mov l 5,-1 102 6,-2
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input mov c 4,0 255 6,-2
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input desi 6,-2 l
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thre l 6,-2 150
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov c 2,0 370 -2,2
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input deliver i 2,0 0 j
+Thu Jan  1 00:00:00 1970     Play#1 command deliver
+Thu Jan  1 00:00:00 1970     Play#1 input deliver i 1,-1 0 j
+Thu Jan  1 00:00:00 1970     Play#1 command deliver
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 1,1 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres o -2,2 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres i 2,0 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres i 1,-1 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input desi -2,2 o
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input desi 1,1 g
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres c -1:5,-1 768
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c -2:4,0 768
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c 6,-2 250
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c 4,-2 300
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 4,-2 100
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres o 4,-2 50
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 4,-2 10
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres d -1,-1 50
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c 1,1 768
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn19 input user tester
+Thu Jan  1 00:00:00 1970     Conn19 input coun 8
+Thu Jan  1 00:00:00 1970     Conn19 input pass 8
+Thu Jan  1 00:00:00 1970     Conn19 input play 
+Thu Jan  1 00:00:00 1970     Conn19 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input map #
+Thu Jan  1 00:00:00 1970     Play#8 command map
+Thu Jan  1 00:00:00 1970     Play#8 input read y
+Thu Jan  1 00:00:00 1970     Play#8 command read
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 50 gyyygh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input des -7,-3 )
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input lost *
+Thu Jan  1 00:00:00 1970     Play#8 command lost
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn20 input user tester
+Thu Jan  1 00:00:00 1970     Conn20 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn20 input pass peter
+Thu Jan  1 00:00:00 1970     Conn20 input play 
+Thu Jan  1 00:00:00 1970     Conn20 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn21 input user tester
+Thu Jan  1 00:00:00 1970     Conn21 input coun 1
+Thu Jan  1 00:00:00 1970     Conn21 input pass 1
+Thu Jan  1 00:00:00 1970     Conn21 input play 
+Thu Jan  1 00:00:00 1970     Conn21 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input ship *
+Thu Jan  1 00:00:00 1970     Play#1 command ship
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input des 4,-2 t
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input enlist 3,-1 50
+Thu Jan  1 00:00:00 1970     Play#1 command enlist
+Thu Jan  1 00:00:00 1970     Play#1 input mov m 3,-1 50 5,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input load m 0 50
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input nav 0
+Thu Jan  1 00:00:00 1970     Play#1 command navigate
+Thu Jan  1 00:00:00 1970     Play#1 input j
+Thu Jan  1 00:00:00 1970     Play#1 input j
+Thu Jan  1 00:00:00 1970     Play#1 input h
+Thu Jan  1 00:00:00 1970     Play#1 input assault 11,-1 0
+Thu Jan  1 00:00:00 1970     Play#1 command assault
+Thu Jan  1 00:00:00 1970     Play#1 input 25
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn22 input user tester
+Thu Jan  1 00:00:00 1970     Conn22 input coun 8
+Thu Jan  1 00:00:00 1970     Conn22 input pass 8
+Thu Jan  1 00:00:00 1970     Conn22 input play 
+Thu Jan  1 00:00:00 1970     Conn22 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input map #
+Thu Jan  1 00:00:00 1970     Play#8 command map
+Thu Jan  1 00:00:00 1970     Play#8 input read y
+Thu Jan  1 00:00:00 1970     Play#8 command read
+Thu Jan  1 00:00:00 1970     Play#8 input lost *
+Thu Jan  1 00:00:00 1970     Play#8 command lost
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn23 input user tester
+Thu Jan  1 00:00:00 1970     Conn23 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn23 input pass peter
+Thu Jan  1 00:00:00 1970     Conn23 input play 
+Thu Jan  1 00:00:00 1970     Conn23 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn24 input user tester
+Thu Jan  1 00:00:00 1970     Conn24 input coun 1
+Thu Jan  1 00:00:00 1970     Conn24 input pass 1
+Thu Jan  1 00:00:00 1970     Conn24 input play 
+Thu Jan  1 00:00:00 1970     Conn24 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input real 0 -8:16,-4:4
+Thu Jan  1 00:00:00 1970     Play#1 command realm
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input ship *
+Thu Jan  1 00:00:00 1970     Play#1 command ship
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn25 input user tester
+Thu Jan  1 00:00:00 1970     Conn25 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn25 input pass peter
+Thu Jan  1 00:00:00 1970     Conn25 input play 
+Thu Jan  1 00:00:00 1970     Conn25 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn26 input user tester
+Thu Jan  1 00:00:00 1970     Conn26 input coun 1
+Thu Jan  1 00:00:00 1970     Conn26 input pass 1
+Thu Jan  1 00:00:00 1970     Conn26 input play 
+Thu Jan  1 00:00:00 1970     Conn26 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input real 1 -16:24,-8:8
+Thu Jan  1 00:00:00 1970     Play#1 command realm
+Thu Jan  1 00:00:00 1970     Play#1 input convert 11,-1 76
+Thu Jan  1 00:00:00 1970     Play#1 command convert
+Thu Jan  1 00:00:00 1970     Play#1 input thres c -2,2 769
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov c -2,2 47 0,2
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input des 0:2,2 g
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 0:2,2 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c 0:2,2 769
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 3,1 g
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 3,1 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c 3,1 769
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 0,0 m
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input deliver i 0,0 0 g
+Thu Jan  1 00:00:00 1970     Play#1 command deliver
+Thu Jan  1 00:00:00 1970     Play#1 input thres d -1,-1 300
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 0,0 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov d 0,0 1 -1,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input thres c 0,-2 100
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c 4:6,-2 210
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c -1,-1 100
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres i 4,0 999
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres i 3,-1 999
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des -2,0 j
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres c -2,0 769
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres l -2,0 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#1 command bmap
+Thu Jan  1 00:00:00 1970     Play#1 input nav 0 njnh
+Thu Jan  1 00:00:00 1970     Play#1 command navigate
+Thu Jan  1 00:00:00 1970     Play#1 input look 0
+Thu Jan  1 00:00:00 1970     Play#1 command lookout
+Thu Jan  1 00:00:00 1970     Play#1 input radar 0
+Thu Jan  1 00:00:00 1970     Play#1 command radar
+Thu Jan  1 00:00:00 1970     Play#1 input radar 11,-1
+Thu Jan  1 00:00:00 1970     Play#1 command radar
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input ship *
+Thu Jan  1 00:00:00 1970     Play#1 command ship
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn27 input user tester
+Thu Jan  1 00:00:00 1970     Conn27 input coun 8
+Thu Jan  1 00:00:00 1970     Conn27 input pass 8
+Thu Jan  1 00:00:00 1970     Conn27 input play 
+Thu Jan  1 00:00:00 1970     Conn27 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 gh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 yh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 ygh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 yyh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 yyyh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 yyyyh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 yygh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 yygyh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 yygyyh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 bh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 bgh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 nh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 njh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 yuh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 yuyh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 yuuh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 0,0 1 yuuyh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 2,0 1 jh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 2,0 1 jjh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 2,0 1 jjjh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 2,0 1 uh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 2,0 1 ujh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 2,0 1 ujjh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 2,0 1 uyh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 2,0 1 uuh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input exp c 2,0 1 uujh
+Thu Jan  1 00:00:00 1970     Play#8 command explore
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input map #
+Thu Jan  1 00:00:00 1970     Play#8 command map
+Thu Jan  1 00:00:00 1970     Play#8 input read y
+Thu Jan  1 00:00:00 1970     Play#8 command read
+Thu Jan  1 00:00:00 1970     Play#8 input prod *
+Thu Jan  1 00:00:00 1970     Play#8 command production
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn28 input user tester
+Thu Jan  1 00:00:00 1970     Conn28 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn28 input pass peter
+Thu Jan  1 00:00:00 1970     Conn28 input play 
+Thu Jan  1 00:00:00 1970     Conn28 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn29 input user tester
+Thu Jan  1 00:00:00 1970     Conn29 input coun 1
+Thu Jan  1 00:00:00 1970     Conn29 input pass 1
+Thu Jan  1 00:00:00 1970     Conn29 input play 
+Thu Jan  1 00:00:00 1970     Conn29 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input build bridge 5,-1 j
+Thu Jan  1 00:00:00 1970     Play#1 command build
+Thu Jan  1 00:00:00 1970     Play#1 input explore c 5,-1 1 jh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input mov c 5,-1 76 7,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input thres c 7,-1 77
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input dist * 5,-1
+Thu Jan  1 00:00:00 1970     Play#1 command distribute
+Thu Jan  1 00:00:00 1970     Play#1 input des 1,1 m
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input deliver i 1,1 0 g
+Thu Jan  1 00:00:00 1970     Play#1 command deliver
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 1,1 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov d 1,1 1 -1,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input des -1,1 k
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres h -1,1 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c -1,1 769
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des -4:-2,-2 o
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres o -4:-2,-2 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c -4:-2,-2 769
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 1,-3 o
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres o 1,-3 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c 1,-3 769
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 4:8,2 g
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 4:8,2 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c 4:8,2 769
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c * ?c_dist=768 769
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#1 command bmap
+Thu Jan  1 00:00:00 1970     Play#1 input radar 11,-1
+Thu Jan  1 00:00:00 1970     Play#1 command radar
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input ship *
+Thu Jan  1 00:00:00 1970     Play#1 command ship
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn30 input user tester
+Thu Jan  1 00:00:00 1970     Conn30 input coun 8
+Thu Jan  1 00:00:00 1970     Conn30 input pass 8
+Thu Jan  1 00:00:00 1970     Conn30 input play 
+Thu Jan  1 00:00:00 1970     Conn30 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input des 7,-1 c
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input capital 7,-1
+Thu Jan  1 00:00:00 1970     Play#8 command capital
+Thu Jan  1 00:00:00 1970     Play#8 input des * ?gold>1 g
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres d * ?newdes=g 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres d * ?des=g 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres d 4,0 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres d 1,-1 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des -5,-3 o
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres o -5,-3 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des -6,-4 o
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres o -6,-4 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des 1,-1 m
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres i 1,-1 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des 3,1 w
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input dist * 3,1
+Thu Jan  1 00:00:00 1970     Play#8 command distribute
+Thu Jan  1 00:00:00 1970     Play#8 input thres c 0:2,0 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c 1,-1 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c 4,0 350
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c 3,-1 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input mov c 2,0 231 jh
+Thu Jan  1 00:00:00 1970     Play#8 command move
+Thu Jan  1 00:00:00 1970     Play#8 input mov c 0,0 231 jjh
+Thu Jan  1 00:00:00 1970     Play#8 command move
+Thu Jan  1 00:00:00 1970     Play#8 input mov c 1,-1 231 jh
+Thu Jan  1 00:00:00 1970     Play#8 command move
+Thu Jan  1 00:00:00 1970     Play#8 input bmap #
+Thu Jan  1 00:00:00 1970     Play#8 command bmap
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input map #
+Thu Jan  1 00:00:00 1970     Play#8 command map
+Thu Jan  1 00:00:00 1970     Play#8 input read y
+Thu Jan  1 00:00:00 1970     Play#8 command read
+Thu Jan  1 00:00:00 1970     Play#8 input prod *
+Thu Jan  1 00:00:00 1970     Play#8 command production
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn31 input user tester
+Thu Jan  1 00:00:00 1970     Conn31 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn31 input pass peter
+Thu Jan  1 00:00:00 1970     Conn31 input play 
+Thu Jan  1 00:00:00 1970     Conn31 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn32 input user tester
+Thu Jan  1 00:00:00 1970     Conn32 input coun 1
+Thu Jan  1 00:00:00 1970     Conn32 input pass 1
+Thu Jan  1 00:00:00 1970     Conn32 input play 
+Thu Jan  1 00:00:00 1970     Conn32 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input des 0,2 m
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input deliver i 0,2 0 j
+Thu Jan  1 00:00:00 1970     Play#1 command deliver
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 0,2 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov d 0,2 1 -1,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input des 3,1 m
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input deliver i 3,1 0 j
+Thu Jan  1 00:00:00 1970     Play#1 command deliver
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 3,1 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov d 3,1 1 -1,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input des 2,2 k
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres h 2,2 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 2,2 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov d 2,2 1 -1,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 4,-2 15
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres o 4,-2 75
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 4,-2 150
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 5:7,1 g
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 5:7,1 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c 5:7,1 769
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 10,2 g
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 10,2 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c 10,2 769
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input radar 11,-1
+Thu Jan  1 00:00:00 1970     Play#1 command radar
+Thu Jan  1 00:00:00 1970     Play#1 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#1 command bmap
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input ship *
+Thu Jan  1 00:00:00 1970     Play#1 command ship
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn33 input user tester
+Thu Jan  1 00:00:00 1970     Conn33 input coun 8
+Thu Jan  1 00:00:00 1970     Conn33 input pass 8
+Thu Jan  1 00:00:00 1970     Conn33 input play 
+Thu Jan  1 00:00:00 1970     Conn33 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input thres c -3:-1,-1 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des 0:2,0 m
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres i 0:2,0 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input bmap #
+Thu Jan  1 00:00:00 1970     Play#8 command bmap
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input map #
+Thu Jan  1 00:00:00 1970     Play#8 command map
+Thu Jan  1 00:00:00 1970     Play#8 input read y
+Thu Jan  1 00:00:00 1970     Play#8 command read
+Thu Jan  1 00:00:00 1970     Play#8 input prod *
+Thu Jan  1 00:00:00 1970     Play#8 command production
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn34 input user tester
+Thu Jan  1 00:00:00 1970     Conn34 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn34 input pass peter
+Thu Jan  1 00:00:00 1970     Conn34 input play 
+Thu Jan  1 00:00:00 1970     Conn34 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn35 input user tester
+Thu Jan  1 00:00:00 1970     Conn35 input coun 1
+Thu Jan  1 00:00:00 1970     Conn35 input pass 1
+Thu Jan  1 00:00:00 1970     Conn35 input play 
+Thu Jan  1 00:00:00 1970     Conn35 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input mov u 2,0 10 7,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input des -2,2 i
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres l -2,2 600
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres h -2,2 300
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres s -2,2 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres o -2,2 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov o -2,2 1 4,-2
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input thres c * ?des#= 769
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c -1:1,3 100
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#1 command bmap
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input ship *
+Thu Jan  1 00:00:00 1970     Play#1 command ship
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn36 input user tester
+Thu Jan  1 00:00:00 1970     Conn36 input coun 8
+Thu Jan  1 00:00:00 1970     Conn36 input pass 8
+Thu Jan  1 00:00:00 1970     Conn36 input play 
+Thu Jan  1 00:00:00 1970     Conn36 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input thres d 1,-1 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input mov d 1,-1 1 4,0
+Thu Jan  1 00:00:00 1970     Play#8 command move
+Thu Jan  1 00:00:00 1970     Play#8 input des 3,-1 m
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres i 3,-1 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres d 3,-1 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input mov d 3,-1 1 4,0
+Thu Jan  1 00:00:00 1970     Play#8 command move
+Thu Jan  1 00:00:00 1970     Play#8 input thres c -6,-4 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c 6,-2 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c 1,-3 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des 4,0 b
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres d 4,0 300
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres d 0:2,0 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input mov d 0,0 1 4,0
+Thu Jan  1 00:00:00 1970     Play#8 command move
+Thu Jan  1 00:00:00 1970     Play#8 input mov d 2,0 1 4,0
+Thu Jan  1 00:00:00 1970     Play#8 command move
+Thu Jan  1 00:00:00 1970     Play#8 input thres i -3,-1 999
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input bmap #
+Thu Jan  1 00:00:00 1970     Play#8 command bmap
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input map #
+Thu Jan  1 00:00:00 1970     Play#8 command map
+Thu Jan  1 00:00:00 1970     Play#8 input read y
+Thu Jan  1 00:00:00 1970     Play#8 command read
+Thu Jan  1 00:00:00 1970     Play#8 input prod *
+Thu Jan  1 00:00:00 1970     Play#8 command production
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn37 input user tester
+Thu Jan  1 00:00:00 1970     Conn37 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn37 input pass peter
+Thu Jan  1 00:00:00 1970     Conn37 input play 
+Thu Jan  1 00:00:00 1970     Conn37 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn38 input user tester
+Thu Jan  1 00:00:00 1970     Conn38 input coun 1
+Thu Jan  1 00:00:00 1970     Conn38 input pass 1
+Thu Jan  1 00:00:00 1970     Conn38 input play 
+Thu Jan  1 00:00:00 1970     Conn38 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input mov h 5,-1 100 7,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input build bridge 7,-1 j
+Thu Jan  1 00:00:00 1970     Play#1 command build
+Thu Jan  1 00:00:00 1970     Play#1 input explore c 7,-1 1 jh
+Thu Jan  1 00:00:00 1970     Play#1 command explore
+Thu Jan  1 00:00:00 1970     Play#1 input thres c 9,-1 77
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov u 7,-1 12 4,0
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input thres u 2,0 579
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres u 4,0 869
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres i 4,0 1200
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres u 11,-1 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 6,-2 250
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 7,1 d
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 7,1 200
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres h 7,1 100
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres o 7,1 20
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres g 7,1 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 7,1 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov d 7,1 1 -1,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input des 5,1 j
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 5,1 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 5,1 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov d 5,1 1 -1,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input des 4,2 r
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 4,2 100
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres o 4,2 50
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 4,2 10
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 6,2 w
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 6,2 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov d 6,2 1 -1,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input des 8,2 e
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 8,2 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov d 8,2 1 -1,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input thres m 8,2 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 10,2 !
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 10,2 200
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres h 10,2 200
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres s 10,2 200
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres g 10,2 25
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 10,2 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input mov d 10,2 1 -1,-1
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input des 5,3 p
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 5,3 75
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input dist #1 5,-1
+Thu Jan  1 00:00:00 1970     Play#1 command distribute
+Thu Jan  1 00:00:00 1970     Play#1 input thres c -1:1,3 769
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input spy 11,-1
+Thu Jan  1 00:00:00 1970     Play#1 command spy
+Thu Jan  1 00:00:00 1970     Play#1 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#1 command bmap
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input ship *
+Thu Jan  1 00:00:00 1970     Play#1 command ship
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn39 input user tester
+Thu Jan  1 00:00:00 1970     Conn39 input coun 8
+Thu Jan  1 00:00:00 1970     Conn39 input pass 8
+Thu Jan  1 00:00:00 1970     Conn39 input play 
+Thu Jan  1 00:00:00 1970     Conn39 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input des -3,-1 j
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres i -3,-1 999
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres l -3,-1 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c 6,0 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres d -3,-1 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input mov d -3,-1 1 4,0
+Thu Jan  1 00:00:00 1970     Play#8 command move
+Thu Jan  1 00:00:00 1970     Play#8 input thres l 1,-3 300
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres i -1,1 999
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres i 0,-4 999
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input bmap #
+Thu Jan  1 00:00:00 1970     Play#8 command bmap
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input map #
+Thu Jan  1 00:00:00 1970     Play#8 command map
+Thu Jan  1 00:00:00 1970     Play#8 input read y
+Thu Jan  1 00:00:00 1970     Play#8 command read
+Thu Jan  1 00:00:00 1970     Play#8 input prod *
+Thu Jan  1 00:00:00 1970     Play#8 command production
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn40 input user tester
+Thu Jan  1 00:00:00 1970     Conn40 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn40 input pass peter
+Thu Jan  1 00:00:00 1970     Conn40 input play 
+Thu Jan  1 00:00:00 1970     Conn40 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn41 input user tester
+Thu Jan  1 00:00:00 1970     Conn41 input coun 1
+Thu Jan  1 00:00:00 1970     Conn41 input pass 1
+Thu Jan  1 00:00:00 1970     Conn41 input play 
+Thu Jan  1 00:00:00 1970     Conn41 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 6,-2 300
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 5,-1 200
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres h 5,-1 200
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres i 5,-1 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres o 5,-1 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 5,-1 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input dist #1 6,2
+Thu Jan  1 00:00:00 1970     Play#1 command distribute
+Thu Jan  1 00:00:00 1970     Play#1 input build l 10,2 cav
+Thu Jan  1 00:00:00 1970     Play#1 command build
+Thu Jan  1 00:00:00 1970     Play#1 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#1 command bmap
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input ship *
+Thu Jan  1 00:00:00 1970     Play#1 command ship
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn42 input user tester
+Thu Jan  1 00:00:00 1970     Conn42 input coun 8
+Thu Jan  1 00:00:00 1970     Conn42 input pass 8
+Thu Jan  1 00:00:00 1970     Conn42 input play 
+Thu Jan  1 00:00:00 1970     Conn42 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input des -1,-1 m
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres i -1,-1 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres d -1,-1 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input mov d -1,-1 1 4,0
+Thu Jan  1 00:00:00 1970     Play#8 command move
+Thu Jan  1 00:00:00 1970     Play#8 input des 1,-3 l
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input des -1,1 j
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres l -1,1 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des 0,-4 k
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres h 0,-4 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres d 1,-3 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres l 6,-2 300
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres o 6,-2 150
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres d 6,-2 30
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres l 8,0 600
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres h 8,0 300
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c -3:-1,1 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c 0,-4 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c 8,0 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input bmap #
+Thu Jan  1 00:00:00 1970     Play#8 command bmap
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input map #
+Thu Jan  1 00:00:00 1970     Play#8 command map
+Thu Jan  1 00:00:00 1970     Play#8 input read y
+Thu Jan  1 00:00:00 1970     Play#8 command read
+Thu Jan  1 00:00:00 1970     Play#8 input prod *
+Thu Jan  1 00:00:00 1970     Play#8 command production
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn43 input user tester
+Thu Jan  1 00:00:00 1970     Conn43 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn43 input pass peter
+Thu Jan  1 00:00:00 1970     Conn43 input play 
+Thu Jan  1 00:00:00 1970     Conn43 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn44 input user tester
+Thu Jan  1 00:00:00 1970     Conn44 input coun 1
+Thu Jan  1 00:00:00 1970     Conn44 input pass 1
+Thu Jan  1 00:00:00 1970     Conn44 input play 
+Thu Jan  1 00:00:00 1970     Conn44 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input build l 10,2 cav 5
+Thu Jan  1 00:00:00 1970     Play#1 command build
+Thu Jan  1 00:00:00 1970     Play#1 input build sh 5,-1 cs 3
+Thu Jan  1 00:00:00 1970     Play#1 command build
+Thu Jan  1 00:00:00 1970     Play#1 input thres m 10,2 25
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres i -4:-2,-2 999
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres i 1,-3 999
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#1 command bmap
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input ship *
+Thu Jan  1 00:00:00 1970     Play#1 command ship
+Thu Jan  1 00:00:00 1970     Play#1 input land *
+Thu Jan  1 00:00:00 1970     Play#1 command land
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn45 input user tester
+Thu Jan  1 00:00:00 1970     Conn45 input coun 8
+Thu Jan  1 00:00:00 1970     Conn45 input pass 8
+Thu Jan  1 00:00:00 1970     Conn45 input play 
+Thu Jan  1 00:00:00 1970     Conn45 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input des 6,-2 t
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input des 6,0 h
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres d 6,0 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres l 6,0 200
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres h 6,0 200
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des 8,0 i
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres s 8,0 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c 4,0 400
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c -2:4,-2 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres i 4,-2 999
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des 4,-2 j
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres i -3,1 999
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input bmap #
+Thu Jan  1 00:00:00 1970     Play#8 command bmap
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input map #
+Thu Jan  1 00:00:00 1970     Play#8 command map
+Thu Jan  1 00:00:00 1970     Play#8 input read y
+Thu Jan  1 00:00:00 1970     Play#8 command read
+Thu Jan  1 00:00:00 1970     Play#8 input prod *
+Thu Jan  1 00:00:00 1970     Play#8 command production
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn46 input user tester
+Thu Jan  1 00:00:00 1970     Conn46 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn46 input pass peter
+Thu Jan  1 00:00:00 1970     Conn46 input play 
+Thu Jan  1 00:00:00 1970     Conn46 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn47 input user tester
+Thu Jan  1 00:00:00 1970     Conn47 input coun 1
+Thu Jan  1 00:00:00 1970     Conn47 input pass 1
+Thu Jan  1 00:00:00 1970     Conn47 input play 
+Thu Jan  1 00:00:00 1970     Conn47 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input des -2,-2 j
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres l -2,-2 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des -4,-2 k
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres h -4,-2 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres o -4:-2,-2 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 1,-3 j
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 1,-3 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres o 1,-3 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des -1,3 o
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres o -1,3 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 2,2 m
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres i 2,2 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres h 2,2 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 3,-1 m
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 3,-1 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres i 3,-1 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 6,-2 400
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input radar 11,-1
+Thu Jan  1 00:00:00 1970     Play#1 command radar
+Thu Jan  1 00:00:00 1970     Play#1 input lload m 0 20
+Thu Jan  1 00:00:00 1970     Play#1 command lload
+Thu Jan  1 00:00:00 1970     Play#1 input lload m 1/2/3 1
+Thu Jan  1 00:00:00 1970     Play#1 command lload
+Thu Jan  1 00:00:00 1970     Play#1 input march 0/1/2/3 5,-1
+Thu Jan  1 00:00:00 1970     Play#1 command march
+Thu Jan  1 00:00:00 1970     Play#1 input load m 1 25
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input load c 1 300
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input load l 1 100
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input load h 1 100
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input load c 2 10
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input load c 3 10
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input load land 1 0
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input load land 2 1
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input load land 3 2
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input load land 3 3
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input build l 10,2 art
+Thu Jan  1 00:00:00 1970     Play#1 command build
+Thu Jan  1 00:00:00 1970     Play#1 input nav 2 nh
+Thu Jan  1 00:00:00 1970     Play#1 command navigate
+Thu Jan  1 00:00:00 1970     Play#1 input scrap l 1
+Thu Jan  1 00:00:00 1970     Play#1 command scrap
+Thu Jan  1 00:00:00 1970     Play#1 input y
+Thu Jan  1 00:00:00 1970     Play#1 input scrap s 2
+Thu Jan  1 00:00:00 1970     Play#1 command scrap
+Thu Jan  1 00:00:00 1970     Play#1 input y
+Thu Jan  1 00:00:00 1970     Play#1 input scuttle l 1
+Thu Jan  1 00:00:00 1970     Play#1 command scuttle
+Thu Jan  1 00:00:00 1970     Play#1 input y
+Thu Jan  1 00:00:00 1970     Play#1 input scuttle s 2
+Thu Jan  1 00:00:00 1970     Play#1 command scuttle
+Thu Jan  1 00:00:00 1970     Play#1 input y
+Thu Jan  1 00:00:00 1970     Play#1 input comm 5,-1
+Thu Jan  1 00:00:00 1970     Play#1 command commodity
+Thu Jan  1 00:00:00 1970     Play#1 input scrap l 2
+Thu Jan  1 00:00:00 1970     Play#1 command scrap
+Thu Jan  1 00:00:00 1970     Play#1 input y
+Thu Jan  1 00:00:00 1970     Play#1 input comm 5,-1
+Thu Jan  1 00:00:00 1970     Play#1 command commodity
+Thu Jan  1 00:00:00 1970     Play#1 input scrap s 3
+Thu Jan  1 00:00:00 1970     Play#1 command scrap
+Thu Jan  1 00:00:00 1970     Play#1 input y
+Thu Jan  1 00:00:00 1970     Play#1 input comm 5,-1
+Thu Jan  1 00:00:00 1970     Play#1 command commodity
+Thu Jan  1 00:00:00 1970     Play#1 input thres i 5,-1 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres d 5,-1 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres o 5,-1 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#1 command bmap
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input ship *
+Thu Jan  1 00:00:00 1970     Play#1 command ship
+Thu Jan  1 00:00:00 1970     Play#1 input land *
+Thu Jan  1 00:00:00 1970     Play#1 command land
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn48 input user tester
+Thu Jan  1 00:00:00 1970     Conn48 input coun 2
+Thu Jan  1 00:00:00 1970     Conn48 input pass 2
+Thu Jan  1 00:00:00 1970     Conn48 input play 
+Thu Jan  1 00:00:00 1970     Conn48 login 2 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 uh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 jh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 bh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 nh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input des * ?des=- +
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 yuh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 ygh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 juh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 ggh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 bgh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 bbh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 bnh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input des * ?des=- +
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 jujh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 gggh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 bggh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 bbgh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 bbbh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 bbnh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 bnnh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input des * ?des=- +
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 gggyh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 ggggh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 bgggh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 bbggh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 bbbgh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input des * ?des=- +
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 2,0  1 gggyuh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input des * ?des=- +
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 yh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 gh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 bh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 nh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input des * ?des=- +
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 uuh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 juh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 ggh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 jjh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 bgh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 jnh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 bbh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 bnh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 nnh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input des * ?des=- +
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 ggyh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 jjuh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 gggh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 bggh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 bbgh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 bbbh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 bbnh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 bnnh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 nnnh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input des * ?des=- +
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 ggyyh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 ggyuh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 ggygh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 jjujh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input explore c 0,0  1 bgggh
+Thu Jan  1 00:00:00 1970     Play#2 command explore
+Thu Jan  1 00:00:00 1970     Play#2 input des * ?des=- +
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input designate 2,-2 c
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input capital 2,-2
+Thu Jan  1 00:00:00 1970     Play#2 command capital
+Thu Jan  1 00:00:00 1970     Play#2 input des * ?gold>10 g
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input thres d * ?gold>10 1
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input des  -1,-1 o
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input thres o -1,-1 1
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input des 1,-1 b
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input thres d 1,-1 300
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres c * ?des#+ 769
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres c -4,-2 230
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres c 2,-2 50
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres c 1,-1 385
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres c 3,-1 300
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres c 5,-1 600
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input des -4,-2 w
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input distr * 1,-1
+Thu Jan  1 00:00:00 1970     Play#2 command distribute
+Thu Jan  1 00:00:00 1970     Play#2 input mov c 1,1 231 -4,-2
+Thu Jan  1 00:00:00 1970     Play#2 command move
+Thu Jan  1 00:00:00 1970     Play#2 input demob 0:2,0 55
+Thu Jan  1 00:00:00 1970     Play#2 command demobilize
+Thu Jan  1 00:00:00 1970     Play#2 input y
+Thu Jan  1 00:00:00 1970     Play#2 input mov c 0,0 260 3,-1
+Thu Jan  1 00:00:00 1970     Play#2 command move
+Thu Jan  1 00:00:00 1970     Play#2 input mov c 2,0 165 3,-1
+Thu Jan  1 00:00:00 1970     Play#2 command move
+Thu Jan  1 00:00:00 1970     Play#2 input mov c 2,0 100 5,-1
+Thu Jan  1 00:00:00 1970     Play#2 command move
+Thu Jan  1 00:00:00 1970     Play#2 input thres u 0:2,0 579
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres u -5,-1 579
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#2 command bmap
+Thu Jan  1 00:00:00 1970     Play#2 input cen *
+Thu Jan  1 00:00:00 1970     Play#2 command census
+Thu Jan  1 00:00:00 1970     Play#2 input map #
+Thu Jan  1 00:00:00 1970     Play#2 command map
+Thu Jan  1 00:00:00 1970     Play#2 input read y
+Thu Jan  1 00:00:00 1970     Play#2 command read
+Thu Jan  1 00:00:00 1970     Play#2 input prod *
+Thu Jan  1 00:00:00 1970     Play#2 command production
+Thu Jan  1 00:00:00 1970     Play#2 input ctld
+Thu Jan  1 00:00:00 1970     Play#2 logout 2
+Thu Jan  1 00:00:00 1970     Conn49 input user tester
+Thu Jan  1 00:00:00 1970     Conn49 input coun 8
+Thu Jan  1 00:00:00 1970     Conn49 input pass 8
+Thu Jan  1 00:00:00 1970     Conn49 input play 
+Thu Jan  1 00:00:00 1970     Conn49 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input thres c -2,0 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c 1,1 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c 5,-1 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c -5,-3 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c -4,-2 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres c -1,-3 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres u -1:3,-1 512
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres u 0:2,0 512
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres d -3,1 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres l -3,1 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres i 2,-2 999
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des 2,-2 k
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres h 2,-2 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des -3,1 j
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input bmap #
+Thu Jan  1 00:00:00 1970     Play#8 command bmap
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input map #
+Thu Jan  1 00:00:00 1970     Play#8 command map
+Thu Jan  1 00:00:00 1970     Play#8 input read y
+Thu Jan  1 00:00:00 1970     Play#8 command read
+Thu Jan  1 00:00:00 1970     Play#8 input prod *
+Thu Jan  1 00:00:00 1970     Play#8 command production
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn50 input user tester
+Thu Jan  1 00:00:00 1970     Conn50 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn50 input pass peter
+Thu Jan  1 00:00:00 1970     Conn50 input play 
+Thu Jan  1 00:00:00 1970     Conn50 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn51 input user tester
+Thu Jan  1 00:00:00 1970     Conn51 input coun 1
+Thu Jan  1 00:00:00 1970     Conn51 input pass 1
+Thu Jan  1 00:00:00 1970     Conn51 input play 
+Thu Jan  1 00:00:00 1970     Conn51 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input lload m 4/5 5
+Thu Jan  1 00:00:00 1970     Play#1 command lload
+Thu Jan  1 00:00:00 1970     Play#1 input lload s 5 200
+Thu Jan  1 00:00:00 1970     Play#1 command lload
+Thu Jan  1 00:00:00 1970     Play#1 input lload g 5 20
+Thu Jan  1 00:00:00 1970     Play#1 command lload
+Thu Jan  1 00:00:00 1970     Play#1 input march 4/5 ggyyh
+Thu Jan  1 00:00:00 1970     Play#1 command march
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 6,-2 450
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 11,-1 *
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres l 11,-1 200
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres h 11,-1 200
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres p 11,-1 200
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres u 3:5,1 579
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 2,-2 o
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input build s 5,-1 tk
+Thu Jan  1 00:00:00 1970     Play#1 command build
+Thu Jan  1 00:00:00 1970     Play#1 input load c 2 200
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input telegram 2
+Thu Jan  1 00:00:00 1970     Play#1 command telegram
+Thu Jan  1 00:00:00 1970     Play#1 input Want an alliance?
+Thu Jan  1 00:00:00 1970     Play#1 input .
+Thu Jan  1 00:00:00 1970     Play#1 input declare war 8
+Thu Jan  1 00:00:00 1970     Play#1 command declare
+Thu Jan  1 00:00:00 1970     Play#1 input declare alliance 2
+Thu Jan  1 00:00:00 1970     Play#1 command declare
+Thu Jan  1 00:00:00 1970     Play#1 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#1 command bmap
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input ship *
+Thu Jan  1 00:00:00 1970     Play#1 command ship
+Thu Jan  1 00:00:00 1970     Play#1 input land *
+Thu Jan  1 00:00:00 1970     Play#1 command land
+Thu Jan  1 00:00:00 1970     Play#1 input plane *
+Thu Jan  1 00:00:00 1970     Play#1 command plane
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn52 input user tester
+Thu Jan  1 00:00:00 1970     Conn52 input coun 2
+Thu Jan  1 00:00:00 1970     Conn52 input pass 2
+Thu Jan  1 00:00:00 1970     Conn52 input play 
+Thu Jan  1 00:00:00 1970     Conn52 login 2 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#2 input des 0:2,0 m
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input thres i 0:2,0 1
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres i -5,-1 999
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input dist * -4,-2
+Thu Jan  1 00:00:00 1970     Play#2 command distribute
+Thu Jan  1 00:00:00 1970     Play#2 input thres o 4,0 1
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input wall
+Thu Jan  1 00:00:00 1970     Play#2 command wall
+Thu Jan  1 00:00:00 1970     Play#2 input Sure
+Thu Jan  1 00:00:00 1970     Play#2 input .
+Thu Jan  1 00:00:00 1970     Play#2 input declare alliance 1
+Thu Jan  1 00:00:00 1970     Play#2 command declare
+Thu Jan  1 00:00:00 1970     Play#2 input declare hostile 8
+Thu Jan  1 00:00:00 1970     Play#2 command declare
+Thu Jan  1 00:00:00 1970     Play#2 input wire y
+Thu Jan  1 00:00:00 1970     Play#2 command wire
+Thu Jan  1 00:00:00 1970     Play#2 input announce
+Thu Jan  1 00:00:00 1970     Play#2 command announce
+Thu Jan  1 00:00:00 1970     Play#2 input Hello World
+Thu Jan  1 00:00:00 1970     Play#2 input .
+Thu Jan  1 00:00:00 1970     Play#2 input wire y
+Thu Jan  1 00:00:00 1970     Play#2 command wire
+Thu Jan  1 00:00:00 1970     Play#2 input flash 1 Testing Flash
+Thu Jan  1 00:00:00 1970     Play#2 command flash
+Thu Jan  1 00:00:00 1970     Play#2 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#2 command bmap
+Thu Jan  1 00:00:00 1970     Play#2 input cen *
+Thu Jan  1 00:00:00 1970     Play#2 command census
+Thu Jan  1 00:00:00 1970     Play#2 input map #
+Thu Jan  1 00:00:00 1970     Play#2 command map
+Thu Jan  1 00:00:00 1970     Play#2 input read y
+Thu Jan  1 00:00:00 1970     Play#2 command read
+Thu Jan  1 00:00:00 1970     Play#2 input prod *
+Thu Jan  1 00:00:00 1970     Play#2 command production
+Thu Jan  1 00:00:00 1970     Play#2 input ctld
+Thu Jan  1 00:00:00 1970     Play#2 logout 2
+Thu Jan  1 00:00:00 1970     Conn53 input user tester
+Thu Jan  1 00:00:00 1970     Conn53 input coun 8
+Thu Jan  1 00:00:00 1970     Conn53 input pass 8
+Thu Jan  1 00:00:00 1970     Conn53 input play 
+Thu Jan  1 00:00:00 1970     Conn53 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input thres c * 769
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres i -2:0,-2 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des -2:0,-2 m
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres d -2:2,-2 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres o 5,-1 10
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres l 5,-1 50
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres h 5,-1 100
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres h -6,-4 100
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input declare war 1
+Thu Jan  1 00:00:00 1970     Play#8 command declare
+Thu Jan  1 00:00:00 1970     Play#8 input declare hostile 2
+Thu Jan  1 00:00:00 1970     Play#8 command declare
+Thu Jan  1 00:00:00 1970     Play#8 input wire y
+Thu Jan  1 00:00:00 1970     Play#8 command wire
+Thu Jan  1 00:00:00 1970     Play#8 input bmap #
+Thu Jan  1 00:00:00 1970     Play#8 command bmap
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input map #
+Thu Jan  1 00:00:00 1970     Play#8 command map
+Thu Jan  1 00:00:00 1970     Play#8 input read y
+Thu Jan  1 00:00:00 1970     Play#8 command read
+Thu Jan  1 00:00:00 1970     Play#8 input prod *
+Thu Jan  1 00:00:00 1970     Play#8 command production
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn54 input user tester
+Thu Jan  1 00:00:00 1970     Conn54 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn54 input pass peter
+Thu Jan  1 00:00:00 1970     Conn54 input play 
+Thu Jan  1 00:00:00 1970     Conn54 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn55 input user tester
+Thu Jan  1 00:00:00 1970     Conn55 input coun 1
+Thu Jan  1 00:00:00 1970     Conn55 input pass 1
+Thu Jan  1 00:00:00 1970     Conn55 input play 
+Thu Jan  1 00:00:00 1970     Conn55 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input build p 11,-1 f1 3
+Thu Jan  1 00:00:00 1970     Play#1 command build
+Thu Jan  1 00:00:00 1970     Play#1 input thres s 11,-1 200
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres p 11,-1 200
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input des 2,-2 %
+Thu Jan  1 00:00:00 1970     Play#1 command designate
+Thu Jan  1 00:00:00 1970     Play#1 input thres p 2,-2 1
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres s 5,-1 200
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres g 5,-1 10
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres d -1,-1 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input thres c * 0
+Thu Jan  1 00:00:00 1970     Play#1 command threshold
+Thu Jan  1 00:00:00 1970     Play#1 input march 4/5 ujjjh
+Thu Jan  1 00:00:00 1970     Play#1 command march
+Thu Jan  1 00:00:00 1970     Play#1 input build s 5,-1 od
+Thu Jan  1 00:00:00 1970     Play#1 command build
+Thu Jan  1 00:00:00 1970     Play#1 input load c 3 200
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input build s 5,-1 ft
+Thu Jan  1 00:00:00 1970     Play#1 command build
+Thu Jan  1 00:00:00 1970     Play#1 input load c 4 200
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#1 command bmap
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input ship *
+Thu Jan  1 00:00:00 1970     Play#1 command ship
+Thu Jan  1 00:00:00 1970     Play#1 input land *
+Thu Jan  1 00:00:00 1970     Play#1 command land
+Thu Jan  1 00:00:00 1970     Play#1 input plane *
+Thu Jan  1 00:00:00 1970     Play#1 command plane
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn56 input user tester
+Thu Jan  1 00:00:00 1970     Conn56 input coun 2
+Thu Jan  1 00:00:00 1970     Conn56 input pass 2
+Thu Jan  1 00:00:00 1970     Conn56 input play 
+Thu Jan  1 00:00:00 1970     Conn56 login 2 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#2 input des -5,-1 j
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input thres l -5,-1 1
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres l 3,-1 300
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres c 5,-1 769
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres i 5,-1 999
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres c 7,-1 400
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#2 command bmap
+Thu Jan  1 00:00:00 1970     Play#2 input cen *
+Thu Jan  1 00:00:00 1970     Play#2 command census
+Thu Jan  1 00:00:00 1970     Play#2 input map #
+Thu Jan  1 00:00:00 1970     Play#2 command map
+Thu Jan  1 00:00:00 1970     Play#2 input read y
+Thu Jan  1 00:00:00 1970     Play#2 command read
+Thu Jan  1 00:00:00 1970     Play#2 input prod *
+Thu Jan  1 00:00:00 1970     Play#2 command production
+Thu Jan  1 00:00:00 1970     Play#2 input ctld
+Thu Jan  1 00:00:00 1970     Play#2 logout 2
+Thu Jan  1 00:00:00 1970     Conn57 input user tester
+Thu Jan  1 00:00:00 1970     Conn57 input coun 8
+Thu Jan  1 00:00:00 1970     Conn57 input pass 8
+Thu Jan  1 00:00:00 1970     Conn57 input play 
+Thu Jan  1 00:00:00 1970     Conn57 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input des 5,-1 d
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres g 5,-1 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des -6,-4 f
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres g -6,-4 7
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres s -6,-4 200
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des -4,-2 *
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres l -4,-2 200
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres h -4,-2 200
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres s -4,-2 200
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres d -4,-2 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des -1,-3 !
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres l -1,-3 200
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres h -1,-3 200
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres s -1,-3 200
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres g -1,-3 10
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres d -1,-3 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des -2,0 p
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres d -2,0 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres l -2,0 75
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input des 1,1 k
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres i 1,1 999
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres h 1,1 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres l 1,-3 400
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input mov m 0,0 55 -6,-4
+Thu Jan  1 00:00:00 1970     Play#8 command move
+Thu Jan  1 00:00:00 1970     Play#8 input bmap #
+Thu Jan  1 00:00:00 1970     Play#8 command bmap
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input map #
+Thu Jan  1 00:00:00 1970     Play#8 command map
+Thu Jan  1 00:00:00 1970     Play#8 input read y
+Thu Jan  1 00:00:00 1970     Play#8 command read
+Thu Jan  1 00:00:00 1970     Play#8 input prod *
+Thu Jan  1 00:00:00 1970     Play#8 command production
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn58 input user tester
+Thu Jan  1 00:00:00 1970     Conn58 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn58 input pass peter
+Thu Jan  1 00:00:00 1970     Conn58 input play 
+Thu Jan  1 00:00:00 1970     Conn58 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn59 input user tester
+Thu Jan  1 00:00:00 1970     Conn59 input coun 1
+Thu Jan  1 00:00:00 1970     Conn59 input pass 1
+Thu Jan  1 00:00:00 1970     Conn59 input play 
+Thu Jan  1 00:00:00 1970     Conn59 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input mov c 1,-1 230 jjh
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input mov c 3,-1 230 jh
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input mov c 2,-2 230 njh
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input mov c 4,-2 230 nh
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input mov c 6,-2 230 bh
+Thu Jan  1 00:00:00 1970     Play#1 command move
+Thu Jan  1 00:00:00 1970     Play#1 input load c 3/4 999
+Thu Jan  1 00:00:00 1970     Play#1 command load
+Thu Jan  1 00:00:00 1970     Play#1 input nav 3 6,0
+Thu Jan  1 00:00:00 1970     Play#1 command navigate
+Thu Jan  1 00:00:00 1970     Play#1 input h
+Thu Jan  1 00:00:00 1970     Play#1 input nav 3 vh
+Thu Jan  1 00:00:00 1970     Play#1 command navigate
+Thu Jan  1 00:00:00 1970     Play#1 input order 3 des 5,-1 6,0
+Thu Jan  1 00:00:00 1970     Play#1 command order
+Thu Jan  1 00:00:00 1970     Play#1 input order 3 level 1 end oil 1
+Thu Jan  1 00:00:00 1970     Play#1 command order
+Thu Jan  1 00:00:00 1970     Play#1 input nav 4 nvh
+Thu Jan  1 00:00:00 1970     Play#1 command navigate
+Thu Jan  1 00:00:00 1970     Play#1 input order 4 des 5,-1 6,0
+Thu Jan  1 00:00:00 1970     Play#1 command order
+Thu Jan  1 00:00:00 1970     Play#1 input order 4 level 1 start food 30
+Thu Jan  1 00:00:00 1970     Play#1 command order
+Thu Jan  1 00:00:00 1970     Play#1 input order 4 level 1 end food 30
+Thu Jan  1 00:00:00 1970     Play#1 command order
+Thu Jan  1 00:00:00 1970     Play#1 input reco 0 . 11,-1 ujbgh
+Thu Jan  1 00:00:00 1970     Play#1 command recon
+Thu Jan  1 00:00:00 1970     Play#1 input bomb 1 . stat 11,-1 ujh
+Thu Jan  1 00:00:00 1970     Play#1 command bomb
+Thu Jan  1 00:00:00 1970     Play#1 input mission p 2 o . 2
+Thu Jan  1 00:00:00 1970     Play#1 command mission
+Thu Jan  1 00:00:00 1970     Play#1 input fire l 5 12,-2
+Thu Jan  1 00:00:00 1970     Play#1 command fire
+Thu Jan  1 00:00:00 1970     Play#1 input attack 12,-2 0 0 0 0
+Thu Jan  1 00:00:00 1970     Play#1 command attack
+Thu Jan  1 00:00:00 1970     Play#1 input 0
+Thu Jan  1 00:00:00 1970     Play#1 input N
+Thu Jan  1 00:00:00 1970     Play#1 input attack 12,-2
+Thu Jan  1 00:00:00 1970     Play#1 command attack
+Thu Jan  1 00:00:00 1970     Play#1 input 1
+Thu Jan  1 00:00:00 1970     Play#1 input y
+Thu Jan  1 00:00:00 1970     Play#1 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#1 command bmap
+Thu Jan  1 00:00:00 1970     Play#1 input cen *
+Thu Jan  1 00:00:00 1970     Play#1 command census
+Thu Jan  1 00:00:00 1970     Play#1 input ship *
+Thu Jan  1 00:00:00 1970     Play#1 command ship
+Thu Jan  1 00:00:00 1970     Play#1 input land *
+Thu Jan  1 00:00:00 1970     Play#1 command land
+Thu Jan  1 00:00:00 1970     Play#1 input plane *
+Thu Jan  1 00:00:00 1970     Play#1 command plane
+Thu Jan  1 00:00:00 1970     Play#1 input map #
+Thu Jan  1 00:00:00 1970     Play#1 command map
+Thu Jan  1 00:00:00 1970     Play#1 input read y
+Thu Jan  1 00:00:00 1970     Play#1 command read
+Thu Jan  1 00:00:00 1970     Play#1 input prod *
+Thu Jan  1 00:00:00 1970     Play#1 command production
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970     Conn60 input user tester
+Thu Jan  1 00:00:00 1970     Conn60 input coun 2
+Thu Jan  1 00:00:00 1970     Conn60 input pass 2
+Thu Jan  1 00:00:00 1970     Conn60 input play 
+Thu Jan  1 00:00:00 1970     Conn60 login 2 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#2 input des 3,-1 l
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input thres d 3,-1 0
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input des 5,-1 k
+Thu Jan  1 00:00:00 1970     Play#2 command designate
+Thu Jan  1 00:00:00 1970     Play#2 input thres d 5,-1 0
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres h 5,-1 1
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres c 7,-1 769
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres i 7,-1 999
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres l -6,0 300
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres o -6,0 150
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres d -6,0 30
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input thres c -6,0 400
+Thu Jan  1 00:00:00 1970     Play#2 command threshold
+Thu Jan  1 00:00:00 1970     Play#2 input bmap #1
+Thu Jan  1 00:00:00 1970     Play#2 command bmap
+Thu Jan  1 00:00:00 1970     Play#2 input cen *
+Thu Jan  1 00:00:00 1970     Play#2 command census
+Thu Jan  1 00:00:00 1970     Play#2 input map #
+Thu Jan  1 00:00:00 1970     Play#2 command map
+Thu Jan  1 00:00:00 1970     Play#2 input read y
+Thu Jan  1 00:00:00 1970     Play#2 command read
+Thu Jan  1 00:00:00 1970     Play#2 input prod *
+Thu Jan  1 00:00:00 1970     Play#2 command production
+Thu Jan  1 00:00:00 1970     Play#2 input ctld
+Thu Jan  1 00:00:00 1970     Play#2 logout 2
+Thu Jan  1 00:00:00 1970     Conn61 input user tester
+Thu Jan  1 00:00:00 1970     Conn61 input coun 8
+Thu Jan  1 00:00:00 1970     Conn61 input pass 8
+Thu Jan  1 00:00:00 1970     Conn61 input play 
+Thu Jan  1 00:00:00 1970     Conn61 login 8 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#8 input des -4,-4 o
+Thu Jan  1 00:00:00 1970     Play#8 command designate
+Thu Jan  1 00:00:00 1970     Play#8 input thres o -4,-4 1
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input thres o -5,-3 0
+Thu Jan  1 00:00:00 1970     Play#8 command threshold
+Thu Jan  1 00:00:00 1970     Play#8 input bmap #
+Thu Jan  1 00:00:00 1970     Play#8 command bmap
+Thu Jan  1 00:00:00 1970     Play#8 input cen *
+Thu Jan  1 00:00:00 1970     Play#8 command census
+Thu Jan  1 00:00:00 1970     Play#8 input map #
+Thu Jan  1 00:00:00 1970     Play#8 command map
+Thu Jan  1 00:00:00 1970     Play#8 input read y
+Thu Jan  1 00:00:00 1970     Play#8 command read
+Thu Jan  1 00:00:00 1970     Play#8 input prod *
+Thu Jan  1 00:00:00 1970     Play#8 command production
+Thu Jan  1 00:00:00 1970     Play#8 input ctld
+Thu Jan  1 00:00:00 1970     Play#8 logout 8
+Thu Jan  1 00:00:00 1970     Conn62 input user tester
+Thu Jan  1 00:00:00 1970     Conn62 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn62 input pass peter
+Thu Jan  1 00:00:00 1970     Conn62 input play 
+Thu Jan  1 00:00:00 1970     Conn62 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input power new
+Thu Jan  1 00:00:00 1970     Play#0 command power
+Thu Jan  1 00:00:00 1970     Play#0 input report *
+Thu Jan  1 00:00:00 1970     Play#0 command report
+Thu Jan  1 00:00:00 1970     Play#0 input cen * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command census
+Thu Jan  1 00:00:00 1970     Play#0 input comm * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command commodity
+Thu Jan  1 00:00:00 1970     Play#0 input reso * ?own#0
+Thu Jan  1 00:00:00 1970     Play#0 command resource
+Thu Jan  1 00:00:00 1970     Play#0 input force
+Thu Jan  1 00:00:00 1970     Play#0 command force
+Thu Jan  1 00:00:00 1970     Update update 60
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn63 input user tester
+Thu Jan  1 00:00:00 1970     Conn63 input coun POGO
+Thu Jan  1 00:00:00 1970     Conn63 input pass peter
+Thu Jan  1 00:00:00 1970     Conn63 input play 
+Thu Jan  1 00:00:00 1970     Conn63 login 0 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#0 input xdump sect 0,0
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump ship *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump plane *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump land *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump nuke *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump news *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump treaty *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump trade *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump nat *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump loan *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump commodity *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump lost *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump realm 0
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump game *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump item *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump product *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump sect-chr *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump ship-chr *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump plane-chr *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump land-chr *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump nuke-chr *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump news-chr *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump infrastructure *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump updates *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump table *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump version *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump sector *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump agreement-status *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump land-chr-flags *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump level *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta-flags *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump meta-type *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump missions *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump nation-flags *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump nation-rejects *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump nation-relationships *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump nation-status *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump nuke-chr-flags *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump packing *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump page-headings *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump plague-stages *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump plane-chr-flags *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump plane-flags *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump resources *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump retreat-flags *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump ship-chr-flags *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump treaty-flags *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input xdump country *
+Thu Jan  1 00:00:00 1970     Play#0 command xdump
+Thu Jan  1 00:00:00 1970     Play#0 input ctld
+Thu Jan  1 00:00:00 1970     Play#0 logout 0
+Thu Jan  1 00:00:00 1970     Conn64 input user tester
+Thu Jan  1 00:00:00 1970     Conn64 input coun 1
+Thu Jan  1 00:00:00 1970     Conn64 input pass 1
+Thu Jan  1 00:00:00 1970     Conn64 input play 
+Thu Jan  1 00:00:00 1970     Conn64 login 1 127.0.0.1 tester
+Thu Jan  1 00:00:00 1970     Play#1 input xdump sect 0,0
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump ship *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump plane *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump land *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump nuke *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump news *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump treaty *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump trade *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump nat *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump loan *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump commodity *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump lost *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump realm *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump game *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump item *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump product *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump sect-chr *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump ship-chr *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump plane-chr *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump land-chr *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump nuke-chr *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump news-chr *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump infrastructure *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump updates *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump table *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump version *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump meta *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump sector *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump agreement-status *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump land-chr-flags *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump level *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump meta-flags *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump meta-type *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump missions *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump nation-flags *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump nation-rejects *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump nation-relationships *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump nation-status *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump nuke-chr-flags *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump packing *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump page-headings *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump plague-stages *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump plane-chr-flags *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump plane-flags *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump resources *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump retreat-flags *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump ship-chr-flags *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump treaty-flags *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input xdump country *
+Thu Jan  1 00:00:00 1970     Play#1 command xdump
+Thu Jan  1 00:00:00 1970     Play#1 input ctld
+Thu Jan  1 00:00:00 1970     Play#1 logout 1
+Thu Jan  1 00:00:00 1970       Main shutdown
diff --git a/tests/smoke/server.log b/tests/smoke/server.log
new file mode 100644 (file)
index 0000000..224c2ec
--- /dev/null
@@ -0,0 +1,519 @@
+Thu Jan  1 00:00:00 1970 ------------------------------------------------------
+Thu Jan  1 00:00:00 1970 Empire server (pid 42) started
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #3
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #3
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #3
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #4
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #4
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #4
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #5
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #5
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #5
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #6
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #6
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #6
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #7
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #7
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #7
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #9
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #9
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #9
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #10
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #10
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #10
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 First update since reboot, allocating buffer
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 0 announcements deleted; 0 announcements saved
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #2
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #8
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 Triggering unscheduled update
+Thu Jan  1 00:00:00 1970 production update (60 etus)
+Thu Jan  1 00:00:00 1970 preparing sectors...
+Thu Jan  1 00:00:00 1970 done preparing sectors.
+Thu Jan  1 00:00:00 1970 producing for countries...
+Thu Jan  1 00:00:00 1970 done producing for countries.
+Thu Jan  1 00:00:00 1970 delivering...
+Thu Jan  1 00:00:00 1970 done delivering
+Thu Jan  1 00:00:00 1970 assembling paths...
+Thu Jan  1 00:00:00 1970 done assembling paths 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 exporting...
+Thu Jan  1 00:00:00 1970 done exporting
+Thu Jan  1 00:00:00 1970 importing...
+Thu Jan  1 00:00:00 1970 done importing
+Thu Jan  1 00:00:00 1970 Deleting annos older than Thu Jan  1 00:00:00 1970
+Thu Jan  1 00:00:00 1970 End update 0.0 user 0.0 system
+Thu Jan  1 00:00:00 1970 Update schedule read
+Thu Jan  1 00:00:00 1970 No update scheduled
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #0
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 using country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged in as country #1
+Thu Jan  1 00:00:00 1970 tester@127.0.0.1 logged out, country #1
+Thu Jan  1 00:00:00 1970 Shutdown commencing (cleaning up threads.)
+Thu Jan  1 00:00:00 1970 Server shutting down on signal 15
diff --git a/tests/smoke/smoke.out b/tests/smoke/smoke.out
new file mode 100644 (file)
index 0000000..3a6fb84
--- /dev/null
@@ -0,0 +1,13993 @@
+All praise to POGO!
+Player 00 Turn 00 starting
+
+
+       -=O=-
+
+[0:640] Command : XDUMP meta sect 0
+"owner" 5 0 0 9
+"xloc" 9 4 0 -1
+"yloc" 10 4 0 -1
+"des" 4 0 0 19
+"effic" 4 0 0 -1
+"mobil" 4 0 0 -1
+"off" 5 0 0 -1
+"loyal" 5 1 0 -1
+"terr0" 5 0 0 -1
+"terr1" 5 0 0 -1
+"terr2" 5 0 0 -1
+"terr3" 5 0 0 -1
+"dterr" 5 1 0 -1
+"xdist" 9 0 0 -1
+"ydist" 10 0 0 -1
+"avail" 6 0 0 -1
+"elev" 6 1 0 -1
+"work" 5 0 0 -1
+"coastal" 5 0 0 -1
+"newdes" 4 0 0 19
+"min" 5 0 0 -1
+"gold" 5 0 0 -1
+"fert" 5 0 0 -1
+"ocontent" 5 0 0 -1
+"uran" 5 0 0 -1
+"oldown" 5 0 0 9
+"civil" 6 0 0 -1
+"milit" 6 0 0 -1
+"shell" 6 0 0 -1
+"gun" 6 0 0 -1
+"petrol" 6 0 0 -1
+"iron" 6 0 0 -1
+"dust" 6 0 0 -1
+"bar" 6 0 0 -1
+"food" 6 0 0 -1
+"oil" 6 0 0 -1
+"lcm" 6 0 0 -1
+"hcm" 6 0 0 -1
+"uw" 6 0 0 -1
+"rad" 6 0 0 -1
+"c_dist" 6 0 0 -1
+"m_dist" 6 0 0 -1
+"s_dist" 6 0 0 -1
+"g_dist" 6 0 0 -1
+"p_dist" 6 0 0 -1
+"i_dist" 6 0 0 -1
+"d_dist" 6 0 0 -1
+"b_dist" 6 0 0 -1
+"f_dist" 6 0 0 -1
+"o_dist" 6 0 0 -1
+"l_dist" 6 0 0 -1
+"h_dist" 6 0 0 -1
+"u_dist" 6 0 0 -1
+"r_dist" 6 0 0 -1
+"c_del" 6 0 0 -1
+"m_del" 6 0 0 -1
+"s_del" 6 0 0 -1
+"g_del" 6 0 0 -1
+"p_del" 6 0 0 -1
+"i_del" 6 0 0 -1
+"d_del" 6 0 0 -1
+"b_del" 6 0 0 -1
+"f_del" 6 0 0 -1
+"o_del" 6 0 0 -1
+"l_del" 6 0 0 -1
+"h_del" 6 0 0 -1
+"u_del" 6 0 0 -1
+"r_del" 6 0 0 -1
+"mines" 6 1 0 -1
+"pstage" 6 1 0 43
+"ptime" 6 1 0 -1
+"che" 5 1 0 -1
+"che_target" 5 1 0 9
+"fallout" 7 0 0 -1
+"access" 6 0 0 -1
+"road" 5 0 0 -1
+"rail" 5 0 0 -1
+"dfense" 5 0 0 -1
+/78
+
+[0:640] Command : XDUMP meta ship 0
+"uid" 8 0 0 1
+"owner" 5 0 0 9
+"xloc" 9 0 0 -1
+"yloc" 10 0 0 -1
+"type" 4 0 0 20
+"effic" 4 0 0 -1
+"mobil" 4 0 0 -1
+"off" 5 0 0 -1
+"tech" 6 0 0 -1
+"opx" 9 0 0 -1
+"opy" 10 0 0 -1
+"mission" 6 0 0 35
+"radius" 6 0 0 -1
+"fleet" 14 0 1 -1
+"xstart" 9 0 0 -1
+"xend" 9 0 0 -1
+"ystart" 10 0 0 -1
+"yend" 10 0 0 -1
+"cargostart" 4 0 6 17
+"cargoend" 4 0 6 17
+"amtstart" 6 0 6 -1
+"amtend" 6 0 6 -1
+"autonav" 5 0 0 -1
+"civil" 6 0 0 -1
+"milit" 6 0 0 -1
+"shell" 6 0 0 -1
+"gun" 6 0 0 -1
+"petrol" 6 0 0 -1
+"iron" 6 0 0 -1
+"dust" 6 0 0 -1
+"bar" 6 0 0 -1
+"food" 6 0 0 -1
+"oil" 6 0 0 -1
+"lcm" 6 0 0 -1
+"hcm" 6 0 0 -1
+"uw" 6 0 0 -1
+"rad" 6 0 0 -1
+"pstage" 6 1 0 43
+"ptime" 6 1 0 -1
+"access" 6 0 0 -1
+"mquota" 5 0 0 -1
+"path" 14 0 28 -1
+"follow" 8 0 0 -1
+"name" 14 0 24 -1
+"xbuilt" 9 1 0 -1
+"ybuilt" 10 1 0 -1
+"builder" 5 1 0 9
+"rflags" 8 8 0 47
+"rpath" 14 0 10 -1
+/49
+
+[0:640] Command : XDUMP meta plane 0
+"uid" 8 0 0 2
+"owner" 5 0 0 9
+"xloc" 9 0 0 -1
+"yloc" 10 0 0 -1
+"type" 4 0 0 21
+"effic" 4 0 0 -1
+"mobil" 4 0 0 -1
+"off" 5 0 0 -1
+"tech" 6 0 0 -1
+"opx" 9 0 0 -1
+"opy" 10 0 0 -1
+"mission" 6 0 0 35
+"radius" 6 0 0 -1
+"wing" 14 0 1 -1
+"range" 5 0 0 -1
+"ship" 8 0 0 1
+"land" 8 0 0 3
+"harden" 4 0 0 -1
+"flags" 4 8 0 45
+"access" 6 0 0 -1
+"theta" 13 0 0 -1
+/21
+
+[0:640] Command : XDUMP meta land 0
+"uid" 8 0 0 3
+"owner" 5 0 0 9
+"xloc" 9 0 0 -1
+"yloc" 10 0 0 -1
+"type" 4 0 0 22
+"effic" 4 0 0 -1
+"mobil" 4 0 0 -1
+"off" 5 0 0 -1
+"tech" 6 0 0 -1
+"opx" 9 0 0 -1
+"opy" 10 0 0 -1
+"mission" 6 0 0 35
+"radius" 6 0 0 -1
+"army" 14 0 1 -1
+"ship" 8 0 0 1
+"harden" 4 0 0 -1
+"retreat" 6 0 0 -1
+"rflags" 8 8 0 47
+"rpath" 14 0 10 -1
+"civil" 6 0 0 -1
+"milit" 6 0 0 -1
+"shell" 6 0 0 -1
+"gun" 6 0 0 -1
+"petrol" 6 0 0 -1
+"iron" 6 0 0 -1
+"dust" 6 0 0 -1
+"bar" 6 0 0 -1
+"food" 6 0 0 -1
+"oil" 6 0 0 -1
+"lcm" 6 0 0 -1
+"hcm" 6 0 0 -1
+"uw" 6 0 0 -1
+"rad" 6 0 0 -1
+"pstage" 6 1 0 43
+"ptime" 6 1 0 -1
+"land" 8 0 0 3
+"access" 6 0 0 -1
+/37
+
+[0:640] Command : XDUMP meta nuke 0
+"uid" 8 0 0 4
+"owner" 5 0 0 9
+"xloc" 9 0 0 -1
+"yloc" 10 0 0 -1
+"type" 4 0 0 23
+"effic" 4 0 0 -1
+"mobil" 4 0 0 -1
+"off" 5 0 0 -1
+"tech" 6 0 0 -1
+"opx" 9 0 0 -1
+"opy" 10 0 0 -1
+"mission" 6 0 0 35
+"radius" 6 0 0 -1
+"plane" 8 0 0 2
+/14
+
+[0:640] Command : XDUMP meta news 0
+"actor" 5 0 0 9
+"action" 5 0 0 24
+"victim" 5 0 0 9
+"times" 4 0 0 -1
+"duration" 6 0 0 -1
+"time" 12 0 0 -1
+/6
+
+[0:640] Command : XDUMP meta treaty 0
+"uid" 8 0 0 6
+"cna" 5 0 0 9
+"cnb" 5 0 0 9
+"status" 4 0 0 30
+"acond" 6 8 0 50
+"bcond" 6 8 0 50
+"exp" 12 0 0 -1
+/7
+
+[0:640] Command : XDUMP meta trade 0
+"uid" 8 0 0 7
+"owner" 5 0 0 9
+"type" 4 0 0 27
+"unitid" 8 0 0 -1
+"price" 1 0 0 -1
+"maxbidder" 8 0 0 9
+"markettime" 12 0 0 -1
+"xloc" 9 1 0 -1
+"yloc" 10 1 0 -1
+/9
+
+[0:640] Command : XDUMP meta nat 0
+"cnum" 5 0 0 9
+"stat" 8 0 0 39
+"cname" 14 0 20 -1
+"passwd" 14 1 20 -1
+"ip" 14 1 32 -1
+"hostname" 14 1 512 -1
+"userid" 14 1 32 -1
+"xcap" 9 1 0 -1
+"ycap" 10 1 0 -1
+"xorg" 9 1 0 -1
+"yorg" 10 1 0 -1
+"update" 4 1 0 -1
+"tgms" 7 1 0 -1
+"ann" 7 1 0 -1
+"timeused" 8 1 0 -1
+"btu" 6 1 0 -1
+"access" 6 1 0 -1
+"milreserve" 1 1 0 -1
+"money" 1 1 0 -1
+"login" 12 1 0 -1
+"logout" 12 1 0 -1
+"newstim" 12 1 0 -1
+"annotim" 12 1 0 -1
+"tech" 13 1 0 -1
+"research" 13 1 0 -1
+"education" 13 1 0 -1
+"happiness" 13 1 0 -1
+"relations" 11 0 99 38
+"contacts" 5 1 99 -1
+"rejects" 5 8 99 37
+"flags" 1 9 0 36
+/31
+
+[0:640] Command : XDUMP meta loan 0
+"uid" 8 0 0 10
+"loaner" 5 0 0 9
+"loanee" 5 0 0 9
+"status" 4 0 0 30
+"irate" 8 0 0 -1
+"ldur" 8 0 0 -1
+"amtpaid" 1 0 0 -1
+"amtdue" 1 0 0 -1
+"lastpay" 12 0 0 -1
+"duedate" 12 0 0 -1
+/10
+
+[0:640] Command : XDUMP meta commodity 0
+"uid" 8 0 0 13
+"owner" 5 0 0 9
+"type" 4 0 0 17
+"amount" 8 0 0 -1
+"price" 13 0 0 -1
+"maxbidder" 8 0 0 9
+"markettime" 12 0 0 -1
+"xbuy" 9 1 0 -1
+"ybuy" 9 1 0 -1
+"xsell" 9 1 0 -1
+"ysell" 10 1 0 -1
+/11
+
+[0:640] Command : XDUMP meta lost 0
+"timestamp" 12 0 0 -1
+"owner" 5 0 0 9
+"type" 4 0 0 27
+"id" 8 0 0 -1
+"x" 9 0 0 -1
+"y" 10 0 0 -1
+/6
+
+[0:640] Command : XDUMP meta realm 0
+"cnum" 5 4 0 9
+"realm" 7 4 0 -1
+"xl" 9 0 0 -1
+"xh" 9 0 0 -1
+"yl" 10 0 0 -1
+"yh" 10 0 0 -1
+/6
+
+[0:640] Command : XDUMP meta game 0
+"upd_disable" 4 0 0 -1
+"down" 4 0 0 -1
+"turn" 6 0 0 -1
+"tick" 6 1 0 -1
+"rt" 12 1 0 -1
+/5
+
+[0:640] Command : XDUMP meta item 0
+"uid" 4 0 0 17
+"name" 3 0 0 -1
+"mnem" 14 4 1 -1
+"value" 8 0 0 -1
+"sell" 8 0 0 -1
+"lbs" 8 0 0 -1
+"pkg" 8 0 5 -1
+"melt_denom" 8 0 0 -1
+/8
+
+[0:640] Command : XDUMP meta product 0
+"uid" 8 0 0 18
+"name" 3 0 0 -1
+"sname" 3 0 0 -1
+"ctype" 4 0 3 17
+"camt" 7 0 3 -1
+"type" 4 0 0 17
+"level" 8 0 0 32
+"cost" 8 0 0 -1
+"nrndx" 8 0 0 46
+"nrdep" 8 0 0 -1
+"nlndx" 8 0 0 32
+"nlmin" 8 0 0 -1
+"nllag" 8 0 0 -1
+/13
+
+[0:640] Command : XDUMP meta sect-chr 0
+"uid" 5 0 0 19
+"name" 3 0 0 -1
+"mnem" 14 4 1 -1
+"terrain" 5 0 0 19
+"prd" 8 0 0 18
+"peffic" 8 0 0 -1
+"mob0" 13 0 0 -1
+"mob1" 13 0 0 -1
+"nav" 8 0 0 48
+"pkg" 8 0 0 41
+"ostr" 13 0 0 -1
+"dstr" 13 0 0 -1
+"value" 8 0 0 -1
+"cost" 8 0 0 -1
+"build" 8 0 0 -1
+"lcms" 8 0 0 -1
+"hcms" 8 0 0 -1
+"maint" 8 0 0 -1
+"maxpop" 8 0 0 -1
+/19
+
+[0:640] Command : XDUMP meta ship-chr 0
+"type" 4 0 0 20
+"name" 3 0 0 -1
+"civil" 6 0 0 -1
+"milit" 6 0 0 -1
+"shell" 6 0 0 -1
+"gun" 6 0 0 -1
+"petrol" 6 0 0 -1
+"iron" 6 0 0 -1
+"dust" 6 0 0 -1
+"bar" 6 0 0 -1
+"food" 6 0 0 -1
+"oil" 6 0 0 -1
+"lcm" 6 0 0 -1
+"hcm" 6 0 0 -1
+"uw" 6 0 0 -1
+"rad" 6 0 0 -1
+"l_build" 8 0 0 -1
+"h_build" 8 0 0 -1
+"armor" 8 0 0 -1
+"speed" 8 0 0 -1
+"visib" 8 0 0 -1
+"vrnge" 8 0 0 -1
+"frnge" 8 0 0 -1
+"glim" 8 0 0 -1
+"nxlight" 5 0 0 -1
+"nchoppers" 5 0 0 -1
+"tech" 8 0 0 -1
+"cost" 8 0 0 -1
+"flags" 1 8 0 49
+"nplanes" 5 0 0 -1
+"nland" 5 0 0 -1
+/31
+
+[0:640] Command : XDUMP meta plane-chr 0
+"type" 4 0 0 21
+"name" 3 0 0 -1
+"l_build" 8 0 0 -1
+"h_build" 8 0 0 -1
+"cost" 8 0 0 -1
+"tech" 8 0 0 -1
+"acc" 8 0 0 -1
+"load" 8 0 0 -1
+"att" 8 0 0 -1
+"def" 8 0 0 -1
+"range" 8 0 0 -1
+"crew" 8 0 0 -1
+"fuel" 8 0 0 -1
+"stealth" 8 0 0 -1
+"flags" 8 8 0 44
+/15
+
+[0:640] Command : XDUMP meta land-chr 0
+"type" 4 0 0 22
+"name" 3 0 0 -1
+"civil" 6 0 0 -1
+"milit" 6 0 0 -1
+"shell" 6 0 0 -1
+"gun" 6 0 0 -1
+"petrol" 6 0 0 -1
+"iron" 6 0 0 -1
+"dust" 6 0 0 -1
+"bar" 6 0 0 -1
+"food" 6 0 0 -1
+"oil" 6 0 0 -1
+"lcm" 6 0 0 -1
+"hcm" 6 0 0 -1
+"uw" 6 0 0 -1
+"rad" 6 0 0 -1
+"l_build" 8 0 0 -1
+"h_build" 8 0 0 -1
+"tech" 8 0 0 -1
+"cost" 8 0 0 -1
+"att" 13 0 0 -1
+"def" 13 0 0 -1
+"vul" 8 0 0 -1
+"spd" 8 0 0 -1
+"vis" 8 0 0 -1
+"spy" 8 0 0 -1
+"rmax" 8 0 0 -1
+"frg" 8 0 0 -1
+"acc" 8 0 0 -1
+"dam" 8 0 0 -1
+"ammo" 8 0 0 -1
+"aaf" 8 0 0 -1
+"nxlight" 5 0 0 -1
+"nland" 5 0 0 -1
+"flags" 1 8 0 31
+/35
+
+[0:640] Command : XDUMP meta nuke-chr 0
+"type" 4 0 0 23
+"name" 3 0 0 -1
+"l_build" 8 0 0 -1
+"h_build" 8 0 0 -1
+"o_build" 8 0 0 -1
+"r_build" 8 0 0 -1
+"blast" 8 0 0 -1
+"dam" 8 0 0 -1
+"cost" 8 0 0 -1
+"tech" 8 0 0 -1
+"weight" 8 0 0 -1
+"flags" 8 8 0 40
+/12
+
+[0:640] Command : XDUMP meta news-chr 0
+"uid" 4 0 0 24
+"newstory" 3 0 2 -1
+"good_will" 8 0 0 -1
+"newspage" 8 0 0 42
+/4
+
+[0:640] Command : XDUMP meta infrastructure 0
+"name" 3 4 0 -1
+"lcms" 5 0 0 -1
+"hcms" 5 0 0 -1
+"dcost" 5 0 0 -1
+"mcost" 5 0 0 -1
+"enable" 5 0 0 -1
+/6
+
+[0:640] Command : XDUMP meta updates 0
+"time" 12 0 0 -1
+/1
+
+[0:640] Command : XDUMP meta table 0
+"uid" 8 0 0 27
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta version 0
+"version" 14 0 23 -1
+"maxnoc" 1 0 0 -1
+"privname" 3 0 0 -1
+"privlog" 3 0 0 -1
+"WORLD_X" 8 0 0 -1
+"WORLD_Y" 8 0 0 -1
+"etu_per_update" 8 0 0 -1
+"update_window" 8 0 0 -1
+"update_demand" 8 0 0 -1
+"update_wantmin" 8 0 0 -1
+"update_demandtimes" 3 0 0 -1
+"game_days" 3 0 0 -1
+"game_hours" 3 0 0 -1
+"ALL_BLEED" 8 0 0 -1
+"AUTO_POWER" 8 0 0 -1
+"BLITZ" 8 0 0 -1
+"BRIDGETOWERS" 8 0 0 -1
+"EASY_BRIDGES" 8 0 0 -1
+"FALLOUT" 8 0 0 -1
+"GODNEWS" 8 0 0 -1
+"GO_RENEW" 8 0 0 -1
+"GUINEA_PIGS" 8 0 0 -1
+"HIDDEN" 8 0 0 -1
+"INTERDICT_ATT" 8 0 0 -1
+"LOANS" 8 0 0 -1
+"LOSE_CONTACT" 8 0 0 -1
+"MARKET" 8 0 0 -1
+"MOB_ACCESS" 8 0 0 -1
+"NOFOOD" 8 0 0 -1
+"NOMOBCOST" 8 0 0 -1
+"NO_FORT_FIRE" 8 0 0 -1
+"NO_PLAGUE" 8 0 0 -1
+"RAILWAYS" 8 0 0 -1
+"RES_POP" 8 0 0 -1
+"SAIL" 8 0 0 -1
+"SUPER_BARS" 8 0 0 -1
+"TECH_POP" 8 0 0 -1
+"TREATIES" 8 0 0 -1
+"btu_build_rate" 13 0 0 -1
+"m_m_p_d" 8 0 0 -1
+"max_btus" 8 0 0 -1
+"max_idle" 8 0 0 -1
+"max_idle_visitor" 8 0 0 -1
+"login_grace_time" 8 0 0 -1
+"players_at_00" 8 0 0 -1
+"easy_tech" 13 0 0 -1
+"level_age_rate" 13 0 0 -1
+"tech_log_base" 13 0 0 -1
+"ally_factor" 13 0 0 -1
+"edu_avg" 13 0 0 -1
+"hap_avg" 13 0 0 -1
+"edu_cons" 2 0 0 -1
+"hap_cons" 2 0 0 -1
+"sect_mob_scale" 13 0 0 -1
+"sect_mob_max" 8 0 0 -1
+"buil_bh" 8 0 0 -1
+"buil_bc" 2 0 0 -1
+"buil_bt" 2 0 0 -1
+"buil_tower_bh" 8 0 0 -1
+"buil_tower_bc" 2 0 0 -1
+"buil_tower_bt" 2 0 0 -1
+"land_mob_scale" 13 0 0 -1
+"land_grow_scale" 13 0 0 -1
+"land_mob_max" 8 0 0 -1
+"money_land" 2 0 0 -1
+"plane_mob_scale" 13 0 0 -1
+"plane_grow_scale" 13 0 0 -1
+"plane_mob_max" 8 0 0 -1
+"money_plane" 2 0 0 -1
+"ship_mob_scale" 13 0 0 -1
+"ship_grow_scale" 13 0 0 -1
+"ship_mob_max" 8 0 0 -1
+"money_ship" 2 0 0 -1
+"torpedo_damage" 8 0 0 -1
+"fort_max_interdiction_range" 8 0 0 -1
+"land_max_interdiction_range" 8 0 0 -1
+"ship_max_interdiction_range" 8 0 0 -1
+"flakscale" 13 0 0 -1
+"combat_mob" 2 0 0 -1
+"people_damage" 2 0 0 -1
+"unit_damage" 2 0 0 -1
+"collateral_dam" 2 0 0 -1
+"assault_penalty" 2 0 0 -1
+"fire_range_factor" 13 0 0 -1
+"sect_mob_neg_factor" 8 0 0 -1
+"uwbrate" 2 0 0 -1
+"money_civ" 2 0 0 -1
+"money_mil" 2 0 0 -1
+"money_res" 2 0 0 -1
+"money_uw" 2 0 0 -1
+"babyeat" 2 0 0 -1
+"bankint" 2 0 0 -1
+"eatrate" 2 0 0 -1
+"fcrate" 2 0 0 -1
+"fgrate" 2 0 0 -1
+"obrate" 2 0 0 -1
+"rollover_avail_max" 8 0 0 -1
+"decay_per_etu" 2 0 0 -1
+"fallout_spread" 2 0 0 -1
+"drnuke_const" 13 0 0 -1
+"MARK_DELAY" 8 0 0 -1
+"TRADE_DELAY" 8 0 0 -1
+"buytax" 2 0 0 -1
+"tradetax" 2 0 0 -1
+"trade_1_dist" 8 0 0 -1
+"trade_2_dist" 8 0 0 -1
+"trade_3_dist" 8 0 0 -1
+"trade_1" 13 0 0 -1
+"trade_2" 13 0 0 -1
+"trade_3" 13 0 0 -1
+"trade_ally_bonus" 13 0 0 -1
+"trade_ally_cut" 13 0 0 -1
+/112
+
+[0:640] Command : XDUMP meta meta 0
+"name" 3 4 0 -1
+"type" 4 4 0 34
+"flags" 5 12 0 33
+"len" 7 4 0 -1
+"table" 8 4 0 27
+/5
+
+[0:640] Command : XDUMP meta sector-navigation 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta agreement-status 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta land-chr-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta level 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta meta-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta meta-type 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta missions 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta nation-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta nation-rejects 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta nation-relationships 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta nation-status 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta nuke-chr-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta packing 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta page-headings 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta plague-stages 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta plane-chr-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta plane-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta resources 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta retreat-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta ship-chr-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta treaty-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:640] Command : XDUMP meta country 0
+"cnum" 5 0 0 9
+"ip" 14 0 32 -1
+"hostname" 14 0 512 -1
+"userid" 14 0 32 -1
+"xcap" 9 0 0 -1
+"ycap" 10 0 0 -1
+"update" 4 0 0 -1
+"tgms" 7 0 0 -1
+"ann" 7 0 0 -1
+"timeused" 8 0 0 -1
+"btu" 6 0 0 -1
+"access" 6 0 0 -1
+"milreserve" 1 0 0 -1
+"money" 1 0 0 -1
+"login" 12 0 0 -1
+"logout" 12 0 0 -1
+"newstim" 12 0 0 -1
+"annotim" 12 0 0 -1
+"tech" 13 0 0 -1
+"research" 13 0 0 -1
+"education" 13 0 0 -1
+"happiness" 13 0 0 -1
+"flags" 1 8 0 36
+/23
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Player 00 Turn 00 completed successfully
+Player 01 Turn 00 starting
+
+
+       -=O=-
+
+[0:640] Command : Access to table sect denied
+command failed
+
+[0:640] Command : 0,0 is no longer a sanctuary.
+2,0 is no longer a sanctuary.
+
+[0:640] Command : Total movement cost = 1, 126 mob left in 0,0
+Sector 1,-1 is now yours.
+
+[0:639] Command : No mobility used, 127 mob left in 2,0
+Sector 4,0 is now yours.
+
+[0:638] Command : No mobility used, 127 mob left in 2,0
+Sector 3,-1 is now yours.
+
+[0:637] Command : No mobility used, 127 mob left in 2,0
+Sector 3,1 is now yours.
+
+[0:636] Command : Total movement cost = 1, 126 mob left in 2,0
+Sector 1,1 is now yours.
+
+[0:635] Command : Total movement cost = 1, 125 mob left in 0,0
+Sector -1,-1 is now yours.
+
+[0:634] Command : Total movement cost = 1, 124 mob left in 0,0
+Sector -2,0 is now yours.
+
+[0:633] Command : No mobility used, 124 mob left in 0,0
+Sector -1,1 is now yours.
+
+[0:632] Command : 
+[0:631] Command : No mobility used, 126 mob left in 2,0
+Sector 5,1 is now yours.
+
+[0:630] Command : Total movement cost = 1, 125 mob left in 2,0
+Sector 4,2 is now yours.
+
+[0:629] Command : Total movement cost = 1, 124 mob left in 2,0
+Sector 2,2 is now yours.
+
+[0:628] Command : Total movement cost = 1, 123 mob left in 0,0
+Sector -2,2 is now yours.
+
+[0:627] Command : Total movement cost = 1, 122 mob left in 0,0
+Sector -2,-2 is now yours.
+
+[0:626] Command : Total movement cost = 1, 121 mob left in 0,0
+Sector 0,-2 is now yours.
+
+[0:625] Command : Total movement cost = 1, 120 mob left in 0,0
+Sector 0,2 is now yours.
+
+[0:624] Command : Total movement cost = 1, 123 mob left in 2,0
+Sector 2,-2 is now yours.
+
+[0:623] Command : No mobility used, 123 mob left in 2,0
+Sector 4,-2 is now yours.
+
+[0:622] Command : Total movement cost = 1, 122 mob left in 2,0
+Sector 5,-1 is now yours.
+
+[0:621] Command : 
+[0:620] Command : Total movement cost = 1, 121 mob left in 2,0
+Sector 5,3 is now yours.
+
+[0:619] Command : Total movement cost = 2, 119 mob left in 2,0
+Sector 6,2 is now yours.
+
+[0:618] Command : Total movement cost = 1, 118 mob left in 2,0
+Sector 7,1 is now yours.
+
+[0:617] Command : Total movement cost = 1, 117 mob left in 2,0
+Sector 6,-2 is now yours.
+
+[0:616] Command : Total movement cost = 2, 118 mob left in 0,0
+Sector -1,3 is now yours.
+
+[0:615] Command : Total movement cost = 2, 116 mob left in 0,0
+Sector 1,3 is now yours.
+
+[0:614] Command : Total movement cost = 1, 115 mob left in 0,0
+Sector -4,-2 is now yours.
+
+[0:613] Command : Total movement cost = 1, 114 mob left in 0,0
+Sector 1,-3 is now yours.
+
+[0:612] Command : 
+[0:611] Command : Total movement cost = 1, 116 mob left in 2,0
+Sector 8,2 is now yours.
+
+[0:610] Command : 
+[0:609] Command : Total movement cost = 2, 114 mob left in 2,0
+Sector 10,2 is now yours.
+
+[0:608] Command : 
+[0:607] Command : Total movement cost = 30
+84 mob left in 0,0
+
+[0:606] Command : 55 demobilized in 0,0 (0 mil left)
+55 demobilized in 2,0 (0 mil left)
+Total new civilians : 110
+Military reserve stands at 110 (up 110)
+That just cost you $550.00
+
+[0:605] Command : 
+[0:604] Command : Looking for best path to -1,-1
+Using best path 'yh', movement cost 0.400
+Total movement cost = 24
+60 mob left in 0,0
+
+[0:603] Command : 
+[0:602] Command : Looking for best path to 1,-1
+Using best path 'uh', movement cost 0.400
+Total movement cost = 11
+49 mob left in 0,0
+
+[0:601] Command : Looking for best path to 1,-1
+Using best path 'yh', movement cost 0.400
+Total movement cost = 11
+103 mob left in 2,0
+
+[0:600] Command : 
+[0:599] Command : Deliver iron ore from capital @ 2,0 to 3,-1 (cutoff 224)
+
+[0:598] Command : Deliver iron ore from mine @ 1,-1 to 3,-1
+
+[0:597] Command : highway at 4,0 has no dist sector. 
+highway 4,0 now distributes to 2,0 (cost 0.200)
+
+
+[0:596] Command : 
+[0:595] Command : 
+[0:594] Command : Capital now at 0,-2.
+
+[0:594] Command : 
+[0:593] Command : 
+[0:592] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 00 completed successfully
+Player 02 Turn 00 starting
+
+
+       -=O=-
+
+[0:640] Command : 0,0 is no longer a sanctuary.
+2,0 is no longer a sanctuary.
+
+[0:640] Command : No mobility used, 127 mob left in 0,0
+Sector 1,-1 is now yours.
+
+[0:639] Command : 
+[0:638] Command : Total movement cost = 9
+118 mob left in 0,0
+
+[0:637] Command : 
+[0:636] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-1   g    0%       0 .. ..      206    0    0    0 100%    0        0   1
+   0,0    c  100%     118 .. ..      794   55   75    0 100%    0        0
+   2,0    c  100%     127 .. ..     1000   55   75    0 100%    0        0
+3 sectors
+
+[0:636] Command : XDUMP meta sect 0
+"owner" 5 0 0 9
+"xloc" 9 4 0 -1
+"yloc" 10 4 0 -1
+"des" 4 0 0 19
+"effic" 4 0 0 -1
+"mobil" 4 0 0 -1
+"off" 5 0 0 -1
+"terr0" 5 0 0 -1
+"terr1" 5 0 0 -1
+"terr2" 5 0 0 -1
+"terr3" 5 0 0 -1
+"xdist" 9 0 0 -1
+"ydist" 10 0 0 -1
+"avail" 6 0 0 -1
+"work" 5 0 0 -1
+"coastal" 5 0 0 -1
+"newdes" 4 0 0 19
+"min" 5 0 0 -1
+"gold" 5 0 0 -1
+"fert" 5 0 0 -1
+"ocontent" 5 0 0 -1
+"uran" 5 0 0 -1
+"oldown" 5 0 0 9
+"civil" 6 0 0 -1
+"milit" 6 0 0 -1
+"shell" 6 0 0 -1
+"gun" 6 0 0 -1
+"petrol" 6 0 0 -1
+"iron" 6 0 0 -1
+"dust" 6 0 0 -1
+"bar" 6 0 0 -1
+"food" 6 0 0 -1
+"oil" 6 0 0 -1
+"lcm" 6 0 0 -1
+"hcm" 6 0 0 -1
+"uw" 6 0 0 -1
+"rad" 6 0 0 -1
+"c_dist" 6 0 0 -1
+"m_dist" 6 0 0 -1
+"s_dist" 6 0 0 -1
+"g_dist" 6 0 0 -1
+"p_dist" 6 0 0 -1
+"i_dist" 6 0 0 -1
+"d_dist" 6 0 0 -1
+"b_dist" 6 0 0 -1
+"f_dist" 6 0 0 -1
+"o_dist" 6 0 0 -1
+"l_dist" 6 0 0 -1
+"h_dist" 6 0 0 -1
+"u_dist" 6 0 0 -1
+"r_dist" 6 0 0 -1
+"c_del" 6 0 0 -1
+"m_del" 6 0 0 -1
+"s_del" 6 0 0 -1
+"g_del" 6 0 0 -1
+"p_del" 6 0 0 -1
+"i_del" 6 0 0 -1
+"d_del" 6 0 0 -1
+"b_del" 6 0 0 -1
+"f_del" 6 0 0 -1
+"o_del" 6 0 0 -1
+"l_del" 6 0 0 -1
+"h_del" 6 0 0 -1
+"u_del" 6 0 0 -1
+"r_del" 6 0 0 -1
+"fallout" 7 0 0 -1
+"access" 6 0 0 -1
+"road" 5 0 0 -1
+"rail" 5 0 0 -1
+"dfense" 5 0 0 -1
+/70
+
+[0:636] Command : XDUMP meta ship 0
+"uid" 8 0 0 1
+"owner" 5 0 0 9
+"xloc" 9 0 0 -1
+"yloc" 10 0 0 -1
+"type" 4 0 0 20
+"effic" 4 0 0 -1
+"mobil" 4 0 0 -1
+"off" 5 0 0 -1
+"tech" 6 0 0 -1
+"opx" 9 0 0 -1
+"opy" 10 0 0 -1
+"mission" 6 0 0 35
+"radius" 6 0 0 -1
+"fleet" 14 0 1 -1
+"xstart" 9 0 0 -1
+"xend" 9 0 0 -1
+"ystart" 10 0 0 -1
+"yend" 10 0 0 -1
+"cargostart" 4 0 6 17
+"cargoend" 4 0 6 17
+"amtstart" 6 0 6 -1
+"amtend" 6 0 6 -1
+"autonav" 5 0 0 -1
+"civil" 6 0 0 -1
+"milit" 6 0 0 -1
+"shell" 6 0 0 -1
+"gun" 6 0 0 -1
+"petrol" 6 0 0 -1
+"iron" 6 0 0 -1
+"dust" 6 0 0 -1
+"bar" 6 0 0 -1
+"food" 6 0 0 -1
+"oil" 6 0 0 -1
+"lcm" 6 0 0 -1
+"hcm" 6 0 0 -1
+"uw" 6 0 0 -1
+"rad" 6 0 0 -1
+"access" 6 0 0 -1
+"mquota" 5 0 0 -1
+"path" 14 0 28 -1
+"follow" 8 0 0 -1
+"name" 14 0 24 -1
+"rflags" 8 8 0 47
+"rpath" 14 0 10 -1
+/44
+
+[0:636] Command : XDUMP meta plane 0
+"uid" 8 0 0 2
+"owner" 5 0 0 9
+"xloc" 9 0 0 -1
+"yloc" 10 0 0 -1
+"type" 4 0 0 21
+"effic" 4 0 0 -1
+"mobil" 4 0 0 -1
+"off" 5 0 0 -1
+"tech" 6 0 0 -1
+"opx" 9 0 0 -1
+"opy" 10 0 0 -1
+"mission" 6 0 0 35
+"radius" 6 0 0 -1
+"wing" 14 0 1 -1
+"range" 5 0 0 -1
+"ship" 8 0 0 1
+"land" 8 0 0 3
+"harden" 4 0 0 -1
+"flags" 4 8 0 45
+"access" 6 0 0 -1
+"theta" 13 0 0 -1
+/21
+
+[0:636] Command : XDUMP meta land 0
+"uid" 8 0 0 3
+"owner" 5 0 0 9
+"xloc" 9 0 0 -1
+"yloc" 10 0 0 -1
+"type" 4 0 0 22
+"effic" 4 0 0 -1
+"mobil" 4 0 0 -1
+"off" 5 0 0 -1
+"tech" 6 0 0 -1
+"opx" 9 0 0 -1
+"opy" 10 0 0 -1
+"mission" 6 0 0 35
+"radius" 6 0 0 -1
+"army" 14 0 1 -1
+"ship" 8 0 0 1
+"harden" 4 0 0 -1
+"retreat" 6 0 0 -1
+"rflags" 8 8 0 47
+"rpath" 14 0 10 -1
+"civil" 6 0 0 -1
+"milit" 6 0 0 -1
+"shell" 6 0 0 -1
+"gun" 6 0 0 -1
+"petrol" 6 0 0 -1
+"iron" 6 0 0 -1
+"dust" 6 0 0 -1
+"bar" 6 0 0 -1
+"food" 6 0 0 -1
+"oil" 6 0 0 -1
+"lcm" 6 0 0 -1
+"hcm" 6 0 0 -1
+"uw" 6 0 0 -1
+"rad" 6 0 0 -1
+"land" 8 0 0 3
+"access" 6 0 0 -1
+/35
+
+[0:636] Command : XDUMP meta nuke 0
+"uid" 8 0 0 4
+"owner" 5 0 0 9
+"xloc" 9 0 0 -1
+"yloc" 10 0 0 -1
+"type" 4 0 0 23
+"effic" 4 0 0 -1
+"mobil" 4 0 0 -1
+"off" 5 0 0 -1
+"tech" 6 0 0 -1
+"opx" 9 0 0 -1
+"opy" 10 0 0 -1
+"mission" 6 0 0 35
+"radius" 6 0 0 -1
+"plane" 8 0 0 2
+/14
+
+[0:636] Command : XDUMP meta news 0
+"actor" 5 0 0 9
+"action" 5 0 0 24
+"victim" 5 0 0 9
+"times" 4 0 0 -1
+"duration" 6 0 0 -1
+"time" 12 0 0 -1
+/6
+
+[0:636] Command : XDUMP meta treaty 0
+"uid" 8 0 0 6
+"cna" 5 0 0 9
+"cnb" 5 0 0 9
+"status" 4 0 0 30
+"acond" 6 8 0 50
+"bcond" 6 8 0 50
+"exp" 12 0 0 -1
+/7
+
+[0:636] Command : XDUMP meta trade 0
+"uid" 8 0 0 7
+"owner" 5 0 0 9
+"type" 4 0 0 27
+"unitid" 8 0 0 -1
+"price" 1 0 0 -1
+"maxbidder" 8 0 0 9
+"markettime" 12 0 0 -1
+/7
+
+[0:636] Command : XDUMP meta nat 0
+"cnum" 5 0 0 9
+"stat" 8 0 0 39
+"cname" 14 0 20 -1
+"relations" 11 0 99 38
+"rejects" 5 8 99 37
+/5
+
+[0:636] Command : XDUMP meta loan 0
+"uid" 8 0 0 10
+"loaner" 5 0 0 9
+"loanee" 5 0 0 9
+"status" 4 0 0 30
+"irate" 8 0 0 -1
+"ldur" 8 0 0 -1
+"amtpaid" 1 0 0 -1
+"amtdue" 1 0 0 -1
+"lastpay" 12 0 0 -1
+"duedate" 12 0 0 -1
+/10
+
+[0:636] Command : XDUMP meta commodity 0
+"uid" 8 0 0 13
+"owner" 5 0 0 9
+"type" 4 0 0 17
+"amount" 8 0 0 -1
+"price" 13 0 0 -1
+"maxbidder" 8 0 0 9
+"markettime" 12 0 0 -1
+/7
+
+[0:636] Command : XDUMP meta lost 0
+"timestamp" 12 0 0 -1
+"owner" 5 0 0 9
+"type" 4 0 0 27
+"id" 8 0 0 -1
+"x" 9 0 0 -1
+"y" 10 0 0 -1
+/6
+
+[0:636] Command : XDUMP meta realm 0
+"cnum" 5 4 0 9
+"realm" 7 4 0 -1
+"xl" 9 0 0 -1
+"xh" 9 0 0 -1
+"yl" 10 0 0 -1
+"yh" 10 0 0 -1
+/6
+
+[0:636] Command : XDUMP meta game 0
+"upd_disable" 4 0 0 -1
+"down" 4 0 0 -1
+"turn" 6 0 0 -1
+/3
+
+[0:636] Command : XDUMP meta item 0
+"uid" 4 0 0 17
+"name" 3 0 0 -1
+"mnem" 14 4 1 -1
+"value" 8 0 0 -1
+"sell" 8 0 0 -1
+"lbs" 8 0 0 -1
+"pkg" 8 0 5 -1
+"melt_denom" 8 0 0 -1
+/8
+
+[0:636] Command : XDUMP meta product 0
+"uid" 8 0 0 18
+"name" 3 0 0 -1
+"sname" 3 0 0 -1
+"ctype" 4 0 3 17
+"camt" 7 0 3 -1
+"type" 4 0 0 17
+"level" 8 0 0 32
+"cost" 8 0 0 -1
+"nrndx" 8 0 0 46
+"nrdep" 8 0 0 -1
+"nlndx" 8 0 0 32
+"nlmin" 8 0 0 -1
+"nllag" 8 0 0 -1
+/13
+
+[0:636] Command : XDUMP meta sect-chr 0
+"uid" 5 0 0 19
+"name" 3 0 0 -1
+"mnem" 14 4 1 -1
+"terrain" 5 0 0 19
+"prd" 8 0 0 18
+"peffic" 8 0 0 -1
+"mob0" 13 0 0 -1
+"mob1" 13 0 0 -1
+"nav" 8 0 0 48
+"pkg" 8 0 0 41
+"ostr" 13 0 0 -1
+"dstr" 13 0 0 -1
+"value" 8 0 0 -1
+"cost" 8 0 0 -1
+"build" 8 0 0 -1
+"lcms" 8 0 0 -1
+"hcms" 8 0 0 -1
+"maint" 8 0 0 -1
+"maxpop" 8 0 0 -1
+/19
+
+[0:636] Command : XDUMP meta ship-chr 0
+"type" 4 0 0 20
+"name" 3 0 0 -1
+"civil" 6 0 0 -1
+"milit" 6 0 0 -1
+"shell" 6 0 0 -1
+"gun" 6 0 0 -1
+"petrol" 6 0 0 -1
+"iron" 6 0 0 -1
+"dust" 6 0 0 -1
+"bar" 6 0 0 -1
+"food" 6 0 0 -1
+"oil" 6 0 0 -1
+"lcm" 6 0 0 -1
+"hcm" 6 0 0 -1
+"uw" 6 0 0 -1
+"rad" 6 0 0 -1
+"l_build" 8 0 0 -1
+"h_build" 8 0 0 -1
+"armor" 8 0 0 -1
+"speed" 8 0 0 -1
+"visib" 8 0 0 -1
+"vrnge" 8 0 0 -1
+"frnge" 8 0 0 -1
+"glim" 8 0 0 -1
+"nxlight" 5 0 0 -1
+"nchoppers" 5 0 0 -1
+"tech" 8 0 0 -1
+"cost" 8 0 0 -1
+"flags" 1 8 0 49
+"nplanes" 5 0 0 -1
+"nland" 5 0 0 -1
+/31
+
+[0:636] Command : XDUMP meta plane-chr 0
+"type" 4 0 0 21
+"name" 3 0 0 -1
+"l_build" 8 0 0 -1
+"h_build" 8 0 0 -1
+"cost" 8 0 0 -1
+"tech" 8 0 0 -1
+"acc" 8 0 0 -1
+"load" 8 0 0 -1
+"att" 8 0 0 -1
+"def" 8 0 0 -1
+"range" 8 0 0 -1
+"crew" 8 0 0 -1
+"fuel" 8 0 0 -1
+"stealth" 8 0 0 -1
+"flags" 8 8 0 44
+/15
+
+[0:636] Command : XDUMP meta land-chr 0
+"type" 4 0 0 22
+"name" 3 0 0 -1
+"civil" 6 0 0 -1
+"milit" 6 0 0 -1
+"shell" 6 0 0 -1
+"gun" 6 0 0 -1
+"petrol" 6 0 0 -1
+"iron" 6 0 0 -1
+"dust" 6 0 0 -1
+"bar" 6 0 0 -1
+"food" 6 0 0 -1
+"oil" 6 0 0 -1
+"lcm" 6 0 0 -1
+"hcm" 6 0 0 -1
+"uw" 6 0 0 -1
+"rad" 6 0 0 -1
+"l_build" 8 0 0 -1
+"h_build" 8 0 0 -1
+"tech" 8 0 0 -1
+"cost" 8 0 0 -1
+"att" 13 0 0 -1
+"def" 13 0 0 -1
+"vul" 8 0 0 -1
+"spd" 8 0 0 -1
+"vis" 8 0 0 -1
+"spy" 8 0 0 -1
+"rmax" 8 0 0 -1
+"frg" 8 0 0 -1
+"acc" 8 0 0 -1
+"dam" 8 0 0 -1
+"ammo" 8 0 0 -1
+"aaf" 8 0 0 -1
+"nxlight" 5 0 0 -1
+"nland" 5 0 0 -1
+"flags" 1 8 0 31
+/35
+
+[0:636] Command : XDUMP meta nuke-chr 0
+"type" 4 0 0 23
+"name" 3 0 0 -1
+"l_build" 8 0 0 -1
+"h_build" 8 0 0 -1
+"o_build" 8 0 0 -1
+"r_build" 8 0 0 -1
+"blast" 8 0 0 -1
+"dam" 8 0 0 -1
+"cost" 8 0 0 -1
+"tech" 8 0 0 -1
+"weight" 8 0 0 -1
+"flags" 8 8 0 40
+/12
+
+[0:636] Command : XDUMP meta news-chr 0
+"uid" 4 0 0 24
+"newstory" 3 0 2 -1
+"good_will" 8 0 0 -1
+"newspage" 8 0 0 42
+/4
+
+[0:636] Command : XDUMP meta infrastructure 0
+"name" 3 4 0 -1
+"lcms" 5 0 0 -1
+"hcms" 5 0 0 -1
+"dcost" 5 0 0 -1
+"mcost" 5 0 0 -1
+"enable" 5 0 0 -1
+/6
+
+[0:636] Command : XDUMP meta updates 0
+"time" 12 0 0 -1
+/1
+
+[0:636] Command : XDUMP meta table 0
+"uid" 8 0 0 27
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta version 0
+"version" 14 0 23 -1
+"maxnoc" 1 0 0 -1
+"privname" 3 0 0 -1
+"privlog" 3 0 0 -1
+"WORLD_X" 8 0 0 -1
+"WORLD_Y" 8 0 0 -1
+"etu_per_update" 8 0 0 -1
+"update_window" 8 0 0 -1
+"update_demand" 8 0 0 -1
+"update_wantmin" 8 0 0 -1
+"update_demandtimes" 3 0 0 -1
+"game_days" 3 0 0 -1
+"game_hours" 3 0 0 -1
+"ALL_BLEED" 8 0 0 -1
+"AUTO_POWER" 8 0 0 -1
+"BLITZ" 8 0 0 -1
+"BRIDGETOWERS" 8 0 0 -1
+"EASY_BRIDGES" 8 0 0 -1
+"FALLOUT" 8 0 0 -1
+"GODNEWS" 8 0 0 -1
+"GO_RENEW" 8 0 0 -1
+"GUINEA_PIGS" 8 0 0 -1
+"HIDDEN" 8 0 0 -1
+"INTERDICT_ATT" 8 0 0 -1
+"LOANS" 8 0 0 -1
+"LOSE_CONTACT" 8 0 0 -1
+"MARKET" 8 0 0 -1
+"MOB_ACCESS" 8 0 0 -1
+"NOFOOD" 8 0 0 -1
+"NOMOBCOST" 8 0 0 -1
+"NO_FORT_FIRE" 8 0 0 -1
+"NO_PLAGUE" 8 0 0 -1
+"RAILWAYS" 8 0 0 -1
+"RES_POP" 8 0 0 -1
+"SAIL" 8 0 0 -1
+"SUPER_BARS" 8 0 0 -1
+"TECH_POP" 8 0 0 -1
+"TREATIES" 8 0 0 -1
+"btu_build_rate" 13 0 0 -1
+"m_m_p_d" 8 0 0 -1
+"max_btus" 8 0 0 -1
+"max_idle" 8 0 0 -1
+"max_idle_visitor" 8 0 0 -1
+"login_grace_time" 8 0 0 -1
+"players_at_00" 8 0 0 -1
+"easy_tech" 13 0 0 -1
+"level_age_rate" 13 0 0 -1
+"tech_log_base" 13 0 0 -1
+"ally_factor" 13 0 0 -1
+"edu_avg" 13 0 0 -1
+"hap_avg" 13 0 0 -1
+"edu_cons" 2 0 0 -1
+"hap_cons" 2 0 0 -1
+"sect_mob_scale" 13 0 0 -1
+"sect_mob_max" 8 0 0 -1
+"buil_bh" 8 0 0 -1
+"buil_bc" 2 0 0 -1
+"buil_bt" 2 0 0 -1
+"buil_tower_bh" 8 0 0 -1
+"buil_tower_bc" 2 0 0 -1
+"buil_tower_bt" 2 0 0 -1
+"land_mob_scale" 13 0 0 -1
+"land_grow_scale" 13 0 0 -1
+"land_mob_max" 8 0 0 -1
+"money_land" 2 0 0 -1
+"plane_mob_scale" 13 0 0 -1
+"plane_grow_scale" 13 0 0 -1
+"plane_mob_max" 8 0 0 -1
+"money_plane" 2 0 0 -1
+"ship_mob_scale" 13 0 0 -1
+"ship_grow_scale" 13 0 0 -1
+"ship_mob_max" 8 0 0 -1
+"money_ship" 2 0 0 -1
+"torpedo_damage" 8 0 0 -1
+"fort_max_interdiction_range" 8 0 0 -1
+"land_max_interdiction_range" 8 0 0 -1
+"ship_max_interdiction_range" 8 0 0 -1
+"flakscale" 13 0 0 -1
+"combat_mob" 2 0 0 -1
+"people_damage" 2 0 0 -1
+"unit_damage" 2 0 0 -1
+"collateral_dam" 2 0 0 -1
+"assault_penalty" 2 0 0 -1
+"fire_range_factor" 13 0 0 -1
+"sect_mob_neg_factor" 8 0 0 -1
+"uwbrate" 2 0 0 -1
+"money_civ" 2 0 0 -1
+"money_mil" 2 0 0 -1
+"money_res" 2 0 0 -1
+"money_uw" 2 0 0 -1
+"babyeat" 2 0 0 -1
+"bankint" 2 0 0 -1
+"eatrate" 2 0 0 -1
+"fcrate" 2 0 0 -1
+"fgrate" 2 0 0 -1
+"obrate" 2 0 0 -1
+"rollover_avail_max" 8 0 0 -1
+"decay_per_etu" 2 0 0 -1
+"fallout_spread" 2 0 0 -1
+"drnuke_const" 13 0 0 -1
+"MARK_DELAY" 8 0 0 -1
+"TRADE_DELAY" 8 0 0 -1
+"buytax" 2 0 0 -1
+"tradetax" 2 0 0 -1
+"trade_1_dist" 8 0 0 -1
+"trade_2_dist" 8 0 0 -1
+"trade_3_dist" 8 0 0 -1
+"trade_1" 13 0 0 -1
+"trade_2" 13 0 0 -1
+"trade_3" 13 0 0 -1
+"trade_ally_bonus" 13 0 0 -1
+"trade_ally_cut" 13 0 0 -1
+/112
+
+[0:636] Command : XDUMP meta meta 0
+"name" 3 4 0 -1
+"type" 4 4 0 34
+"flags" 5 12 0 33
+"len" 7 4 0 -1
+"table" 8 4 0 27
+/5
+
+[0:636] Command : XDUMP meta sector-navigation 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta agreement-status 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta land-chr-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta level 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta meta-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta meta-type 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta missions 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta nation-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta nation-rejects 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta nation-relationships 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta nation-status 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta nuke-chr-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta packing 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta page-headings 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta plague-stages 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta plane-chr-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta plane-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta resources 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta retreat-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta ship-chr-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta treaty-flags 0
+"value" 8 4 0 -1
+"name" 3 4 0 -1
+/2
+
+[0:636] Command : XDUMP meta country 0
+"cnum" 5 0 0 9
+"ip" 14 0 32 -1
+"hostname" 14 0 512 -1
+"userid" 14 0 32 -1
+"xcap" 9 0 0 -1
+"ycap" 10 0 0 -1
+"update" 4 0 0 -1
+"tgms" 7 0 0 -1
+"ann" 7 0 0 -1
+"timeused" 8 0 0 -1
+"btu" 6 0 0 -1
+"access" 6 0 0 -1
+"milreserve" 1 0 0 -1
+"money" 1 0 0 -1
+"login" 12 0 0 -1
+"logout" 12 0 0 -1
+"newstim" 12 0 0 -1
+"annotim" 12 0 0 -1
+"tech" 13 0 0 -1
+"research" 13 0 0 -1
+"education" 13 0 0 -1
+"happiness" 13 0 0 -1
+"flags" 1 8 0 36
+/23
+
+[0:636] Command : Bye-bye
+Exit: so long...
+Player 02 Turn 00 completed successfully
+Player 03 Turn 00 starting
+
+
+       -=O=-
+
+[0:640] Command : 0,0 is no longer a sanctuary.
+2,0 is no longer a sanctuary.
+
+[0:640] Command : Total movement cost = 1, 126 mob left in 0,0
+Sector 1,-1 is now yours.
+
+[0:639] Command : 
+[0:638] Command : Total movement cost = 9
+117 mob left in 0,0
+
+[0:637] Command : 
+[0:636] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-1   g    0%       0 .. ..      206    0    0    0 100%    0        0
+   0,0    c  100%     117 .. ..      794   55   75    0 100%    0        0
+   2,0    c  100%     127 .. ..     1000   55   75    0 100%    0        0
+3 sectors
+
+[0:636] Command : Bye-bye
+Exit: so long...
+Player 03 Turn 00 completed successfully
+Player 04 Turn 00 starting
+
+
+       -=O=-
+
+[0:640] Command : 0,0 is no longer a sanctuary.
+2,0 is no longer a sanctuary.
+
+[0:640] Command : No mobility used, 127 mob left in 0,0
+Sector 1,-1 is now yours.
+
+[0:639] Command : 
+[0:638] Command : Total movement cost = 9
+118 mob left in 0,0
+
+[0:637] Command : 
+[0:636] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-1   g    0%       0 .. ..      206    0    0    0 100%    0        0
+   0,0    c  100%     118 .. ..      794   55   75    0 100%    0        0
+   2,0    c  100%     127 .. ..     1000   55   75    0 100%    0        0
+3 sectors
+
+[0:636] Command : Bye-bye
+Exit: so long...
+Player 04 Turn 00 completed successfully
+Player 05 Turn 00 starting
+
+
+       -=O=-
+
+[0:640] Command : 0,0 is no longer a sanctuary.
+2,0 is no longer a sanctuary.
+
+[0:640] Command : Total movement cost = 1, 126 mob left in 0,0
+Sector 1,-1 is now yours.
+
+[0:639] Command : 
+[0:638] Command : Total movement cost = 8
+118 mob left in 0,0
+
+[0:637] Command : 
+[0:636] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-1   g    0%       0 .. ..      206    0    0    0 100%    0        0
+   0,0    c  100%     118 .. ..      794   55   75    0 100%    0        0   1
+   2,0    c  100%     127 .. ..     1000   55   75    0 100%    0        0
+3 sectors
+
+[0:636] Command : Bye-bye
+Exit: so long...
+Player 05 Turn 00 completed successfully
+Player 06 Turn 00 starting
+
+
+       -=O=-
+
+[0:640] Command : 0,0 is no longer a sanctuary.
+2,0 is no longer a sanctuary.
+
+[0:640] Command : No mobility used, 127 mob left in 0,0
+Sector 1,-1 is now yours.
+
+[0:639] Command : 
+[0:638] Command : Total movement cost = 8
+119 mob left in 0,0
+
+[0:637] Command : 
+[0:636] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-1   g    0%       0 .. ..      206    0    0    0 100%    0        0
+   0,0    c  100%     119 .. ..      794   55   75    0 100%    0        0
+   2,0    c  100%     127 .. ..     1000   55   75    0 100%    0        0
+3 sectors
+
+[0:636] Command : Bye-bye
+Exit: so long...
+Player 06 Turn 00 completed successfully
+Player 07 Turn 00 starting
+
+
+       -=O=-
+
+[0:640] Command : 0,0 is no longer a sanctuary.
+2,0 is no longer a sanctuary.
+
+[0:640] Command : No mobility used, 127 mob left in 0,0
+Sector 1,-1 is now yours.
+
+[0:639] Command : 
+[0:638] Command : Total movement cost = 8
+119 mob left in 0,0
+
+[0:637] Command : 
+[0:636] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-1   g    0%       0 .. ..      206    0    0    0 100%    0        0
+   0,0    c  100%     119 .. ..      794   55   75    0 100%    0        0
+   2,0    c  100%     127 .. ..     1000   55   75    0 100%    0        0
+3 sectors
+
+[0:636] Command : Bye-bye
+Exit: so long...
+Player 07 Turn 00 completed successfully
+Player 08 Turn 00 starting
+
+
+       -=O=-
+
+[0:640] Command : 0,0 is no longer a sanctuary.
+2,0 is no longer a sanctuary.
+
+[0:640] Command : Total movement cost = 1, 126 mob left in 0,0
+Sector 1,-1 is now yours.
+
+[0:639] Command : 
+[0:638] Command : Total movement cost = 8
+118 mob left in 0,0
+
+[0:637] Command : 
+[0:636] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-1   g    0%       0 .. ..      206    0    0    0 100%    0        0
+   0,0    c  100%     118 .. ..      794   55   75    0 100%    0        0
+   2,0    c  100%     127 .. ..     1000   55   75    0 100%    0        0
+3 sectors
+
+[0:636] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 00 completed successfully
+Player 09 Turn 00 starting
+
+
+       -=O=-
+
+[0:640] Command : 0,0 is no longer a sanctuary.
+2,0 is no longer a sanctuary.
+
+[0:640] Command : No mobility used, 127 mob left in 0,0
+Sector 1,-1 is now yours.
+
+[0:639] Command : 
+[0:638] Command : Total movement cost = 8
+119 mob left in 0,0
+
+[0:637] Command : 
+[0:636] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-1   g    0%       0 .. ..      206    0    0    0 100%    0        0   1
+   0,0    c  100%     119 .. ..      794   55   75    0 100%    0        0
+   2,0    c  100%     127 .. ..     1000   55   75    0 100%    0        0
+3 sectors
+
+[0:636] Command : Bye-bye
+Exit: so long...
+Player 09 Turn 00 completed successfully
+Player 10 Turn 00 starting
+
+
+       -=O=-
+
+[0:640] Command : 0,0 is no longer a sanctuary.
+2,0 is no longer a sanctuary.
+
+[0:640] Command : No mobility used, 127 mob left in 0,0
+Sector 1,-1 is now yours.
+
+[0:639] Command : 
+[0:638] Command : Total movement cost = 8
+119 mob left in 0,0
+
+[0:637] Command : 
+[0:636] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-1   g    0%       0 .. ..      206    0    0    0 100%    0        0   1
+   0,0    c  100%     119 .. ..      794   55   75    0 100%    0        0
+   2,0    c  100%     127 .. ..     1000   55   75    0 100%    0        0   1
+3 sectors
+
+[0:636] Command : Bye-bye
+Exit: so long...
+Player 10 Turn 00 completed successfully
+Update Turn 01 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        2   3   67% 2.0K 110    0    0    0    0    0    0    0    0    0   25K
+     0.96
+        3   3   67% 2.0K 110    0    0    0    0    0    0    0    0    0   25K
+     0.96
+        4   3   67% 2.0K 110    0    0    0    0    0    0    0    0    0   25K
+     0.96
+        5   3   67% 2.0K 110    0    0    0    0    0    0    0    0    0   25K
+     0.96
+        6   3   67% 2.0K 110    0    0    0    0    0    0    0    0    0   25K
+     0.96
+        7   3   67% 2.0K 110    0    0    0    0    0    0    0    0    0   25K
+     0.96
+        8   3   67% 2.0K 110    0    0    0    0    0    0    0    0    0   25K
+     0.96
+        9   3   67% 2.0K 110    0    0    0    0    0    0    0    0    0   25K
+     0.96
+       10   3   67% 2.0K 110    0    0    0    0    0    0    0    0    0   25K
+     0.96
+        1  30    7% 2.1K   0    0    0    0    0    0    0    0    0    0   24K
+     0.95
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide  57   35%  20K 990    0    0    0    0    0    0    0    0    0  249K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                  0.00        0.00        0.00        0.00     5,-15 
+ 2     2                  0.00        0.00        0.00        0.00    16,10  
+ 3     3                  0.00        0.00        0.00        0.00    -4,10  
+ 4     4                  0.00        0.00        0.00        0.00   -15,1   
+ 5     5                  0.00        0.00        0.00        0.00   -30,8   
+ 6     6                  0.00        0.00        0.00        0.00     2,-2  
+ 7     7                  0.00        0.00        0.00        0.00    24,0   
+ 8     8                  0.00        0.00        0.00        0.00    23,-11 
+ 9     9                  0.00        0.00        0.00        0.00   -26,-6  
+ 10    10                 0.00        0.00        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    1,-15  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    3,-15  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    5,-15  c    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    7,-15  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    9,-15  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1   11,-15  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    4,-14  g    0%       0 .. ..      601    0    0    0 100%    0    0   1
+  1    6,-14  m    0%       0 .. ..      550    0    0    0 100%    0    0
+  1    8,-14  +    0%       0 .. ..        1    0    0    0 100%    0    0
+  1   10,-14  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    3,-13  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    5,-13  cg 100%      49 .. ..      168    0    0    0 100%    0    0
+  1    7,-13  cm 100%     103 .. ..      765    0  150    0 100%    0    0
+  1    9,-13  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    4,-12  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    6,-12  +    0%       0 .. ..        1    0    0    0 100%    0    0
+  1    8,-12  +    0%       0 .. ..        1    0    0    0 100%    0    0
+  1   10,-12  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1   12,-12  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   24,-12  g    0%       0 .. ..      206    0    0    0 100%    0    0
+ 10  -11,-11  g    0%       0 .. ..      206    0    0    0 100%    0    0   1
+  1    3,-11  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    5,-11  +    0%       0 .. ..        1    0    0    0 100%    0    0
+  1    7,-11  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    9,-11  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1   11,-11  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1   13,-11  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1   15,-11  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   23,-11  c  100%     118 .. ..      794   55   75    0 100%    0    0
+  8   25,-11  c  100%     127 .. ..     1000   55   75    0 100%    0    0
+ 10  -12,-10  c  100%     119 .. ..      794   55   75    0 100%    0    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55   75    0 100%    0    0   1
+  1    4,-10  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    6,-10  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1   10,-10  +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  9  -25,-7   g    0%       0 .. ..      206    0    0    0 100%    0    0   1
+  9  -26,-6   c  100%     119 .. ..      794   55   75    0 100%    0    0
+  9  -24,-6   c  100%     127 .. ..     1000   55   75    0 100%    0    0
+  6    3,-3   g    0%       0 .. ..      206    0    0    0 100%    0    0
+  6    2,-2   c  100%     119 .. ..      794   55   75    0 100%    0    0
+  6    4,-2   c  100%     127 .. ..     1000   55   75    0 100%    0    0
+  7   25,-1   g    0%       0 .. ..      206    0    0    0 100%    0    0
+  4  -14,0    g    0%       0 .. ..      206    0    0    0 100%    0    0
+  7   24,0    c  100%     119 .. ..      794   55   75    0 100%    0    0
+  7   26,0    c  100%     127 .. ..     1000   55   75    0 100%    0    0
+  4  -15,1    c  100%     118 .. ..      794   55   75    0 100%    0    0
+  4  -13,1    c  100%     127 .. ..     1000   55   75    0 100%    0    0
+  5  -29,7    g    0%       0 .. ..      206    0    0    0 100%    0    0
+  5  -30,8    c  100%     118 .. ..      794   55   75    0 100%    0    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55   75    0 100%    0    0
+  3   -3,9    g    0%       0 .. ..      206    0    0    0 100%    0    0
+  2   17,9    g    0%       0 .. ..      206    0    0    0 100%    0    0   1
+  3   -4,10   c  100%     117 .. ..      794   55   75    0 100%    0    0
+  3   -2,10   c  100%     127 .. ..     1000   55   75    0 100%    0    0
+  2   16,10   c  100%     118 .. ..      794   55   75    0 100%    0    0
+  2   18,10   c  100%     127 .. ..     1000   55   75    0 100%    0    0
+57 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   1,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  11,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-14  g .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-14  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-13  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-13  c .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  1   7,-13  c ...u...... ...0......   0   0    0    0    0   0    0    0    0   0
+  1   9,-13  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  12,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  24,-12  g .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  11,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  13,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  25,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+57 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  +    0%    0    0   82  58    0
+  1    1,-15  +    0%    6    0   67  32    0
+  1    3,-15  +    0%   11    0   61  21    0
+  1    5,-15  c    0%   28    5   37   0    0
+  1    7,-15  +    0%    0    0   76  47    0
+  1    9,-15  +    0%   39   14   21   0    0
+  1   11,-15  +    0%    0    0   91  72    0
+  1    4,-14  g    0%   34   10   28   0    0
+  1    6,-14  m    0%  100   69    0   0   97
+  1    8,-14  +    0%   96   60    0   0   77
+  1   10,-14  +    0%   45   19   13   0    0
+  1    3,-13  +    0%   23    1   43   0    0
+  1    5,-13  cg 100%  100  100  100 100  100
+  1    7,-13  cm 100%  100  100  100 100  100
+  1    9,-13  +    0%   17    0   52   7    0
+  1    4,-12  +    0%   74   42    0   0   37
+  1    6,-12  +    0%  100   80    0   0  100
+  1    8,-12  +    0%  100   65    0   0   88
+  1   10,-12  +    0%   50   23    6   0    0
+  1   12,-12  +    0%   63   33    0   0   17
+  8   24,-12  g    0%  100   80    0   0  100
+ 10  -11,-11  g    0%   78   46    0   0   45
+  1    3,-11  +    0%    0    0  100  87    0
+  1    5,-11  +    0%  100   74    0   0  100
+  1    7,-11  +    0%   91   56    0   0   68
+  1    9,-11  +    0%   85   51    0   0   57
+  1   11,-11  +    0%   78   46    0   0   45
+  1   13,-11  +    0%   67   37    0   0   25
+  1   15,-11  +    0%   56   28    0   0    5
+  8   23,-11  c  100%  100  100  100 100  100
+  8   25,-11  c  100%  100  100  100 100  100
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +    0%    0    0  100 100    0
+  1    6,-10  +    0%    0    0  100 100    0
+  1   10,-10  +    0%    0    0  100  98    0
+  9  -25,-7   g    0%   28    5   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g    0%  100   80    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g    0%  100   69    0   0   97
+  4  -14,0    g    0%   96   60    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g    0%  100   74    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  3   -3,9    g    0%  100   74    0   0  100
+  2   17,9    g    0%   34   10   28   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   16,10   c  100%  100  100  100 100  100
+  2   18,10   c  100%  100  100  100 100  100
+57 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 01 completed successfully
+Player 01 Turn 01 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:592] Command : Realm #0 is -8:12,-4:4
+
+[0:592] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+  -4,-2   +    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -2,-2   +    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   0,-2   c    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   2,-2   +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+   4,-2   +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+   6,-2   +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+  -1,-1   g  100%      60 .. ..      781    0    0    0 100%    0        0   1
+   1,-1   m  100%      60 .. ..      715    0    0    0 100%    0        0
+   3,-1   +    0%      60 .. ..        1    0    0    0 100%    0        0
+   5,-1   +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+  -2,0    +    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   0,0    g   40%     109 .. ..      218    0    0    0 100%   65        0
+   2,0    m  100%     127 .. ..      994    0  173    0 100%    0        0
+   4,0    +    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -1,1    +    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   1,1    +    0%      60 .. ..        2    0    0    0 100%    0        0
+   3,1    +    0%      60 .. ..        1    0    0    0 100%    0        0
+   5,1    +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+   7,1    +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+  -2,2    +    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   0,2    +    0%      60 .. ..        1    0    0    0 100%    0        0
+   2,2    +    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   4,2    +    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   6,2    +    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   8,2    +    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  10,2    +    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -1,3    +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+   1,3    +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+   5,3    +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+30 sectors
+
+[0:592] Command :      --------0000000000111
+     876543210123456789012
+  -4     . . . . .         -4  
+  -3    . . . + . . .      -3  
+  -2   . + + c + + + .     -2  
+  -1  - . . g m + + .      -1  
+   0   - . + g m + . .     0   
+   1    - . + + + + + . .  1   
+   2     . + + + + + + + . 2   
+   3      . + + . + . . .  3   
+   4       . . . . .       4   
+     --------0000000000111
+     876543210123456789012
+
+[0:592] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2110, yielding 0.00 hap, 0.00 edu
+0.0000 tech, 0.0000 research produced
+money delta was $-142 for this update
+
+
+[0:592] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 01 completed successfully
+Update Turn 02 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  30   11% 2.7K   0    0    0    0  904   37    0    0    0    0   24K
+     1.14
+        6   3   93% 2.3K 110    0    0    0    0   51    0    0    0    0   25K
+     1.06
+        8   3   93% 2.3K 110    0    0    0    0   51    0    0    0    0   25K
+     1.06
+        3   3   93% 2.3K 110    0    0    0    0   47    0    0    0    0   25K
+     1.05
+        5   3   93% 2.3K 110    0    0    0    0   47    0    0    0    0   25K
+     1.05
+        7   3   93% 2.3K 110    0    0    0    0   44    0    0    0    0   25K
+     1.05
+        4   3   93% 2.3K 110    0    0    0    0   38    0    0    0    0   25K
+     1.05
+       10   3   93% 2.3K 110    0    0    0    0   29    0    0    0    0   25K
+     1.05
+        2   3   93% 2.3K 110    0    0    0    0    6    0    0    0    0   25K
+     1.04
+        9   3   93% 2.3K 110    0    0    0    0    3    0    0    0    0   25K
+     1.04
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide  57   50%  23K 990    0    0    0  904  353    0    0    0    0  251K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                  0.00        0.00        0.00        0.00     5,-15 
+ 2     2                  0.00        0.00        0.00        0.00    16,10  
+ 3     3                  0.00        0.00        0.00        0.00    -4,10  
+ 4     4                  0.00        0.00        0.00        0.00   -15,1   
+ 5     5                  0.00        0.00        0.00        0.00   -30,8   
+ 6     6                  0.00        0.00        0.00        0.00     2,-2  
+ 7     7                  0.00        0.00        0.00        0.00    24,0   
+ 8     8                  0.00        0.00        0.00        0.00    23,-11 
+ 9     9                  0.00        0.00        0.00        0.00   -26,-6  
+ 10    10                 0.00        0.00        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  1    1,-15  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1    3,-15  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1    5,-15  c    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1    7,-15  +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  1    9,-15  +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  1   11,-15  +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  1    4,-14  g  100%      60 .. ..      781    0    0    0 100%    0    0   1
+  1    6,-14  m  100%      60 .. ..      715    0    0    0 100%    0    0
+  1    8,-14  +    0%      60 .. ..        1    0    0    0 100%    0    0
+  1   10,-14  +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  1    3,-13  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1    5,-13  g   40%     109 .. ..      218    0    0    0 100%   65    0
+  1    7,-13  m  100%     127 .. ..      994    0  173    0 100%    0    0
+  1    9,-13  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1    4,-12  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1    6,-12  +    0%      60 .. ..        2    0    0    0 100%    0    0
+  1    8,-12  +    0%      60 .. ..        1    0    0    0 100%    0    0
+  1   10,-12  +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  1   12,-12  +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  8   24,-12  g   80%      60 .. ..      268    0    0    0 100%    1    0
+ 10  -11,-11  g   79%      60 .. ..      267    0    0    0 100%    1    0   1
+  1    3,-11  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1    5,-11  +    0%      60 .. ..        1    0    0    0 100%    0    0
+  1    7,-11  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1    9,-11  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1   11,-11  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1   13,-11  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1   15,-11  +    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   23,-11  c  100%     127 .. ..     1000   55   86    0 100%  664    0
+  8   25,-11  c  100%     127 .. ..     1000   55   87    0 100%  665    0
+ 10  -12,-10  c  100%     127 .. ..     1000   55   86    0 100%  664    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55   86    0 100%  664    0   1
+  1    4,-10  +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  1    6,-10  +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  1   10,-10  +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  9  -25,-7   g   80%      60 .. ..      268    0    0    0 100%    6    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55   87    0 100%  664    0
+  9  -24,-6   c  100%     127 .. ..     1000   55   86    0 100%  664    0
+  6    3,-3   g   80%      60 .. ..      268    0    0    0 100%    1    0
+  6    2,-2   c  100%     127 .. ..     1000   55   86    0 100%  664    0
+  6    4,-2   c  100%     127 .. ..     1000   55   86    0 100%  664    0
+  7   25,-1   g   80%      60 .. ..      268    0    0    0 100%    1    0
+  4  -14,0    g   79%      60 .. ..      267    0    0    0 100%    0    0
+  7   24,0    c  100%     127 .. ..     1000   55   86    0 100%  664    0
+  7   26,0    c  100%     127 .. ..     1000   55   86    0 100%  664    0
+  4  -15,1    c  100%     127 .. ..     1000   55   86    0 100%  664    0
+  4  -13,1    c  100%     127 .. ..     1000   55   86    0 100%  664    0
+  5  -29,7    g   80%      60 .. ..      268    0    0    0 100%    1    0
+  5  -30,8    c  100%     127 .. ..     1000   55   86    0 100%  664    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55   86    0 100%  664    0
+  3   -3,9    g   80%      60 .. ..      268    0    0    0 100%    1    0
+  2   17,9    g   80%      60 .. ..      268    0    0    0 100%    6    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55   86    0 100%  664    0
+  3   -2,10   c  100%     127 .. ..     1000   55   87    0 100%  665    0
+  2   16,10   c  100%     127 .. ..     1000   55   87    0 100%  664    0
+  2   18,10   c  100%     127 .. ..     1000   55   86    0 100%  664    0
+57 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   1,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  11,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-14  g .......... ..........   0   0    0    0   37   0    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0  329    0   0    0    0    0   0
+  1   8,-14  + .......... ..........   0   0    0  351    0   0    0    0    0   0
+  1  10,-14  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-13  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-13  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  1   7,-13  m ...u...... ...0......   0   0    0  224    0   0    0    0    0   0
+  1   9,-13  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  12,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  24,-12  g .......... ..........   0   0    0    0   51   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0   29   0    0    0    0   0
+  1   3,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  11,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  13,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  25,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0    3   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0   51   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0   44   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0   38   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0   47   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0   47   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0    6   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+57 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  +    0%    0    0   82  58    0
+  1    1,-15  +    0%    6    0   67  32    0
+  1    3,-15  +    0%   11    0   61  21    0
+  1    5,-15  c    0%   28    5   37   0    0
+  1    7,-15  +    0%    0    0   76  47    0
+  1    9,-15  +    0%   39   14   21   0    0
+  1   11,-15  +    0%    0    0   91  72    0
+  1    4,-14  g  100%   34    3   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  +    0%   96   60    0   0   77
+  1   10,-14  +    0%   45   19   13   0    0
+  1    3,-13  +    0%   23    1   43   0    0
+  1    5,-13  g   40%  100  100  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  +    0%   17    0   52   7    0
+  1    4,-12  +    0%   74   42    0   0   37
+  1    6,-12  +    0%  100   80    0   0  100
+  1    8,-12  +    0%  100   65    0   0   88
+  1   10,-12  +    0%   50   23    6   0    0
+  1   12,-12  +    0%   63   33    0   0   17
+  8   24,-12  g   80%  100   70    0   0  100
+ 10  -11,-11  g   79%   78   40    0   0   45
+  1    3,-11  +    0%    0    0  100  87    0
+  1    5,-11  +    0%  100   74    0   0  100
+  1    7,-11  +    0%   91   56    0   0   68
+  1    9,-11  +    0%   85   51    0   0   57
+  1   11,-11  +    0%   78   46    0   0   45
+  1   13,-11  +    0%   67   37    0   0   25
+  1   15,-11  +    0%   56   28    0   0    5
+  8   23,-11  c  100%  100  100  100 100  100
+  8   25,-11  c  100%  100  100  100 100  100
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +    0%    0    0  100 100    0
+  1    6,-10  +    0%    0    0  100 100    0
+  1   10,-10  +    0%    0    0  100  98    0
+  9  -25,-7   g   80%   28    5   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g   80%  100   70    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g   80%  100   60    0   0   97
+  4  -14,0    g   79%   96   53    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g   80%  100   64    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  3   -3,9    g   80%  100   64    0   0  100
+  2   17,9    g   80%   34    9   28   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   16,10   c  100%  100  100  100 100  100
+  2   18,10   c  100%  100  100  100 100  100
+57 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 02 completed successfully
+Player 01 Turn 02 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:593] Command : 
+[0:592] Command : Looking for best path to 4,0
+Using best path 'jh', movement cost 0.400
+Total movement cost = 80
+45 mob left in 2,0
+
+[0:591] Command : Total movement cost = 2
+89 mob left in 1,-1
+
+[0:590] Command : Looking for best path to 4,0
+Using best path 'njjh', movement cost 0.800
+Total movement cost = 24
+96 mob left in -1,-1
+
+[0:589] Command : Looking for best path to 3,-1
+Using best path 'jjh', movement cost 0.600
+Total movement cost = 18
+78 mob left in -1,-1
+
+[0:588] Command : Looking for best path to 3,-1
+Using best path 'jh', movement cost 0.400
+Total movement cost = 7
+82 mob left in 1,-1
+
+[0:587] Command : Deliver iron ore from mine @ 2,0 to 4,0
+
+[0:586] Command : Deliver iron ore from mine @ 1,-1 to 3,-1
+
+[0:585] Command : Looking for best path to 5,-1
+Using best path 'ujh', movement cost 0.800
+Total movement cost = 19
+26 mob left in 2,0
+
+[0:584] Command : 
+[0:583] Command : 
+[0:582] Command : highway at 1,-3 has no dist sector. 
+highway 1,-3 now distributes to 5,-1 (cost 1.200)
+
+highway at -4,-2 has no dist sector. 
+highway -4,-2 now distributes to 5,-1 (cost 1.600)
+
+highway at -2,-2 has no dist sector. 
+highway -2,-2 now distributes to 5,-1 (cost 1.200)
+
+capital at 0,-2 has no dist sector. 
+capital 0,-2 now distributes to 5,-1 (cost 1.000)
+
+highway at 2,-2 has no dist sector. 
+highway 2,-2 now distributes to 5,-1 (cost 0.800)
+
+highway at 4,-2 has no dist sector. 
+highway 4,-2 now distributes to 5,-1 (cost 0.400)
+
+highway at 6,-2 has no dist sector. 
+highway 6,-2 now distributes to 5,-1 (cost 0.400)
+
+gold mine at -1,-1 has no dist sector. 
+gold mine -1,-1 now distributes to 5,-1 (cost 1.000)
+
+mine at 1,-1 has no dist sector. 
+mine 1,-1 now distributes to 5,-1 (cost 0.800)
+
+light manufacturing at 3,-1 has no dist sector. 
+light manufacturing 3,-1 now distributes to 5,-1 (cost 0.400)
+
+highway at 5,-1 has no dist sector. 
+Distribution from and to highway 5,-1 terminated
+
+highway at -2,0 has no dist sector. 
+highway -2,0 now distributes to 5,-1 (cost 1.200)
+
+gold mine at 0,0 has no dist sector. 
+gold mine 0,0 now distributes to 5,-1 (cost 1.000)
+
+mine at 2,0 has no dist sector. 
+mine 2,0 now distributes to 5,-1 (cost 0.800)
+
+heavy manufacturing at 4,0 distributes to 2,0. 
+heavy manufacturing 4,0 now distributes to 5,-1 (cost 0.400)
+
+highway at -1,1 has no dist sector. 
+highway -1,1 now distributes to 5,-1 (cost 1.200)
+
+highway at 1,1 has no dist sector. 
+highway 1,1 now distributes to 5,-1 (cost 1.000)
+
+highway at 3,1 has no dist sector. 
+highway 3,1 now distributes to 5,-1 (cost 0.800)
+
+highway at 5,1 has no dist sector. 
+highway 5,1 now distributes to 5,-1 (cost 0.800)
+
+highway at 7,1 has no dist sector. 
+highway 7,1 now distributes to 5,-1 (cost 1.200)
+
+highway at -2,2 has no dist sector. 
+highway -2,2 now distributes to 5,-1 (cost 1.600)
+
+highway at 0,2 has no dist sector. 
+highway 0,2 now distributes to 5,-1 (cost 1.400)
+
+highway at 2,2 has no dist sector. 
+highway 2,2 now distributes to 5,-1 (cost 1.200)
+
+highway at 4,2 has no dist sector. 
+highway 4,2 now distributes to 5,-1 (cost 1.200)
+
+highway at 6,2 has no dist sector. 
+highway 6,2 now distributes to 5,-1 (cost 1.200)
+
+highway at 8,2 has no dist sector. 
+highway 8,2 now distributes to 5,-1 (cost 1.600)
+
+highway at 10,2 has no dist sector. 
+highway 10,2 now distributes to 5,-1 (cost 2.000)
+
+highway at -1,3 has no dist sector. 
+highway -1,3 now distributes to 5,-1 (cost 1.800)
+
+highway at 1,3 has no dist sector. 
+highway 1,3 now distributes to 5,-1 (cost 1.600)
+
+highway at 5,3 has no dist sector. 
+highway 5,3 now distributes to 5,-1 (cost 1.600)
+
+
+[0:581] Command : 
+[0:580] Command : 
+[0:579] Command : 
+[0:578] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 02 completed successfully
+Update Turn 03 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  30   13% 3.3K   0    0    0    0  2.2K 161    0    0    0    0   25K
+     1.35
+        8   3  100% 2.3K 110    0    0    0    0  183    0    0    0    0   26K
+     1.14
+        6   3  100% 2.3K 110    0    0    0    0  183    0    0    0    0   26K
+     1.14
+        3   3  100% 2.3K 110    0    0    0    0  167    0    0    0    0   26K
+     1.13
+        5   3  100% 2.3K 110    0    0    0    0  167    0    0    0    0   26K
+     1.13
+        7   3  100% 2.3K 110    0    0    0    0  156    0    0    0    0   26K
+     1.13
+        4   3  100% 2.3K 110    0    0    0    0  137    0    0    0    0   26K
+     1.12
+       10   3  100% 2.3K 110    0    0    0    0  104    0    0    0    0   26K
+     1.11
+        2   3  100% 2.3K 110    0    0    0    0   22    0    0    0    0   26K
+     1.07
+        9   3  100% 2.3K 110    0    0    0    0   13    0    0    0    0   26K
+     1.07
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide  57   54%  24K 990    0    0    0  2.2K 1.3K   0    0    0    0  256K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                  0.00        0.00        0.00        0.00     5,-15 
+ 2     2                  0.00        0.00        0.00        0.00    16,10  
+ 3     3                  0.00        0.00        0.00        0.00    -4,10  
+ 4     4                  0.00        0.00        0.00        0.00   -15,1   
+ 5     5                  0.00        0.00        0.00        0.00   -30,8   
+ 6     6                  0.00        0.00        0.00        0.00     2,-2  
+ 7     7                  0.00        0.00        0.00        0.00    24,0   
+ 8     8                  0.00        0.00        0.00        0.00    23,-11 
+ 9     9                  0.00        0.00        0.00        0.00   -26,-6  
+ 10    10                 0.00        0.00        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  +    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  1    1,-15  +    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  1    3,-15  +    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  1    5,-15  c    0%     120 .. ..        2    0    0    0 100%    0    0   1
+  1    7,-15  +    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  1    9,-15  +    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  1   11,-15  +    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  1    4,-14  gb 100%      78 .. ..      400    0    0    0 100%   99    0   1
+  1    6,-14  m  100%      82 .. ..      755    0    0    0 100%    0    0
+  1    8,-14  j    0%     120 .. ..      476    0    0    0 100%    0    0
+  1   10,-14  h    0%     120 .. ..      232    0    0    0 100%    1    0   1
+  1    3,-13  +    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  1    5,-13  g  100%     127 .. ..      284    0    0    0 100%    0    0
+  1    7,-13  m  100%      26 .. ..      770    0  199    0 100%    0    0
+  1    9,-13  k    0%     120 .. ..      302    0    0    0 100%    0    0   1
+  1    4,-12  +    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  1    6,-12  +    0%     120 .. ..        2    0    0    0 100%    1    0
+  1    8,-12  +    0%     120 .. ..        1    0    0    0 100%    0    0
+  1   10,-12  +    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  1   12,-12  +    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  8   24,-12  g  100%     120 .. ..      349    0    0    0 100%    0    0
+ 10  -11,-11  g  100%     120 .. ..      347    0    0    0 100%    0    0   1
+  1    3,-11  +    0%     120 .. ..        2    0    0    0 100%    0    0   1
+  1    5,-11  +    0%     120 .. ..        1    0    0    0 100%    0    0
+  1    7,-11  +    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  1    9,-11  +    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  1   11,-11  +    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  1   13,-11  +    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  1   15,-11  +    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  8   23,-11  c  100%     127 .. ..     1000   55   99    0 100%  671    0
+  8   25,-11  c  100%     127 .. ..     1000   55  100    0 100%  672    0
+ 10  -12,-10  c  100%     127 .. ..     1000   55   99    0 100%  671    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55   99    0 100%  671    0   1
+  1    4,-10  +    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  1    6,-10  +    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  1   10,-10  +    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  9  -25,-7   g  100%     120 .. ..      348    0    0    0 100%    0    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  100    0 100%  672    0
+  9  -24,-6   c  100%     127 .. ..     1000   55   99    0 100%  671    0
+  6    3,-3   g  100%     120 .. ..      348    0    0    0 100%    0    0
+  6    2,-2   c  100%     127 .. ..     1000   55   99    0 100%  671    0
+  6    4,-2   c  100%     127 .. ..     1000   55   99    0 100%  671    0
+  7   25,-1   g  100%     120 .. ..      349    0    0    0 100%    2    0
+  4  -14,0    g  100%     120 .. ..      348    0    0    0 100%    1    0
+  7   24,0    c  100%     127 .. ..     1000   55   99    0 100%  671    0
+  7   26,0    c  100%     127 .. ..     1000   55   99    0 100%  671    0
+  4  -15,1    c  100%     127 .. ..     1000   55   99    0 100%  671    0
+  4  -13,1    c  100%     127 .. ..     1000   55   98    0 100%  671    0
+  5  -29,7    g  100%     120 .. ..      348    0    0    0 100%    1    0
+  5  -30,8    c  100%     127 .. ..     1000   55   99    0 100%  671    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55   99    0 100%  671    0
+  3   -3,9    g  100%     120 .. ..      348    0    0    0 100%    1    0
+  2   17,9    g  100%     120 .. ..      349    0    0    0 100%   11    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55   99    0 100%  671    0
+  3   -2,10   c  100%     127 .. ..     1000   55  100    0 100%  672    0
+  2   16,10   c  100%     127 .. ..     1000   55  101    0 100%  673    0
+  2   18,10   c  100%     127 .. ..     1000   55   99    0 100%  671    0
+57 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   1,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  11,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-14  g .......... ..........   0   0    0    0   52   0    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0  584    0   0    0    0    0   0
+  1   8,-14  j .......... .......0..   0   0    0 1283    0   0    0    0    0   0
+  1  10,-14  h .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-13  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-13  g .......... ....0.....   0   0    0    0  109   0    0    0    0   0
+  1   7,-13  m ...j...... ...0......   0   0    0  114    0   0    0    0    0   0
+  1   9,-13  k .......... ........0.   0   0    0  200    0   0    0    0    0   0
+  1   4,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  12,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  24,-12  g .......... ..........   0   0    0    0  183   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  104   0    0    0    0   0
+  1   3,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  11,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  13,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  25,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   13   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  183   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  156   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  137   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  167   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  167   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   22   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+57 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  +    0%    0    0   82  58    0
+  1    1,-15  +    0%    6    0   67  32    0
+  1    3,-15  +    0%   11    0   61  21    0
+  1    5,-15  c    0%   28    5   37   0    0
+  1    7,-15  +    0%    0    0   76  47    0
+  1    9,-15  +    0%   39   14   21   0    0
+  1   11,-15  +    0%    0    0   91  72    0
+  1    4,-14  gb 100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  j    0%   96   60    0   0   77
+  1   10,-14  h    0%   45   19   13   0    0
+  1    3,-13  +    0%   23    1   43   0    0
+  1    5,-13  g  100%  100   79  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k    0%   17    0   52   7    0
+  1    4,-12  +    0%   74   42    0   0   37
+  1    6,-12  +    0%  100   80    0   0  100
+  1    8,-12  +    0%  100   65    0   0   88
+  1   10,-12  +    0%   50   23    6   0    0
+  1   12,-12  +    0%   63   33    0   0   17
+  8   24,-12  g  100%  100   44    0   0  100
+ 10  -11,-11  g  100%   78   25    0   0   45
+  1    3,-11  +    0%    0    0  100  87    0
+  1    5,-11  +    0%  100   74    0   0  100
+  1    7,-11  +    0%   91   56    0   0   68
+  1    9,-11  +    0%   85   51    0   0   57
+  1   11,-11  +    0%   78   46    0   0   45
+  1   13,-11  +    0%   67   37    0   0   25
+  1   15,-11  +    0%   56   28    0   0    5
+  8   23,-11  c  100%  100  100  100 100  100
+  8   25,-11  c  100%  100  100  100 100  100
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +    0%    0    0  100 100    0
+  1    6,-10  +    0%    0    0  100 100    0
+  1   10,-10  +    0%    0    0  100  98    0
+  9  -25,-7   g  100%   28    3   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100   43    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100   38    0   0   97
+  4  -14,0    g  100%   96   33    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100   40    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  3   -3,9    g  100%  100   40    0   0  100
+  2   17,9    g  100%   34    6   28   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   16,10   c  100%  100  100  100 100  100
+  2   18,10   c  100%  100  100  100 100  100
+57 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 03 completed successfully
+Player 01 Turn 03 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:578] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -4,-2   +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -2,-2   +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   0,-2   c    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   2,-2   +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   4,-2   +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   6,-2   +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -1,-1   b  100%     127 .. ..      520    0    0    0 100%  137        0   1
+   1,-1   m  100%     102 .. ..      981    0    0    0 100%    0        0
+   3,-1   j  100%     127 .. ..      619    0    0    0 100%    0        0
+   5,-1   h   90%     127 .. ..      301    0    0    0 100%   90        0   1
+  -2,0    +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   0,0    g  100%     127 .. ..      369    0    0    0 100%    0        0
+   2,0    m  100%      72 .. ..     1000    0  229    0 100%    0        0
+   4,0    k  100%     127 .. ..      392    0    0    0 100%    0        0   1
+  -1,1    +    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   1,1    +    0%     127 .. ..        3    0    0    0 100%    1        0
+   3,1    +    0%     127 .. ..        1    0    0    0 100%    0        0
+   5,1    +    0%     127 .. ..        2    0    0    0 100%    1        0   1
+   7,1    +    0%     127 .. ..        2    0    0    0 100%    1        0   1
+  -2,2    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   0,2    +    0%     127 .. ..        1    0    0    0 100%    0        0
+   2,2    +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   4,2    +    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   6,2    +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   8,2    +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  10,2    +    0%     127 .. ..        2    0    0    0 100%    0        0   1
+  -1,3    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   1,3    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   5,3    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+30 sectors
+
+[0:578] Command :      --------0000000000111
+     876543210123456789012
+  -4     . . . . . . .     -4  
+  -3    . . . + . . . .    -3  
+  -2   . + + c + + + . .   -2  
+  -1  - . . b m j h . . -  -1  
+   0   - . + g m k . . .   0   
+   1    - . + + + + + . .  1   
+   2     . + + + + + + + . 2   
+   3      . + + . + . . .  3   
+   4       . . . . .       4   
+     --------0000000000111
+     876543210123456789012
+
+[0:578] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2745, yielding 0.00 hap, 0.00 edu
+0.0000 tech, 0.0000 research produced
+money delta was $1133 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 3259, yielding 0.00 hap, 0.00 edu
+0.0000 tech, 0.0000 research produced
+money delta was $499 for this update
+
+
+[0:578] Command : frg  frigate (#0) built in sector 5,-1
+That just cost you $120.00
+
+[0:577] Command : Looking for best path to 6,-2
+Using best path 'uh', movement cost 0.400
+Total movement cost = 4
+123 mob left in 5,-1
+
+[0:576] Command : Looking for best path to 6,-2
+Using best path 'uuh', movement cost 0.620
+Total movement cost = 16
+111 mob left in 4,0
+
+[0:575] Command : 
+[0:574] Command : 
+[0:573] Command : Looking for best path to -2,2
+Using best path 'gbbh', movement cost 1.000
+Total movement cost = 37
+35 mob left in 2,0
+
+[0:572] Command : Deliver iron ore from mine @ 2,0 to 4,0
+
+[0:571] Command : Deliver iron ore from mine @ 1,-1 to 3,-1
+
+[0:570] Command : 
+[0:569] Command : 
+[0:568] Command : 2,0 old threshold 1
+
+[0:567] Command : 
+[0:566] Command : 
+[0:565] Command : 
+[0:564] Command : 
+[0:563] Command : 
+[0:562] Command : 
+[0:561] Command : 
+[0:560] Command : 
+[0:559] Command : 
+[0:558] Command : 
+[0:557] Command : 
+[0:556] Command : 
+[0:555] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   6,-2   l 100%   101  101  1.00 $909   101l            101l             101
+  -1,-1   b 100%   405    0b 1.00 $0       0d            405d              81
+   1,-1   m 100%   600  600i 1.00 $0                                      600
+   3,-1   j 100%   482  241l 0.50 $0     482i            482i             241
+   0,0    g  44%   287  126d 1.00 $0                                      126
+   2,0    m 100%   649  649i 1.00 $0                                      649
+   4,0    k 100%   106   26h 0.50 $0     106i            106i              26
+  -2,2    o  87%   190   82o 0.50 $0                                       82
+8 sectors
+
+[0:555] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 03 completed successfully
+Player 08 Turn 03 starting
+
+
+       -=O=-
+You have three new telegrams waiting ...
+
+[0:640] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-1   g  100%     127 .. ..      454    0    0    0 100%    0        0
+   0,0    c  100%     127 .. ..     1000   55  113    0 100%  680        0
+   2,0    c  100%     127 .. ..     1000   55  115    0 100%  682        0
+3 sectors
+
+[0:640] Command :      --------00000000001
+     8765432101234567890
+  -5                     -5  
+  -4       . - . .       -4  
+  -3      - - - . .      -3  
+  -2     - - - - - -     -2  
+  -1    . - - g - - -    -1  
+   0   . . - c c - - -   0   
+   1    . - - - - . .    1   
+   2     . . . . . .     2   
+   3      . . . . .      3   
+   4                     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:640] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2000, yielding 0.00 hap, 0.00 edu
+0.0000 tech, 0.0000 research produced
+money delta was $165 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2268, yielding 0.00 hap, 0.00 edu
+0.0000 tech, 0.0000 research produced
+money delta was $437 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2349, yielding 0.00 hap, 0.00 edu
+0.0000 tech, 0.0000 research produced
+money delta was $528 for this update
+
+
+[0:640] Command : Total movement cost = 100, 27 mob left in 0,0
+Sector -7,-3 is now yours.
+
+[0:639] Command : 
+[0:638] Command : Thu Jan  1 00:00:00 1970
+DUMP LOST ITEMS 0
+type id x y timestamp
+*: Nothing lost.
+
+[0:638] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 03 completed successfully
+Update Turn 04 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  30   23% 4.2K   0    0    0    0  3.1K 286    0    0    1    0   26K
+     1.74
+        8   4   75% 2.5K 110    0    0    0    0  303    0    0    0    0   26K
+     1.22
+        6   3  100% 2.5K 110    0    0    0    0  299    0    0    0    0   26K
+     1.21
+        3   3  100% 2.5K 110    0    0    0    0  275    0    0    0    0   26K
+     1.21
+        5   3  100% 2.5K 110    0    0    0    0  275    0    0    0    0   26K
+     1.21
+        7   3  100% 2.5K 110    0    0    0    0  259    0    0    0    0   26K
+     1.20
+        4   3  100% 2.5K 110    0    0    0    0  226    0    0    0    0   26K
+     1.19
+       10   3  100% 2.5K 110    0    0    0    0  171    0    0    0    0   26K
+     1.16
+        2   3  100% 2.5K 110    0    0    0    0   38    0    0    0    0   26K
+     1.11
+        9   3  100% 2.5K 110    0    0    0    0   21    0    0    0    0   26K
+     1.10
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide  58   58%  26K 990    0    0    0  3.1K 2.2K   0    0    1    0  261K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                  0.00        0.00        0.00        0.00     5,-15 
+ 2     2                  0.00        0.00        0.00        0.00    16,10  
+ 3     3                  0.00        0.00        0.00        0.00    -4,10  
+ 4     4                  0.00        0.00        0.00        0.00   -15,1   
+ 5     5                  0.00        0.00        0.00        0.00   -30,8   
+ 6     6                  0.00        0.00        0.00        0.00     2,-2  
+ 7     7                  0.00        0.00        0.00        0.00    24,0   
+ 8     8                  0.00        0.00        0.00        0.00    23,-11 
+ 9     9                  0.00        0.00        0.00        0.00   -26,-6  
+ 10    10                 0.00        0.00        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  1    1,-15  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1    3,-15  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1    5,-15  c    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1    7,-15  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1    9,-15  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1   11,-15  l    0%     127 .. ..      258    0    0    0 100%    1    0   1
+  1    4,-14  b  100%     127 .. ..      520    0    0    0 100%  137    0   1
+  1    6,-14  m  100%     102 .. ..      981    0    0    0 100%    0    0
+  1    8,-14  j  100%     127 .. ..      619    0    0    0 100%    0    0
+  1   10,-14  h   90%     123 .. ..      301    0    0    0 100%   68    0   1
+  8   16,-14  )    0%       0 .. ..       50    0    0    0 100%    0    0   1
+  1    3,-13  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1    5,-13  g  100%     127 .. ..      369    0    0    0 100%    0    0
+  1    7,-13  m  100%      35 .. ..      630    0  229    0 100%    0    0
+  1    9,-13  k  100%     111 .. ..      137    0    0    0 100%    0    0   1
+  1    4,-12  +    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  1    6,-12  g    0%     127 .. ..        3    0    0    0 100%    1    0
+  1    8,-12  +    0%     127 .. ..        1    0    0    0 100%    0    0
+  1   10,-12  +    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  1   12,-12  +    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  8   24,-12  g  100%     127 .. ..      454    0    0    0 100%    0    0
+ 10  -11,-11  g  100%     127 .. ..      451    0    0    0 100%    2    0   1
+  1    3,-11  o    0%     127 .. ..      373    0    0    0 100%    1    0   1
+  1    5,-11  +    0%     127 .. ..        1    0    0    0 100%    0    0
+  1    7,-11  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1    9,-11  +    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  1   11,-11  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1   13,-11  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1   15,-11  +    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  8   23,-11  c  100%      27 .. ..      950   55  113    0 100%  680    0
+  8   25,-11  c  100%     127 .. ..     1000   55  115    0 100%  682    0
+ 10  -12,-10  c  100%     127 .. ..     1000   55  114    0 100%  681    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  114    0 100%  681    0   1
+  1    4,-10  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1    6,-10  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  1   10,-10  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  9  -25,-7   g  100%     127 .. ..      452    0    0    0 100%    4    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  115    0 100%  682    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  113    0 100%  680    0
+  6    3,-3   g  100%     127 .. ..      452    0    0    0 100%    1    0
+  6    2,-2   c  100%     127 .. ..     1000   55  114    0 100%  681    0
+  6    4,-2   c  100%     127 .. ..     1000   55  114    0 100%  681    0
+  7   25,-1   g  100%     127 .. ..      454    0    0    0 100%    1    0
+  4  -14,0    g  100%     127 .. ..      452    0    0    0 100%    1    0
+  7   24,0    c  100%     127 .. ..     1000   55  114    0 100%  681    0
+  7   26,0    c  100%     127 .. ..     1000   55  114    0 100%  681    0
+  4  -15,1    c  100%     127 .. ..     1000   55  114    0 100%  681    0
+  4  -13,1    c  100%     127 .. ..     1000   55  113    0 100%  681    0
+  5  -29,7    g  100%     127 .. ..      452    0    0    0 100%    0    0
+  5  -30,8    c  100%     127 .. ..     1000   55  114    0 100%  681    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  114    0 100%  681    0
+  3   -3,9    g  100%     127 .. ..      452    0    0    0 100%    0    0
+  2   17,9    g  100%     127 .. ..      454    0    0    0 100%    6    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  113    0 100%  680    0
+  3   -2,10   c  100%     127 .. ..     1000   55  115    0 100%  682    0
+  2   16,10   c  100%     127 .. ..     1000   55  116    0 100%  682    0
+  2   18,10   c  100%     127 .. ..     1000   55  114    0 100%  681    0
+58 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   1,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  + .......... ....0.01..   0   0    0    0    0   0    0    0    0   0
+  1  11,-15  l .......... .......1..   0   0    0    0    0   0    0  102    0   0
+  1   4,-14  b .......... ....0.....   0   0    0    0    2  10    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0  353    0   0    0    0    0   0
+  1   8,-14  j .......... .......0..   0   0    0 1832    0   0    0    1    0   0
+  1  10,-14  h .......... ..........   0   0    0  591  283   0    0   26   27   0
+  8  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-13  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0    1    0   0    0    0    0   0
+  1   9,-13  k .......... ........0.   0   0    0  323    0   0    0    0    1   0
+  1   4,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-12  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  12,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  24,-12  g .......... ..........   0   0    0    0  303   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  171   0    0    0    0   0
+  1   3,-11  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  1   5,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  11,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  13,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  25,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   21   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  299   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  259   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  226   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  275   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  275   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   38   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+58 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  +    0%    0    0   82  58    0
+  1    1,-15  +    0%    6    0   67  32    0
+  1    3,-15  +    0%   11    0   61  21    0
+  1    5,-15  c    0%   28    5   37   0    0
+  1    7,-15  +    0%    0    0   76  47    0
+  1    9,-15  +    0%   39   14   21   0    0
+  1   11,-15  l    0%    0    0   91  72    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  j  100%   96   60    0   0   77
+  1   10,-14  h   90%   45   19   13   0    0
+  8   16,-14  )    0%    0    0  100  98    0
+  1    3,-13  +    0%   23    1   43   0    0
+  1    5,-13  g  100%  100   44  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  1    4,-12  +    0%   74   42    0   0   37
+  1    6,-12  g    0%  100   80    0   0  100
+  1    8,-12  +    0%  100   65    0   0   88
+  1   10,-12  +    0%   50   23    6   0    0
+  1   12,-12  +    0%   63   33    0   0   17
+  8   24,-12  g  100%  100   20    0   0  100
+ 10  -11,-11  g  100%   78   12    0   0   45
+  1    3,-11  o    0%    0    0  100  87    0
+  1    5,-11  +    0%  100   74    0   0  100
+  1    7,-11  +    0%   91   56    0   0   68
+  1    9,-11  +    0%   85   51    0   0   57
+  1   11,-11  +    0%   78   46    0   0   45
+  1   13,-11  +    0%   67   37    0   0   25
+  1   15,-11  +    0%   56   28    0   0    5
+  8   23,-11  c  100%  100  100  100 100  100
+  8   25,-11  c  100%  100  100  100 100  100
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +    0%    0    0  100 100    0
+  1    6,-10  +    0%    0    0  100 100    0
+  1   10,-10  +    0%    0    0  100  98    0
+  9  -25,-7   g  100%   28    1   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100   20    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100   17    0   0   97
+  4  -14,0    g  100%   96   15    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100   18    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  3   -3,9    g  100%  100   18    0   0  100
+  2   17,9    g  100%   34    3   28   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   16,10   c  100%  100  100  100 100  100
+  2   18,10   c  100%  100  100  100 100  100
+58 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 04 completed successfully
+Player 01 Turn 04 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:555] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   +    1%     127 .. ..        6    0    0    0 100%    2        0   1
+  -4,-2   +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -2,-2   +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   0,-2   c    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   2,-2   +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   4,-2   +    0%     127 .. ..      300    0    0    0 100%    1        0   1
+   6,-2   l  100%     127 .. ..      250    0    0    0 100%    0        0   1
+  -1,-1   b  100%     127 .. ..      768    0    0    0 100%  405        0   1
+   1,-1   m  100%     115 .. ..      768    0    0    0 100%    0        0
+   3,-1   j  100%     127 .. ..      768    0    0    0 100%    0        0
+   5,-1   h  100%     127 .. ..        1    0    0    0 100%  136        0   1
+  -2,0    +    0%     127 .. ..      407    0    0    0 100%    0        0   1
+   0,0    g  100%     127 .. ..      480    0    0    0 100%    1        0
+   2,0    m  100%      79 .. ..      768    0  264    0 100%    0        0
+   4,0    k  100%     127 .. ..      178    0    0    0 100%    0        0   1
+  -1,1    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   1,1    g    0%     127 .. ..        4    0    0    0 100%    1        0
+   3,1    +    0%     127 .. ..        1    0    0    0 100%    0        0
+   5,1    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   7,1    +    0%     127 .. ..        2    0    0    0 100%    1        0   1
+  -2,2    o  100%     127 .. ..      485    0    0    0 100%    1        0   1
+   0,2    +    0%     127 .. ..        2    0    0    0 100%    0        0
+   2,2    +    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   4,2    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   6,2    +    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   8,2    +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  10,2    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -1,3    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   1,3    +    1%     127 .. ..        6    0    0    0 100%    2        0   1
+   5,3    +    1%     127 .. ..        5    0    0    0 100%    1        0   1
+30 sectors
+
+[0:555] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+   0 frg  frigate        5,-1      100%   0   0   0   0  0  0  0  0  90    0
+1 ship
+
+[0:555] Command :      --------0000000000111
+     876543210123456789012
+  -4     . . . . . . . .   -4  
+  -3    . . . + . . . . .  -3  
+  -2   . + + c + + l . . - -2  
+  -1  - . . b m j h . . ?  -1  
+   0   - . + g m k . . .   0   
+   1  - - . + g + + + . .  1   
+   2 - - . o + + + + + + . 2   
+   3  - - . + + . + . . .  3   
+   4   - - . . . . .       4   
+     --------0000000000111
+     876543210123456789012
+
+[0:555] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+a class of graduates (100.00) produced in 6,-2
+  0 happiness, 100 education produced
+total pop was 4233, yielding 0.00 hap, 63.69 edu
+0.0000 tech, 0.0000 research produced
+Army delta $0, Navy delta $-516, Air force delta $0
+money delta was $196 for this update
+
+
+[0:555] Command : 
+[0:554] Command :  50 enlisted in 3,-1 (50)
+Total new enlistment : 50
+Military reserves stand at 50
+Paperwork at recruiting stations ... 1
+
+[0:551] Command : Looking for best path to 5,-1
+Using best path 'jh', movement cost 0.200
+Total movement cost = 10
+108 mob left in 3,-1
+
+[0:550] Command : 50 military loaded onto frg  frigate (#0) at 5,-1
+1 ship loaded
+
+[0:549] Command : Flagship is frg  frigate (#0)
+ t l 
+j h .
+ k . 
+<90.0:90.0: 5,-1>  l . 
+h . .
+ . . 
+<74.6:74.6: 7,-1>  . . 
+. . )
+ . . 
+<59.3:59.3: 9,-1> frg  frigate (#0) stopped at 9,-1
+Path taken: jj
+
+[0:548] Command : 11,-1 is a 20% 8 radar installation with approximately 0 military.
+Number of mil from frg  frigate (#0) (max 49) : 
+             Initial attack strength:       25
+              Final assault strength:       25
+              Final defense strength:        0
+                          Final odds:      100%
+
+- Casualties -
+     Yours: 0
+    Theirs: 0
+Papershuffling ... 0.0 B.T.U
+We have secured a beachhead at 11,-1, sir!
+1 mil from frg  frigate (#0) moves into 11,-1
+25 of your troops now occupy 11,-1
+
+[0:545] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   4,-2   t 100%   134  4.03 0.50 $2400    8d  40o  80l    8d  40o  80l  4.03
+   6,-2   l 100%   195  145  1.00 $1305  145l            195l             195
+  -1,-1   b 100%   598   10b 1.00 $100    50d            600d             120
+   1,-1   m 100%   598  598i 1.00 $0                                      598
+   3,-1   j 100%   559  280l 0.50 $0     559i            559i             280
+   0,0    g  19%   374   71d 1.00 $0                                       71
+   2,0    m 100%   780  780i 1.00 $0                                      780
+   4,0    k 100%   138   34h 0.50 $0     138i            138i              34
+  -2,2    o  71%   378  134o 0.50 $0                                      134
+9 sectors
+
+[0:545] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 04 completed successfully
+Player 08 Turn 04 starting
+
+
+       -=O=-
+You have two new telegrams waiting ...
+
+[0:640] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-1   g  100%     127 .. ..      590    0    0    0 100%    0        0
+   0,0    c  100%      87 .. ..     1000   55  130    0 100%  691        0
+   2,0    c  100%     127 .. ..     1000   55  132    0 100%  692        0
+3 sectors
+
+[0:640] Command :      --------00000000001
+     8765432101234567890
+  -5                     -5  
+  -4       . - . .       -4  
+  -3      - - - . .      -3  
+  -2     - - - - - -     -2  
+  -1    . - - g - - -    -1  
+   0   . . - c c - - -   0   
+   1    . - - - - . .    1   
+   2     . . . . . .     2   
+   3      . . . . .      3   
+   4                     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:640] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2454, yielding 0.00 hap, 0.00 edu
+0.0000 tech, 0.0000 research produced
+money delta was $539 for this update
+
+> BULLETIN from POGO, (#0)  dated Thu Jan  1 00:00:00 1970
+1 frg  frigate (#0) sighted at -9,-3
+
+Odds are bad for us...support cancelled.
+
+1 (#1) lost 0 troops assaulting and taking -7,-3
+We lost 0 troops defending
+
+
+[0:640] Command : Thu Jan  1 00:00:00 1970
+DUMP LOST ITEMS 0
+type id x y timestamp
+0 0 -7 -3 0
+1 lost item.
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 04 completed successfully
+Update Turn 05 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  31   30% 5.2K  50    0    0    0  3.8K 412   82    0    1    0   26K
+     2.12
+        8   3  100% 2.6K 110    0    0    0    0  374    0    0    0    0   27K
+     1.28
+        6   3  100% 2.6K 110    0    0    0    0  370    0    0    0    0   27K
+     1.28
+        3   3  100% 2.6K 110    0    0    0    0  338    0    0    0    0   27K
+     1.27
+        5   3  100% 2.6K 110    0    0    0    0  338    0    0    0    0   27K
+     1.27
+        7   3  100% 2.6K 110    0    0    0    0  319    0    0    0    0   27K
+     1.26
+        4   3  100% 2.6K 110    0    0    0    0  279    0    0    0    0   27K
+     1.25
+       10   3  100% 2.6K 110    0    0    0    0  213    0    0    0    0   27K
+     1.22
+        2   3  100% 2.6K 110    0    0    0    0   48    0    0    0    0   27K
+     1.15
+        9   3  100% 2.6K 110    0    0    0    0   24    0    0    0    0   27K
+     1.14
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide  58   62%  29K 1.0K   0    0    0  3.8K 2.7K  82    0    1    0  266K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                  0.00        0.00       15.17        0.00     5,-15 
+ 2     2                  0.00        0.00        0.00        0.00    16,10  
+ 3     3                  0.00        0.00        0.00        0.00    -4,10  
+ 4     4                  0.00        0.00        0.00        0.00   -15,1   
+ 5     5                  0.00        0.00        0.00        0.00   -30,8   
+ 6     6                  0.00        0.00        0.00        0.00     2,-2  
+ 7     7                  0.00        0.00        0.00        0.00    24,0   
+ 8     8                  0.00        0.00        0.00        0.00    23,-11 
+ 9     9                  0.00        0.00        0.00        0.00   -26,-6  
+ 10    10                 0.00        0.00        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  +    1%     127 .. ..        6    0    0    0 100%    2    0   1
+  1    1,-15  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1    3,-15  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1    5,-15  c    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  1    7,-15  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  1    9,-15  t    0%     127 .. ..      300    0    0    0 100%    1    0   1
+  1   11,-15  l  100%     127 .. ..      250    0    0    0 100%    0    0   1
+  1    4,-14  b  100%     127 .. ..      768    0    0    0 100%  405    0   1
+  1    6,-14  m  100%     115 .. ..      768    0    0    0 100%    0    0
+  1    8,-14  j  100%     108 .. ..      718    0    0    0 100%    0    0
+  1   10,-14  h  100%     127 .. ..        1    0    0    0 100%  136    0   1
+  1   16,-14  )   19% no    0 .. ..   8   58   25    0    0 100%    0    0   1
+  1    3,-13  +    0%     127 .. ..      407    0    0    0 100%    0    0   1
+  1    5,-13  g  100%     127 .. ..      480    0    0    0 100%    1    0
+  1    7,-13  m  100%      79 .. ..      768    0  264    0 100%    0    0
+  1    9,-13  k  100%     127 .. ..      178    0    0    0 100%    0    0   1
+  1    4,-12  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1    6,-12  g    0%     127 .. ..        4    0    0    0 100%    1    0
+  1    8,-12  +    0%     127 .. ..        1    0    0    0 100%    0    0
+  1   10,-12  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1   12,-12  +    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  8   24,-12  g  100%     127 .. ..      590    0    0    0 100%    0    0
+ 10  -11,-11  g  100%     127 .. ..      587    0    0    0 100%    1    0   1
+  1    3,-11  o  100%     127 .. ..      485    0    0    0 100%    1    0   1
+  1    5,-11  +    0%     127 .. ..        2    0    0    0 100%    0    0
+  1    7,-11  +    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  1    9,-11  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1   11,-11  +    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  1   13,-11  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1   15,-11  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   23,-11  c  100%      87 .. ..     1000   55  130    0 100%  691    0
+  8   25,-11  c  100%     127 .. ..     1000   55  132    0 100%  692    0
+ 10  -12,-10  c  100%     127 .. ..     1000   55  132    0 100%  691    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  131    0 100%  691    0   1
+  1    4,-10  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  1    6,-10  +    1%     127 .. ..        6    0    0    0 100%    2    0   1
+  1   10,-10  +    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  9  -25,-7   g  100%     127 .. ..      587    0    0    0 100%   52    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  132    0 100%  692    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  130    0 100%  691    0
+  6    3,-3   g  100%     127 .. ..      587    0    0    0 100%    0    0
+  6    2,-2   c  100%     127 .. ..     1000   55  131    0 100%  691    0
+  6    4,-2   c  100%     127 .. ..     1000   55  131    0 100%  691    0
+  7   25,-1   g  100%     127 .. ..      590    0    0    0 100%    1    0
+  4  -14,0    g  100%     127 .. ..      587    0    0    0 100%    0    0
+  7   24,0    c  100%     127 .. ..     1000   55  131    0 100%  691    0
+  7   26,0    c  100%     127 .. ..     1000   55  132    0 100%  691    0
+  4  -15,1    c  100%     127 .. ..     1000   55  131    0 100%  691    0
+  4  -13,1    c  100%     127 .. ..     1000   55  130    0 100%  691    0
+  5  -29,7    g  100%     127 .. ..      587    0    0    0 100%    2    0
+  5  -30,8    c  100%     127 .. ..     1000   55  131    0 100%  691    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  131    0 100%  691    0
+  3   -3,9    g  100%     127 .. ..      587    0    0    0 100%    2    0
+  2   17,9    g  100%     127 .. ..      590    0    0    0 100%   20    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  130    0 100%  691    0
+  3   -2,10   c  100%     127 .. ..     1000   55  132    0 100%  692    0
+  2   16,10   c  100%     127 .. ..     1000   55  133    0 100%  692    0
+  2   18,10   c  100%     127 .. ..     1000   55  131    0 100%  691    0
+58 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   1,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  t .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
+  1  11,-15  l .......... .......1..   0   0    0    0    0   0    0  145    0   0
+  1   4,-14  b .......... ....0.....   0   0    0    0   50  10    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  j .......... .......0..   0   0    0 2302    0   0    0    1    0   0
+  1  10,-14  h .......... ..........   0   0    0  591  350   0   31    0   30   0
+  1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-13  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0  311    0   0    0    0    0   0
+  1   9,-13  k .......... ........0.   0   0    0  556    0   0    0    0    1   0
+  1   4,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1   8,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  12,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  24,-12  g .......... ..........   0   0    0    0  374   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  213   0    0    0    0   0
+  1   3,-11  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   5,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  11,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  13,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  25,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   24   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  370   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  319   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  279   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  338   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  338   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   48   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+58 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  +    1%    0    0   82  58    0
+  1    1,-15  +    0%    6    0   67  32    0
+  1    3,-15  +    0%   11    0   61  21    0
+  1    5,-15  c    0%   28    5   37   0    0
+  1    7,-15  +    0%    0    0   76  47    0
+  1    9,-15  t    0%   39   14   21   0    0
+  1   11,-15  l  100%    0    0   91  72    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  j  100%   96   60    0   0   77
+  1   10,-14  h  100%   45   19   13   0    0
+  1   16,-14  )   19%    0    0  100  98    0
+  1    3,-13  +    0%   23    1   43   0    0
+  1    5,-13  g  100%  100   19  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  1    4,-12  +    0%   74   42    0   0   37
+  1    6,-12  g    0%  100   80    0   0  100
+  1    8,-12  +    0%  100   65    0   0   88
+  1   10,-12  +    0%   50   23    6   0    0
+  1   12,-12  +    0%   63   33    0   0   17
+  8   24,-12  g  100%  100    6    0   0  100
+ 10  -11,-11  g  100%   78    4    0   0   45
+  1    3,-11  o  100%    0    0  100  71    0
+  1    5,-11  +    0%  100   74    0   0  100
+  1    7,-11  +    0%   91   56    0   0   68
+  1    9,-11  +    0%   85   51    0   0   57
+  1   11,-11  +    0%   78   46    0   0   45
+  1   13,-11  +    0%   67   37    0   0   25
+  1   15,-11  +    0%   56   28    0   0    5
+  8   23,-11  c  100%  100  100  100 100  100
+  8   25,-11  c  100%  100  100  100 100  100
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +    0%    0    0  100 100    0
+  1    6,-10  +    1%    0    0  100 100    0
+  1   10,-10  +    1%    0    0  100  98    0
+  9  -25,-7   g  100%   28    1   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100    6    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100    5    0   0   97
+  4  -14,0    g  100%   96    5    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100    6    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  3   -3,9    g  100%  100    6    0   0  100
+  2   17,9    g  100%   34    1   28   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   16,10   c  100%  100  100  100 100  100
+  2   18,10   c  100%  100  100  100 100  100
+58 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 05 completed successfully
+Player 01 Turn 05 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:545] Command : Realm #0 is -8:16,-4:4
+
+[0:545] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   +    2%     127 .. ..        7    0    0    0 100%    2        0   1
+  -4,-2   +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -2,-2   +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   0,-2   c    1%     127 .. ..        5    0    0    0 100%    1        0   1
+   2,-2   +    1%     127 .. ..        5    0    0    0 100%    1        0   1
+   4,-2   t  100%     127 .. ..      300    0    0    0 100%    6        0   1
+   6,-2   l  100%     127 .. ..      250    0    0    0 100%   50        0   1
+  -1,-1   b  100%     127 .. ..      768    0    0    0 100%  548        0   1
+   1,-1   m  100%     127 .. ..      768    0    0    0 100%    0        0
+   3,-1   j  100%     127 .. ..      768    0    0    0 100%    0        0
+   5,-1   h  100%     127 .. ..        1    0    0    0 100%    0        0   1
+  11,-1   )   19%      60 .. ..   8   75   25    0    0 100%    0        0   1
+  -2,0    +  100%     127 .. ..      768    0    0    0 100%  217        0   1
+   0,0    g  100%     127 .. ..      768    0    0    0 100%    1        0
+   2,0    m  100%     101 .. ..      768    0  304    0 100%    0        0
+   4,0    k  100%     127 .. ..      768    0    0    0 100%    1        0   1
+  -1,1    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   1,1    g    1%     127 .. ..      108    0    0    0 100%    1        0
+   3,1    +    0%     127 .. ..        2    0    0    0 100%    0        0
+   5,1    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   7,1    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -2,2    o  100%     127 .. ..      631    0    0    0 100%    1        0   1
+   0,2    +    0%     127 .. ..        3    0    0    0 100%    1        0
+   2,2    +    0%     127 .. ..        2    0    0    0 100%    1        0   1
+   4,2    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   6,2    +    0%     127 .. ..        2    0    0    0 100%    1        0   1
+   8,2    +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  10,2    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -1,3    +    1%     127 .. ..        6    0    0    0 100%    2        0   1
+   1,3    +    3%     127 .. ..        8    0    0    0 100%    2        0   1
+   5,3    +    3%     127 .. ..        7    0    0    0 100%    2        0   1
+31 sectors
+
+[0:545] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+   0 frg  frigate        9,-1      100%   0  25   0   0  0  0  0  0 127    0
+1 ship
+
+[0:545] Command :      --------00000000001111111
+     8765432101234567890123456
+  -4     . . . . . . . .       -4  
+  -3    . . . + . . . . .      -3  
+  -2   . + + c + t l . . -     -2  
+  -1  - . . b m j h . . ) -    -1  
+   0 - - . + g m k . . . .     0   
+   1  - - . + g + + + . .      1   
+   2 - - . o + + + + + + .     2   
+   3  - - . + + . + . . .      3   
+   4   - - . . . . .           4   
+     --------00000000001111111
+     8765432101234567890123456
+
+[0:545] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+Production minimally disrupted by terrorists in 11,-1
+technological breakthroughs (4.03) produced in 4,-2
+a class of graduates (145.00) produced in 6,-2
+  0 happiness, 145 education produced
+total pop was 5180, yielding 0.00 hap, 72.67 edu
+3.0118 tech, 0.0000 research produced
+Army delta $0, Navy delta $-36, Air force delta $0
+money delta was $-1996 for this update
+
+
+[0:545] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   4,-2   t 100%   234  7.05 0.70 $3000   10d  50o 100l   15d  75o 150l 10.57
+   6,-2   l 100%   195  150  1.00 $1350  150l            195l             195
+  -1,-1   b 100%   598   10b 1.00 $100    50d            600d             120
+   1,-1   m 100%   598  598i 1.00 $0                                      598
+   3,-1   j 100%   598  338l 0.57 $0     598i            598i             338
+   0,0    g   5%   598   25d 1.00 $0                                       25
+   2,0    m 100%   808  808i 1.00 $0                                      808
+   4,0    k 100%   598  169h 0.57 $0     598i            598i             169
+  -2,2    o  44%   492  122o 0.57 $0                                      122
+9 sectors
+
+[0:545] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 05 completed successfully
+Update Turn 06 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  31   36% 6.8K  50    0    0    0  4.4K 425  176    0    1    0   24K
+     7.55
+        8   3  100% 2.8K 110    0    0    0    0  402    0    0    0    0   27K
+     2.01
+        6   3  100% 2.8K 110    0    0    0    0  397    0    0    0    0   27K
+     2.01
+        3   3  100% 2.8K 110    0    0    0    0  366    0    0    0    0   27K
+     1.99
+        5   3  100% 2.8K 110    0    0    0    0  365    0    0    0    0   27K
+     1.99
+        7   3  100% 2.8K 110    0    0    0    0  342    0    0    0    0   27K
+     1.97
+        4   3  100% 2.8K 110    0    0    0    0  302    0    0    0    0   27K
+     1.95
+       10   3  100% 2.8K 110    0    0    0    0  231    0    0    0    0   27K
+     1.91
+        2   3  100% 2.8K 110    0    0    0    0   52    0    0    0    0   27K
+     1.80
+        9   3  100% 2.8K 110    0    0    0    0   29    0    0    0    0   27K
+     1.79
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide  58   66%  32K 1.0K   0    0    0  4.4K 2.9K 176    0    1    0  270K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                  2.99        0.00       28.86        0.00     5,-15 
+ 2     2                  1.50        0.00        0.00        0.00    16,10  
+ 3     3                  1.50        0.00        0.00        0.00    -4,10  
+ 4     4                  1.50        0.00        0.00        0.00   -15,1   
+ 5     5                  1.50        0.00        0.00        0.00   -30,8   
+ 6     6                  1.50        0.00        0.00        0.00     2,-2  
+ 7     7                  1.50        0.00        0.00        0.00    24,0   
+ 8     8                  1.50        0.00        0.00        0.00    23,-11 
+ 9     9                  1.50        0.00        0.00        0.00   -26,-6  
+ 10    10                 1.50        0.00        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  +    2%     127 .. ..        7    0    0    0 100%    2    0   1
+  1    1,-15  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1    3,-15  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1    5,-15  c    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  1    7,-15  +    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  1    9,-15  t  100%     127 .. ..      300    0    0    0 100%    6    0   1
+  1   11,-15  l  100%     127 .. ..      250    0    0    0 100%   50    0   1
+  1    4,-14  b  100%     127 .. ..      768    0    0    0 100%  548    0   1
+  1    6,-14  m  100%     127 .. ..      768    0    0    0 100%    0    0
+  1    8,-14  j  100%     127 .. ..      768    0    0    0 100%    0    0
+  1   10,-14  h  100%     127 .. ..        1    0    0    0 100%    0    0   1
+  1   16,-14  )   19%      60 .. ..   8   75   25    0    0 100%    0    0   1
+  1    3,-13  +  100%     127 .. ..      768    0    0    0 100%  217    0   1
+  1    5,-13  g  100%     127 .. ..      768    0    0    0 100%    1    0
+  1    7,-13  m  100%     101 .. ..      768    0  304    0 100%    0    0
+  1    9,-13  k  100%     127 .. ..      768    0    0    0 100%    1    0   1
+  1    4,-12  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  1    6,-12  g    1%     127 .. ..      108    0    0    0 100%    1    0
+  1    8,-12  +    0%     127 .. ..        2    0    0    0 100%    0    0
+  1   10,-12  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1   12,-12  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   24,-12  g  100%     127 .. ..      767    0    0    0 100%    0    0
+ 10  -11,-11  g  100%     127 .. ..      763    0    0    0 100%    7    0   1
+  1    3,-11  o  100%     127 .. ..      631    0    0    0 100%    1    0   1
+  1    5,-11  +    0%     127 .. ..        3    0    0    0 100%    1    0
+  1    7,-11  +    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  1    9,-11  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  1   11,-11  +    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  1   13,-11  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1   15,-11  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   23,-11  c  100%     127 .. ..     1000   55  149    0 100%  702    0
+  8   25,-11  c  100%     127 .. ..     1000   55  152    0 100%  704    0
+ 10  -12,-10  c  100%     127 .. ..     1000   55  152    0 100%  704    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  151    0 100%  703    0   1
+  1    4,-10  +    1%     127 .. ..        6    0    0    0 100%    2    0   1
+  1    6,-10  +    3%     127 .. ..        8    0    0    0 100%    2    0   1
+  1   10,-10  +    3%     127 .. ..        7    0    0    0 100%    2    0   1
+  9  -25,-7   g  100%     127 .. ..      763    0    0    0 100%    0    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  152    0 100%  704    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  149    0 100%  702    0
+  6    3,-3   g  100%     127 .. ..      763    0    0    0 100%    7    0
+  6    2,-2   c  100%     127 .. ..     1000   55  150    0 100%  702    0
+  6    4,-2   c  100%     127 .. ..     1000   55  151    0 100%  703    0
+  7   25,-1   g  100%     127 .. ..      767    0    0    0 100%    0    0
+  4  -14,0    g  100%     127 .. ..      763    0    0    0 100%    0    0
+  7   24,0    c  100%     127 .. ..     1000   55  150    0 100%  702    0
+  7   26,0    c  100%     127 .. ..     1000   55  151    0 100%  703    0
+  4  -15,1    c  100%     127 .. ..     1000   55  151    0 100%  703    0
+  4  -13,1    c  100%     127 .. ..     1000   55  149    0 100%  702    0
+  5  -29,7    g  100%     127 .. ..      763    0    0    0 100%    7    0
+  5  -30,8    c  100%     127 .. ..     1000   55  150    0 100%  702    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  151    0 100%  703    0
+  3   -3,9    g  100%     127 .. ..      763    0    0    0 100%    0    0
+  2   17,9    g  100%     127 .. ..      767    0    0    0 100%   60    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  149    0 100%  702    0
+  3   -2,10   c  100%     127 .. ..     1000   55  151    0 100%  703    0
+  2   16,10   c  100%     127 .. ..     1000   55  153    0 100%  705    0
+  2   18,10   c  100%     127 .. ..     1000   55  151    0 100%  703    0
+58 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   1,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  t .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
+  1  11,-15  l .......... .......1..   0   0    0    0    0   0    0  150    0   0
+  1   4,-14  b .......... ....0.....   0   0    0    0   50  20    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  j .......... .......0..   0   0    0 2341    0   0    0    1    0   0
+  1  10,-14  h .......... ..........   0   0    0  591  363   0  125   50   64   0
+  1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-13  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0  313    0   0    0    0    0   0
+  1   9,-13  k .......... ........0.   0   0    0 1199    0   0    0    0    1   0
+  1   4,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1   8,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  12,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  24,-12  g .......... ..........   0   0    0    0  402   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+  1   3,-11  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   5,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  11,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  13,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  25,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   29   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  342   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  302   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  365   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  366   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   52   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+58 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  +    2%    0    0   82  58    0
+  1    1,-15  +    0%    6    0   67  32    0
+  1    3,-15  +    0%   11    0   61  21    0
+  1    5,-15  c    1%   28    5   37   0    0
+  1    7,-15  +    1%    0    0   76  47    0
+  1    9,-15  t  100%   39   14   21   0    0
+  1   11,-15  l  100%    0    0   91  72    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  j  100%   96   60    0   0   77
+  1   10,-14  h  100%   45   19   13   0    0
+  1   16,-14  )   19%    0    0  100  98    0
+  1    3,-13  +  100%   23    1   43   0    0
+  1    5,-13  g  100%  100    5  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  1    4,-12  +    0%   74   42    0   0   37
+  1    6,-12  g    1%  100   80    0   0  100
+  1    8,-12  +    0%  100   65    0   0   88
+  1   10,-12  +    0%   50   23    6   0    0
+  1   12,-12  +    0%   63   33    0   0   17
+  8   24,-12  g  100%  100    1    0   0  100
+ 10  -11,-11  g  100%   78    0    0   0   45
+  1    3,-11  o  100%    0    0  100  44    0
+  1    5,-11  +    0%  100   74    0   0  100
+  1    7,-11  +    0%   91   56    0   0   68
+  1    9,-11  +    0%   85   51    0   0   57
+  1   11,-11  +    0%   78   46    0   0   45
+  1   13,-11  +    0%   67   37    0   0   25
+  1   15,-11  +    0%   56   28    0   0    5
+  8   23,-11  c  100%  100  100  100 100  100
+  8   25,-11  c  100%  100  100  100 100  100
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +    1%    0    0  100 100    0
+  1    6,-10  +    3%    0    0  100 100    0
+  1   10,-10  +    3%    0    0  100  98    0
+  9  -25,-7   g  100%   28    0   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100    0    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100    0    0   0   97
+  4  -14,0    g  100%   96    1    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100    0    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  3   -3,9    g  100%  100    0    0   0  100
+  2   17,9    g  100%   34    1   28   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   16,10   c  100%  100  100  100 100  100
+  2   18,10   c  100%  100  100  100 100  100
+58 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 06 completed successfully
+Player 01 Turn 06 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:547] Command : Realm #1 is -16:24,-8:8
+
+[0:547] Command :  76 conquered civilians converted in 11,-1 (76)
+Total civilians converted: 76
+Paperwork at conversion places ... 1
+That just cost you $114.00
+
+[0:544] Command : 
+[0:543] Command : Looking for best path to 0,2
+Using best path 'jh', movement cost 0.400
+Total movement cost = 2
+125 mob left in -2,2
+
+[0:542] Command : 
+[0:541] Command : 
+[0:540] Command : 
+[0:539] Command : 
+[0:538] Command : 
+[0:537] Command : 
+[0:536] Command : 
+[0:535] Command : Deliver iron ore from gold mine @ 0,0 to -2,0
+
+[0:534] Command : -1,-1 old threshold 50
+
+[0:533] Command : 0,0 old threshold 1
+
+[0:532] Command : Looking for best path to -1,-1
+Using best path 'yh', movement cost 0.200
+Total movement cost = 1
+126 mob left in 0,0
+
+[0:531] Command : 
+[0:530] Command : 4,-2 old threshold 300
+6,-2 old threshold 250
+
+[0:529] Command : -1,-1 old threshold 768
+
+[0:528] Command : 
+[0:527] Command : 
+[0:526] Command : 
+[0:525] Command : -2,0 old threshold 768
+
+[0:524] Command : 
+[0:523] Command :      1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+  -8                                           -8  
+  -7                                           -7  
+  -6                                           -6  
+  -5                                           -5  
+  -4             . . . . . . . .               -4  
+  -3            . . . + . . . . .              -3  
+  -2           . + + c + t l . . -             -2  
+  -1          - . . b m j h . . ) -            -1  
+   0         - - . + g m k . . . .             0   
+   1          - - . + g g + + . .              1   
+   2         - - . o g g + + + + .             2   
+   3          - - . + + . + . . .              3   
+   4           - - . . . . .                   4   
+   5                                           5   
+   6                                           6   
+   7                                           7   
+   8                                           8   
+     1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+
+[0:523] Command : Flagship is frg  frigate (#0)
+frg  frigate (#0) stopped at 13,1
+Path taken: njn
+
+[0:522] Command : POGO (#0) wilderness 0% efficient @ 14,0
+POGO (#0) wilderness 0% efficient @ 15,1
+
+[0:521] Command : frg  frigate (#0) at 13,1 efficiency 100%, max range 1
+ . ? 
+. 0 ?
+ . . 
+
+
+[0:520] Command : 11,-1 efficiency 49%, max range 1
+ . ? 
+. 0 ?
+ . . 
+
+
+[0:519] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   +    4%     127 .. ..        9    0    0    0 100%    3        0   1
+  -4,-2   +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -2,-2   +    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   0,-2   c    3%     127 .. ..        7    0    0    0 100%    2        0   1
+   2,-2   +    2%     127 .. ..        6    0    0    0 100%    2        0   1
+   4,-2   t  100%     127 .. ..      300    0    0    0 100%   74        0   1
+   6,-2   l  100%     127 .. ..      250    0    0    0 100%   45        0   1
+  -1,-1   b  100%     127 .. ..      768    0    0    0 100%  548        0   1
+   1,-1   m  100%     127 .. ..      768    0    0    0 100%    0        0
+   3,-1   j  100%     127 .. ..      768    0    0    0 100%    0        0
+   5,-1   h  100%     127 .. ..     1150    0    0    0 100%    0        0   1
+  11,-1   )   49%     105 .. ..   8   22   25   76    0 100%   31        0   1
+  -2,0    +j 100%     127 .. ..      768    0    0    0 100%  598        0   1
+   0,0    gm 100%     126 .. ..      768    0    0    0 100%   98        0
+   2,0    m  100%     112 .. ..      768    0  349    0 100%    0        0
+   4,0    k  100%     127 .. ..      768    0    0    0 100%    0        0   1
+  -1,1    +    1%     127 .. ..        5    0    0    0 100%    1        0   1
+   1,1    g   42%     127 .. ..      768    0    0    0 100%   42        0
+   3,1    g    0%     127 .. ..        2    0    0    0 100%    1        0
+   5,1    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   7,1    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -2,2    o  100%     125 .. ..      773    0    0    0 100%    1        0   1
+   0,2    g    0%     127 .. ..       50    0    0    0 100%    1        0
+   2,2    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   4,2    +    1%     127 .. ..        6    0    0    0 100%    2        0   1
+   6,2    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   8,2    +    0%     127 .. ..        2    0    0    0 100%    0        0   1
+  10,2    +    1%     127 .. ..        6    0    0    0 100%    2        0   1
+  -1,3    +    2%     127 .. ..        7    0    0    0 100%    2        0   1
+   1,3    +    5%     127 .. ..       11    0    0    0 100%    3        0   1
+   5,3    +    5%     127 .. ..        9    0    0    0 100%    3        0   1
+31 sectors
+
+[0:519] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+   0 frg  frigate       13,1       100%   0  25   0   0  0  0  0  0  80    0
+1 ship
+
+[0:519] Command :      --------00000000001111111
+     8765432101234567890123456
+  -4     . . . . . . . .       -4  
+  -3    . . . + . . . . . .    -3  
+  -2   . + + c + t l . . - -   -2  
+  -1  - . . b m j h . . ) - -  -1  
+   0 - - . + g m k . . . . -   0   
+   1  - - . + g g + + . . .    1   
+   2 - - . o g g + + + + .     2   
+   3  - - . + + . + . . .      3   
+   4   - - . . . . .           4   
+     --------00000000001111111
+     8765432101234567890123456
+
+[0:519] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+Production minimally disrupted by terrorists in 11,-1
+technological breakthroughs (7.05) produced in 4,-2
+a class of graduates (150.00) produced in 6,-2
+  0 happiness, 150 education produced
+total pop was 6734, yielding 0.00 hap, 60.88 edu
+3.8169 tech, 0.0000 research produced
+Army delta $0, Navy delta $-36, Air force delta $0
+money delta was $-1290 for this update
+
+
+[0:519] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   4,-2   t 100%   234  7.59 0.76 $3000   10d  50o 100l   15d  75o 150l 11.38
+   6,-2   l 100%   195  150  1.00 $1350  150l            195l             195
+  -1,-1   b 100%   598   10b 1.00 $100    50d            600d             120
+   1,-1   m 100%   598  598i 1.00 $0                                      598
+   3,-1   j 100%   598  375l 0.63 $0     598i            598i             375
+  -2,0    j 100%   473    0l 0.63 $0       0i            473i             296
+   0,0    m 100%   473  473i 1.00 $0                                      473
+   2,0    m 100%   839  839i 1.00 $0                                      839
+   4,0    k 100%   598  187h 0.63 $0     598i            598i             187
+   1,1    g  80%   540  400d 1.00 $0                                      400
+  -2,2    o  23%   600   86o 0.63 $0                                       86
+11 sectors
+
+[0:519] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 06 completed successfully
+Player 08 Turn 06 starting
+
+
+       -=O=-
+You have two new telegrams waiting ...
+
+[0:640] Command : Total movement cost = 1, 126 mob left in 0,0
+Sector -2,0 is now yours.
+
+[0:639] Command : Total movement cost = 1, 125 mob left in 0,0
+Sector -1,-1 is now yours.
+
+[0:638] Command : Total movement cost = 1, 124 mob left in 0,0
+Sector -3,-1 is now yours.
+
+[0:637] Command : Total movement cost = 1, 123 mob left in 0,0
+Sector -2,-2 is now yours.
+
+[0:636] Command : Total movement cost = 1, 122 mob left in 0,0
+Sector -3,-3 is now yours.
+
+[0:635] Command : Total movement cost = 2, 120 mob left in 0,0
+Sector -4,-4 is now yours.
+
+[0:634] Command : Total movement cost = 2, 118 mob left in 0,0
+Sector -4,-2 is now yours.
+
+[0:633] Command : Total movement cost = 2, 116 mob left in 0,0
+Sector -5,-3 is now yours.
+
+[0:632] Command : Total movement cost = 2, 114 mob left in 0,0
+Sector -6,-4 is now yours.
+
+[0:631] Command : Total movement cost = 1, 113 mob left in 0,0
+Sector -1,1 is now yours.
+
+[0:630] Command : Total movement cost = 1, 112 mob left in 0,0
+Sector -3,1 is now yours.
+
+[0:629] Command : No mobility used, 112 mob left in 0,0
+Sector 1,1 is now yours.
+
+[0:628] Command : No mobility used, 112 mob left in 0,0
+Sector 3,1 is now yours.
+
+[0:627] Command : No mobility used, 112 mob left in 0,0
+Sector 0,-2 is now yours.
+
+[0:626] Command : Total movement cost = 1, 111 mob left in 0,0
+Sector -1,-3 is now yours.
+
+[0:625] Command : Total movement cost = 1, 110 mob left in 0,0
+Sector 1,-3 is now yours.
+
+[0:624] Command : Total movement cost = 1, 109 mob left in 0,0
+Sector 0,-4 is now yours.
+
+[0:623] Command : No mobility used, 127 mob left in 2,0
+Sector 4,0 is now yours.
+
+[0:622] Command : Total movement cost = 1, 126 mob left in 2,0
+Sector 6,0 is now yours.
+
+[0:621] Command : Total movement cost = 1, 125 mob left in 2,0
+Sector 8,0 is now yours.
+
+[0:620] Command : Total movement cost = 1, 124 mob left in 2,0
+Sector 3,-1 is now yours.
+
+[0:619] Command : Total movement cost = 1, 123 mob left in 2,0
+Sector 5,-1 is now yours.
+
+[0:618] Command : Total movement cost = 1, 122 mob left in 2,0
+Sector 7,-1 is now yours.
+
+[0:617] Command : No mobility used, 122 mob left in 2,0
+Sector 2,-2 is now yours.
+
+[0:616] Command : Total movement cost = 1, 121 mob left in 2,0
+Sector 4,-2 is now yours.
+
+[0:615] Command : Total movement cost = 1, 120 mob left in 2,0
+Sector 6,-2 is now yours.
+
+[0:614] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-4   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -4,-4   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+   0,-4   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -5,-3   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -3,-3   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -1,-3   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+   1,-3   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -4,-2   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -2,-2   -    0%       0 .. ..        1    0    0    0 100%    0        0
+   0,-2   -    0%       0 .. ..        1    0    0    0 100%    0        0
+   2,-2   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+   4,-2   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+   6,-2   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -3,-1   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -1,-1   -    0%       0 .. ..        1    0    0    0 100%    0        0
+   1,-1   g  100%     127 .. ..      997    0    0    0 100%   98        0
+   3,-1   -    0%       0 .. ..        1    0    0    0 100%    0        0
+   5,-1   -    0%       0 .. ..        1    0    0    0 100%    0        0
+   7,-1   -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -2,0    -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+   0,0    c  100%     109 .. ..      983   55  171    0 100%  715        0
+   2,0    c  100%     120 .. ..      991   55  174    0 100%  717        0
+   4,0    -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+   6,0    -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+   8,0    -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -3,1    -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -1,1    -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+   1,1    -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+   3,1    -    0%       0 .. ..        1    0    0    0 100%    0        0   1
+29 sectors
+
+[0:614] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . .          -5  
+  -4 . - - . - . .       -4  
+  -3  ? - - - - . . .    -3  
+  -2   . - - - - - - .   -2  
+  -1    . - - g - - - .  -1  
+   0   . . - c c - - - . 0   
+   1    . - - - - . . .  1   
+   2     . . . . . .     2   
+   3      . . . . .      3   
+   4                     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:614] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2590, yielding 0.00 hap, 0.00 edu
+1.5059 technology (0.0000 + 1.5059), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $655 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2767, yielding 0.00 hap, 0.00 edu
+1.9084 technology (0.0000 + 1.9084), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $747 for this update
+
+
+[0:614] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   1,-1   g   0%   600    0d 1.00 $0                                        0
+1 sector
+
+[0:614] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 06 completed successfully
+Update Turn 07 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  31   39% 8.8K  50    0    0    0  4.7K 390  248    0    1    0   23K
+    20.40
+        8  29   10% 3.0K 110    0    0    0    0  407    0    0    0    0   28K
+     4.76
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   28K
+     4.74
+        3   3  100% 3.0K 110    0    0    0    0  366    0    0    0    0   28K
+     4.70
+        5   3  100% 3.0K 110    0    0    0    0  365    0    0    0    0   28K
+     4.70
+        7   3  100% 3.0K 110    0    0    0    0  342    0    0    0    0   28K
+     4.67
+        4   3  100% 3.0K 110    0    0    0    0  307    0    0    0    0   28K
+     4.62
+       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   28K
+     4.52
+        2   3  100% 3.0K 110    0    0    0    0   57    0    0    0    0   28K
+     4.29
+        9   3  100% 3.0K 110    0    0    0    0   29    0    0    0    0   28K
+     4.24
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide  84   47%  36K 1.0K   0    0    0  4.7K 2.9K 248    0    1    0  276K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                  6.77        0.00       36.48        0.00     5,-15 
+ 2     2                  3.38        0.00        0.00        0.00    16,10  
+ 3     3                  3.38        0.00        0.00        0.00    -4,10  
+ 4     4                  3.38        0.00        0.00        0.00   -15,1   
+ 5     5                  3.38        0.00        0.00        0.00   -30,8   
+ 6     6                  3.38        0.00        0.00        0.00     2,-2  
+ 7     7                  3.38        0.00        0.00        0.00    24,0   
+ 8     8                  3.38        0.00        0.00        0.00    23,-11 
+ 9     9                  3.38        0.00        0.00        0.00   -26,-6  
+ 10    10                 3.38        0.00        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  +    4%     127 .. ..        9    0    0    0 100%    3    0   1
+  1    1,-15  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1    3,-15  +    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1    5,-15  c    3%     127 .. ..        7    0    0    0 100%    2    0   1
+  1    7,-15  +    2%     127 .. ..        6    0    0    0 100%    2    0   1
+  1    9,-15  t  100%     127 .. ..      300    0    0    0 100%   74    0   1
+  1   11,-15  l  100%     127 .. ..      250    0    0    0 100%   45    0   1
+  8   17,-15  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   19,-15  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   23,-15  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    4,-14  b  100%     127 .. ..      768    0    0    0 100%  548    0   1
+  1    6,-14  m  100%     127 .. ..      768    0    0    0 100%    0    0
+  1    8,-14  j  100%     127 .. ..      768    0    0    0 100%    0    0
+  1   10,-14  h  100%     127 .. ..     1150    0    0    0 100%    0    0   1
+  1   16,-14  )   49%     105 .. ..   8   22   25   76    0 100%   31    0   1
+  8   18,-14  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   20,-14  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-14  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   24,-14  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    3,-13  +j 100%     127 .. ..      768    0    0    0 100%  598    0   1
+  1    5,-13  gm 100%     126 .. ..      768    0    0    0 100%   98    0
+  1    7,-13  m  100%     112 .. ..      768    0  349    0 100%    0    0
+  1    9,-13  k  100%     127 .. ..      768    0    0    0 100%    0    0   1
+  8   19,-13  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   21,-13  -    0%       0 .. ..        1    0    0    0 100%    0    0
+  8   23,-13  -    0%       0 .. ..        1    0    0    0 100%    0    0
+  8   25,-13  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   27,-13  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   29,-13  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  1    4,-12  +    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  1    6,-12  g   42%     127 .. ..      768    0    0    0 100%   42    0
+  1    8,-12  g    0%     127 .. ..        2    0    0    0 100%    1    0
+  1   10,-12  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  1   12,-12  +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   20,-12  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-12  -    0%       0 .. ..        1    0    0    0 100%    0    0
+  8   24,-12  g  100%     127 .. ..      997    0    0    0 100%   98    0
+  8   26,-12  -    0%       0 .. ..        1    0    0    0 100%    0    0
+  8   28,-12  -    0%       0 .. ..        1    0    0    0 100%    0    0
+  8   30,-12  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+ 10  -11,-11  g  100%     127 .. ..      991    0    0    0 100%  593    0   1
+  1    3,-11  o  100%     125 .. ..      773    0    0    0 100%    1    0   1
+  1    5,-11  g    0%     127 .. ..       50    0    0    0 100%    1    0
+  1    7,-11  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1    9,-11  +    1%     127 .. ..        6    0    0    0 100%    2    0   1
+  1   11,-11  +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1   13,-11  +    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  1   15,-11  +    1%     127 .. ..        6    0    0    0 100%    2    0   1
+  8   21,-11  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   23,-11  c  100%     109 .. ..      983   55  171    0 100%  715    0
+  8   25,-11  c  100%     120 .. ..      991   55  174    0 100%  717    0
+  8   27,-11  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   29,-11  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   31,-11  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  175    0 100%  717    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  173    0 100%  716    0   1
+  1    4,-10  +    2%     127 .. ..        7    0    0    0 100%    2    0   1
+  1    6,-10  +    5%     127 .. ..       11    0    0    0 100%    3    0   1
+  1   10,-10  +    5%     127 .. ..        9    0    0    0 100%    3    0   1
+  8   20,-10  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-10  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   24,-10  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  8   26,-10  -    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  9  -25,-7   g  100%     127 .. ..      991    0    0    0 100%  593    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  175    0 100%  717    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  171    0 100%  715    0
+  6    3,-3   g  100%     127 .. ..      992    0    0    0 100%  594    0
+  6    2,-2   c  100%     127 .. ..     1000   55  172    0 100%  716    0
+  6    4,-2   c  100%     127 .. ..     1000   55  173    0 100%  716    0
+  7   25,-1   g  100%     127 .. ..      997    0    0    0 100%  598    0
+  4  -14,0    g  100%     127 .. ..      992    0    0    0 100%   94    0
+  7   24,0    c  100%     127 .. ..     1000   55  172    0 100%  716    0
+  7   26,0    c  100%     127 .. ..     1000   55  174    0 100%  716    0
+  4  -15,1    c  100%     127 .. ..     1000   55  174    0 100%  716    0
+  4  -13,1    c  100%     127 .. ..     1000   55  171    0 100%  715    0
+  5  -29,7    g  100%     127 .. ..      992    0    0    0 100%  594    0
+  5  -30,8    c  100%     127 .. ..     1000   55  172    0 100%  716    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  174    0 100%  716    0
+  3   -3,9    g  100%     127 .. ..      992    0    0    0 100%  594    0
+  2   17,9    g  100%     127 .. ..      997    0    0    0 100%   98    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  171    0 100%  715    0
+  3   -2,10   c  100%     127 .. ..     1000   55  174    0 100%  716    0
+  2   16,10   c  100%     127 .. ..     1000   55  176    0 100%  718    0
+  2   18,10   c  100%     127 .. ..     1000   55  174    0 100%  716    0
+84 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   1,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  t .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
+  1  11,-15  l .......... .......1..   0   0    0    0    0   0    0  150    0   0
+  8  17,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-14  b .......... ....3.....   0   0    0    0   51  30    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  j .......... ...9...0..   0   0    0 2341    0   0    0    1    0   0
+  1  10,-14  h .......... ..........   0   0    0  591  328   0  197  138  233   0
+  1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  18,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  20,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  22,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  24,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   3,-13  + .......... .......0..   0   0    0    0    0   0    0    0    0   0
+  1   5,-13  g ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0  122    0   0    0    0    0   0
+  1   9,-13  k .......... ...9....0.   0   0    0 1600    0   0    0    0    1   0
+  8  19,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  21,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  25,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  27,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  29,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1   8,-12  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  12,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  20,-12  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  22,-12  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  24,-12  g .......... ..........   0   0    0    0  407   0    0    0    0   0
+  8  26,-12  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  28,-12  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  30,-12  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+  1   3,-11  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   5,-11  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  1   9,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  11,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  13,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  21,-11  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  25,-11  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  27,-11  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  29,-11  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  31,-11  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  20,-10  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  22,-10  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  24,-10  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  26,-10  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   29   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  342   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  307   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  365   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  366   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   57   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+84 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  +    4%    0    0   82  58    0
+  1    1,-15  +    0%    6    0   67  32    0
+  1    3,-15  +    0%   11    0   61  21    0
+  1    5,-15  c    3%   28    5   37   0    0
+  1    7,-15  +    2%    0    0   76  47    0
+  1    9,-15  t  100%   39   14   21   0    0
+  1   11,-15  l  100%    0    0   91  72    0
+  8   17,-15  -    0%    0    0  100  87    0
+  8   19,-15  -    0%    0    0  100 100    0
+  8   23,-15  -    0%   11    0   61  21    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  j  100%   96   60    0   0   77
+  1   10,-14  h  100%   45   19   13   0    0
+  1   16,-14  )   49%    0    0  100  98    0
+  8   18,-14  -    0%    0    0   91  72    0
+  8   20,-14  -    0%    0    0   82  58    0
+  8   22,-14  -    0%   50   23    6   0    0
+  8   24,-14  -    0%   45   19   13   0    0
+  1    3,-13  +j 100%   23    1   43   0    0
+  1    5,-13  gm 100%  100    0  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  8   19,-13  -    0%   56   28    0   0    5
+  8   21,-13  -    0%   96   60    0   0   77
+  8   23,-13  -    0%  100   65    0   0   88
+  8   25,-13  -    0%   63   33    0   0   17
+  8   27,-13  -    0%    0    0   76  47    0
+  8   29,-13  -    0%   28    5   37   0    0
+  1    4,-12  +    1%   74   42    0   0   37
+  1    6,-12  g   42%  100   80    0   0  100
+  1    8,-12  g    0%  100   65    0   0   88
+  1   10,-12  +    0%   50   23    6   0    0
+  1   12,-12  +    0%   63   33    0   0   17
+  8   20,-12  -    0%   74   42    0   0   37
+  8   22,-12  -    0%  100   69    0   0   97
+  8   24,-12  g  100%  100    0    0   0  100
+  8   26,-12  -    0%  100   74    0   0  100
+  8   28,-12  -    0%   91   56    0   0   68
+  8   30,-12  -    0%   23    1   43   0    0
+ 10  -11,-11  g  100%   78    0    0   0   45
+  1    3,-11  o  100%    0    0  100  23    0
+  1    5,-11  g    0%  100   74    0   0  100
+  1    7,-11  g    0%   91   56    0   0   68
+  1    9,-11  +    1%   85   51    0   0   57
+  1   11,-11  +    0%   78   46    0   0   45
+  1   13,-11  +    0%   67   37    0   0   25
+  1   15,-11  +    1%   56   28    0   0    5
+  8   21,-11  -    0%   85   51    0   0   57
+  8   23,-11  c  100%  100  100  100 100  100
+  8   25,-11  c  100%  100  100  100 100  100
+  8   27,-11  -    0%   39   14   21   0    0
+  8   29,-11  -    0%   34   10   28   0    0
+  8   31,-11  -    0%    0    0  100 100    0
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +    2%    0    0  100 100    0
+  1    6,-10  +    5%    0    0  100 100    0
+  1   10,-10  +    5%    0    0  100  98    0
+  8   20,-10  -    0%   78   46    0   0   45
+  8   22,-10  -    0%    6    0   67  32    0
+  8   24,-10  -    0%   67   37    0   0   25
+  8   26,-10  -    0%   17    0   52   7    0
+  9  -25,-7   g  100%   28    0   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100    0    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100    0    0   0   97
+  4  -14,0    g  100%   96    0    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100    0    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  3   -3,9    g  100%  100    0    0   0  100
+  2   17,9    g  100%   34    0   28   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   16,10   c  100%  100  100  100 100  100
+  2   18,10   c  100%  100  100  100 100  100
+84 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 07 completed successfully
+Player 01 Turn 07 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:555] Command : Bridge span built over 7,-1
+That just cost you $1000.00
+
+[0:554] Command : No mobility used, 127 mob left in 5,-1
+Sector 7,-1 is now yours.
+
+[0:553] Command : Looking for best path to 7,-1
+Using best path 'jh', movement cost 0.320
+Total movement cost = 2
+125 mob left in 5,-1
+
+[0:552] Command : 
+[0:551] Command : highway at 1,-3 distributes to 5,-1. 
+highway 1,-3 now distributes to 5,-1 (cost 0.784)
+
+highway at -4,-2 distributes to 5,-1. 
+highway -4,-2 now distributes to 5,-1 (cost 1.200)
+
+highway at -2,-2 distributes to 5,-1. 
+highway -2,-2 now distributes to 5,-1 (cost 0.800)
+
+capital at 0,-2 distributes to 5,-1. 
+capital 0,-2 now distributes to 5,-1 (cost 0.600)
+
+highway at 2,-2 distributes to 5,-1. 
+highway 2,-2 now distributes to 5,-1 (cost 0.400)
+
+technical center at 4,-2 distributes to 5,-1. 
+technical center 4,-2 now distributes to 5,-1 (cost 0.200)
+
+library/school at 6,-2 distributes to 5,-1. 
+library/school 6,-2 now distributes to 5,-1 (cost 0.200)
+
+bank at -1,-1 distributes to 5,-1. 
+bank -1,-1 now distributes to 5,-1 (cost 0.600)
+
+mine at 1,-1 distributes to 5,-1. 
+mine 1,-1 now distributes to 5,-1 (cost 0.400)
+
+light manufacturing at 3,-1 distributes to 5,-1. 
+light manufacturing 3,-1 now distributes to 5,-1 (cost 0.200)
+
+harbor at 5,-1 has no dist sector. 
+Distribution from and to harbor 5,-1 terminated
+
+bridge span at 7,-1 has no dist sector. 
+bridge span 7,-1 now distributes to 5,-1 (cost 0.200)
+
+radar installation at 11,-1 has no dist sector. 
+No owned path from 5,-1 to 11,-1.
+light manufacturing at -2,0 distributes to 5,-1. 
+light manufacturing -2,0 now distributes to 5,-1 (cost 0.800)
+
+mine at 0,0 distributes to 5,-1. 
+mine 0,0 now distributes to 5,-1 (cost 0.600)
+
+mine at 2,0 distributes to 5,-1. 
+mine 2,0 now distributes to 5,-1 (cost 0.400)
+
+heavy manufacturing at 4,0 distributes to 5,-1. 
+heavy manufacturing 4,0 now distributes to 5,-1 (cost 0.200)
+
+highway at -1,1 distributes to 5,-1. 
+highway -1,1 now distributes to 5,-1 (cost 0.800)
+
+gold mine at 1,1 distributes to 5,-1. 
+gold mine 1,1 now distributes to 5,-1 (cost 0.600)
+
+gold mine at 3,1 distributes to 5,-1. 
+gold mine 3,1 now distributes to 5,-1 (cost 0.400)
+
+highway at 5,1 distributes to 5,-1. 
+highway 5,1 now distributes to 5,-1 (cost 0.400)
+
+highway at 7,1 distributes to 5,-1. 
+highway 7,1 now distributes to 5,-1 (cost 0.796)
+
+oil field at -2,2 distributes to 5,-1. 
+oil field -2,2 now distributes to 5,-1 (cost 1.162)
+
+gold mine at 0,2 distributes to 5,-1. 
+gold mine 0,2 now distributes to 5,-1 (cost 0.800)
+
+gold mine at 2,2 distributes to 5,-1. 
+gold mine 2,2 now distributes to 5,-1 (cost 0.800)
+
+highway at 4,2 distributes to 5,-1. 
+highway 4,2 now distributes to 5,-1 (cost 0.796)
+
+highway at 6,2 distributes to 5,-1. 
+highway 6,2 now distributes to 5,-1 (cost 0.796)
+
+highway at 8,2 distributes to 5,-1. 
+highway 8,2 now distributes to 5,-1 (cost 1.192)
+
+highway at 10,2 distributes to 5,-1. 
+highway 10,2 now distributes to 5,-1 (cost 1.592)
+
+highway at -1,3 distributes to 5,-1. 
+highway -1,3 now distributes to 5,-1 (cost 1.162)
+
+highway at 1,3 distributes to 5,-1. 
+highway 1,3 now distributes to 5,-1 (cost 1.162)
+
+highway at 5,3 distributes to 5,-1. 
+highway 5,3 now distributes to 5,-1 (cost 1.184)
+
+
+[0:550] Command : 
+[0:549] Command : Deliver iron ore from gold mine @ 1,1 to -1,1
+
+[0:548] Command : 1,1 old threshold 1
+
+[0:547] Command : Looking for best path to -1,-1
+Using best path 'yyh', movement cost 0.400
+Total movement cost = 2
+125 mob left in 1,1
+
+[0:546] Command : 
+[0:545] Command : 
+[0:544] Command : 
+[0:543] Command : 
+[0:542] Command : 
+[0:541] Command : 
+[0:540] Command : 
+[0:539] Command : 
+[0:538] Command : 
+[0:537] Command : 
+[0:536] Command : 
+[0:535] Command : 
+[0:534] Command : 1,-1 old threshold 768
+3,-1 old threshold 768
+5,-1 old threshold 768
+0,0 old threshold 768
+2,0 old threshold 768
+4,0 old threshold 768
+1,1 old threshold 768
+
+[0:533] Command :      1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+  -8                                           -8  
+  -7                                           -7  
+  -6                                           -6  
+  -5                                           -5  
+  -4             . . . . . . . .               -4  
+  -3            . . . + . . . . . .            -3  
+  -2           . o o c + t l . . - -           -2  
+  -1          - . . b m j h = . ) - -          -1  
+   0         - - . + g m k . . . . -           0   
+   1          - - . k g g + + . . . ?          1   
+   2         - - . o g g g g g + . .           2   
+   3          - - . + + . + . . .              3   
+   4           - - . . . . .                   4   
+   5                                           5   
+   6                                           6   
+   7                                           7   
+   8                                           8   
+     1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+
+[0:533] Command : 11,-1 efficiency 86%, max range 3
+   . . . .   
+  . . . . .  
+ l . . - ? . 
+h = . 0 - ? ?
+ . . . . ? ? 
+  + . . F ?  
+   g + . .   
+
+
+[0:532] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   +o   7%     127 .. ..       12    0    0    0 100%    3        0   1
+  -4,-2   o    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -2,-2   o    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   0,-2   c    5%     127 .. ..      100    0    0    0 100%    3        0   1
+   2,-2   +    4%     127 .. ..        8    0    0    0 100%    2        0   1
+   4,-2   t  100%     127 .. ..      210    0    0    0 100%   74        0   1
+   6,-2   l  100%     127 .. ..      210    0    0    0 100%   45        0   1
+  -1,-1   b  100%     127 .. ..      100    0    0    0 100%  548        0   1
+   1,-1   m  100%     127 .. ..      768    0    0    0 100%    0        0
+   3,-1   j  100%     127 .. ..      768    0    0    0 100%    0        0
+   5,-1   h  100%     125 .. ..     1631    0    0    0 100%  560        0   1
+   7,-1   =   20%       0 .. ..       77    0    0    0 100%    0        0   1
+  11,-1   )   86%     127 .. ..   8   29   25   87    0 100%   37        0   1
+  -2,0    j  100%     127 .. ..      769    0    0    0 100%  473        0   1
+   0,0    m  100%     127 .. ..      768    0    0    0 100%    0        0
+   2,0    m  100%     124 .. ..      768    0  401    0 100%    0        0
+   4,0    k  100%     127 .. ..      768    0    0    0 100%    0        0   1
+  -1,1    k    0%     127 .. ..        7    0    0    0 100%    2        0   1
+   1,1    gm 100%     125 .. ..      768    0    0    0 100%   40        0
+   3,1    g    0%     127 .. ..      769    0    0    0 100%    1        0
+   5,1    +    1%     127 .. ..        6    0    0    0 100%    2        0   1
+   7,1    +    1%     127 .. ..        5    0    0    0 100%    1        0   1
+  -2,2    o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,2    g   19%     127 .. ..      769    0    0    0 100%   20        0
+   2,2    g    0%     127 .. ..      769    0    0    0 100%    1        0   1
+   4,2    g    0%     127 .. ..        8    0    0    0 100%    2        0   1
+   6,2    g    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   8,2    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  10,2    +    3%     127 .. ..        8    0    0    0 100%    2        0   1
+  -1,3    +    4%     127 .. ..        9    0    0    0 100%    3        0   1
+   1,3    +    8%     127 .. ..       14    0    0    0 100%    4        0   1
+   5,3    +    8%     127 .. ..       12    0    0    0 100%    3        0   1
+32 sectors
+
+[0:532] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+   0 frg  frigate       13,1       100%   0  25   0   0  0  0  0  0 127    0
+1 ship
+
+[0:532] Command :      --------00000000001111111
+     8765432101234567890123456
+  -4     . . . . . . . . . .   -4  
+  -3    . . . + . . . . . . .  -3  
+  -2   . o o c + t l . . ? ? . -2  
+  -1  - . . b m j h = . ) ? ?  -1  
+   0 - - . j m m k . . . . ? ? 0   
+   1  - - . k g g + + . . . ?  1   
+   2 - - . o g g g g g + . .   2   
+   3  - - . + + . + . . .      3   
+   4   - - . . . . .           4   
+     --------00000000001111111
+     8765432101234567890123456
+
+[0:532] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+Production minimally disrupted by terrorists in 11,-1
+technological breakthroughs (7.59) produced in 4,-2
+a class of graduates (150.00) produced in 6,-2
+  0 happiness, 150 education produced
+total pop was 8753, yielding 0.00 hap, 49.88 edu
+3.9240 tech, 0.0000 research produced
+Army delta $0, Navy delta $-36, Air force delta $0
+money delta was $-627 for this update
+
+
+[0:532] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   4,-2   t 100%   163  7.76 0.78 $3000   10d  50o 100l   10d  50o 100l  7.76
+   6,-2   l 100%   163  150  1.00 $1350  150l            163l             163
+  -1,-1   b 100%    78   16b 1.00 $160    80d             80d              16
+   1,-1   m 100%   598  598i 1.00 $0                                      598
+   3,-1   j 100%   598  403l 0.67 $0     598i            598i             403
+  -2,0    j 100%   599  319l 0.67 $0     473i            599i             403
+   0,0    m 100%   598  598i 1.00 $0                                      598
+   2,0    m 100%   875  875i 1.00 $0                                      875
+   4,0    k 100%   598  201h 0.67 $0     598i            598i             201
+   1,1    m 100%   473  473i 1.00 $0                                      473
+   3,1    g  65%   499  324d 1.00 $0                                      324
+  -2,2    o   9%   599   36o 0.67 $0                                       36
+   0,2    g  74%   518  370d 1.00 $0                                      370
+   2,2    g  56%   499  279d 1.00 $0                                      279
+14 sectors
+
+[0:532] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 07 completed successfully
+Player 08 Turn 07 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:640] Command : 
+[0:639] Command : Capital now at 7,-1.
+
+[0:639] Command : 
+[0:638] Command : 
+[0:637] Command : -1,-3 threshold unchanged (left at 1)
+1,-3 threshold unchanged (left at 1)
+-4,-2 threshold unchanged (left at 1)
+-2,-2 threshold unchanged (left at 1)
+0,-2 threshold unchanged (left at 1)
+2,-2 threshold unchanged (left at 1)
+6,-2 threshold unchanged (left at 1)
+-3,-1 threshold unchanged (left at 1)
+-1,-1 threshold unchanged (left at 1)
+1,-1 threshold unchanged (left at 1)
+3,-1 threshold unchanged (left at 1)
+5,-1 threshold unchanged (left at 1)
+-2,0 threshold unchanged (left at 1)
+4,0 threshold unchanged (left at 1)
+6,0 threshold unchanged (left at 1)
+-3,1 threshold unchanged (left at 1)
+1,1 threshold unchanged (left at 1)
+
+[0:636] Command : 4,0 old threshold 1
+
+[0:635] Command : 1,-1 threshold unchanged (left at 1)
+
+[0:634] Command : 
+[0:633] Command : 
+[0:632] Command : 
+[0:631] Command : 
+[0:630] Command : 
+[0:629] Command : 
+[0:628] Command : 
+[0:627] Command : oil field at -6,-4 has no dist sector. 
+oil field -6,-4 now distributes to 3,1 (cost 2.400)
+
+wilderness at -4,-4 has no dist sector. 
+wilderness -4,-4 now distributes to 3,1 (cost 2.000)
+
+wilderness at 0,-4 has no dist sector. 
+wilderness 0,-4 now distributes to 3,1 (cost 1.600)
+
+oil field at -5,-3 has no dist sector. 
+oil field -5,-3 now distributes to 3,1 (cost 2.000)
+
+wilderness at -3,-3 has no dist sector. 
+wilderness -3,-3 now distributes to 3,1 (cost 1.600)
+
+gold mine at -1,-3 has no dist sector. 
+gold mine -1,-3 now distributes to 3,1 (cost 1.200)
+
+gold mine at 1,-3 has no dist sector. 
+gold mine 1,-3 now distributes to 3,1 (cost 1.200)
+
+gold mine at -4,-2 has no dist sector. 
+gold mine -4,-2 now distributes to 3,1 (cost 1.600)
+
+gold mine at -2,-2 has no dist sector. 
+gold mine -2,-2 now distributes to 3,1 (cost 1.200)
+
+gold mine at 0,-2 has no dist sector. 
+gold mine 0,-2 now distributes to 3,1 (cost 0.800)
+
+gold mine at 2,-2 has no dist sector. 
+gold mine 2,-2 now distributes to 3,1 (cost 0.800)
+
+wilderness at 4,-2 has no dist sector. 
+wilderness 4,-2 now distributes to 3,1 (cost 1.000)
+
+gold mine at 6,-2 has no dist sector. 
+gold mine 6,-2 now distributes to 3,1 (cost 1.200)
+
+gold mine at -3,-1 has no dist sector. 
+gold mine -3,-1 now distributes to 3,1 (cost 1.200)
+
+gold mine at -1,-1 has no dist sector. 
+gold mine -1,-1 now distributes to 3,1 (cost 0.800)
+
+gold mine at 1,-1 has no dist sector. 
+gold mine 1,-1 now distributes to 3,1 (cost 0.600)
+
+gold mine at 3,-1 has no dist sector. 
+gold mine 3,-1 now distributes to 3,1 (cost 0.600)
+
+gold mine at 5,-1 has no dist sector. 
+gold mine 5,-1 now distributes to 3,1 (cost 0.800)
+
+capital at 7,-1 has no dist sector. 
+capital 7,-1 now distributes to 3,1 (cost 1.200)
+
+gold mine at -2,0 has no dist sector. 
+gold mine -2,0 now distributes to 3,1 (cost 0.800)
+
+capital at 0,0 has no dist sector. 
+capital 0,0 now distributes to 3,1 (cost 0.600)
+
+capital at 2,0 has no dist sector. 
+capital 2,0 now distributes to 3,1 (cost 0.400)
+
+gold mine at 4,0 has no dist sector. 
+gold mine 4,0 now distributes to 3,1 (cost 0.400)
+
+gold mine at 6,0 has no dist sector. 
+gold mine 6,0 now distributes to 3,1 (cost 0.800)
+
+wilderness at 8,0 has no dist sector. 
+wilderness 8,0 now distributes to 3,1 (cost 1.200)
+
+gold mine at -3,1 has no dist sector. 
+gold mine -3,1 now distributes to 3,1 (cost 1.200)
+
+wilderness at -1,1 has no dist sector. 
+wilderness -1,1 now distributes to 3,1 (cost 0.800)
+
+gold mine at 1,1 has no dist sector. 
+gold mine 1,1 now distributes to 3,1 (cost 0.400)
+
+warehouse at 3,1 has no dist sector. 
+Distribution from and to warehouse 3,1 terminated
+
+
+[0:626] Command : 
+[0:625] Command : 
+[0:624] Command : 
+[0:623] Command : 
+[0:622] Command : Total movement cost = 10
+117 mob left in 2,0
+
+[0:621] Command : Total movement cost = 14
+113 mob left in 0,0
+
+[0:620] Command : Total movement cost = 10
+117 mob left in 1,-1
+
+[0:619] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . .          -5  
+  -4 . o - . - . .       -4  
+  -3  ) o - g g . . .    -3  
+  -2   . g g g g - g .   -2  
+  -1    . g g g g g c .  -1  
+   0   . . g c c g g - . 0   
+   1    . g - g w . . .  1   
+   2     . . . . . .     2   
+   3      . . . . .      3   
+   4                     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:619] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-4   o    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -4,-4   -    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   0,-4   -    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -5,-3   o    0%      60 .. ..        2    0    0    0 100%    0        0   1
+  -3,-3   -    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -1,-3   g    0%      60 .. ..        2    0    0    0 100%    0        0   1
+   1,-3   g    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -4,-2   g    0%      60 .. ..        2    0    0    0 100%    0        0   1
+  -2,-2   g    0%      60 .. ..        1    0    0    0 100%    0        0
+   0,-2   g    0%      60 .. ..        1    0    0    0 100%    0        0
+   2,-2   g    0%      60 .. ..        2    0    0    0 100%    0        0   1
+   4,-2   -    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   6,-2   g    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -3,-1   g    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -1,-1   g    0%      60 .. ..        1    0    0    0 100%    0        0
+   1,-1   gm 100%     117 .. ..      769    0    0    0 100%  599        0
+   3,-1   g    0%      60 .. ..      233    0    0    0 100%    0        0
+   5,-1   g    0%      60 .. ..        1    0    0    0 100%    0        0
+   7,-1   c    0%      60 .. ..        2    0    0    0 100%    0        0   1
+  -2,0    g    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   0,0    cg 100%     113 .. ..      769   55  197    0 100%  730        0
+   2,0    cg 100%     117 .. ..      769   55  201    0 100%  733        0
+   4,0    g    0%      60 .. ..      464    0    0    0 100%    0        0   1
+   6,0    g    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   8,0    -    0%      60 .. ..        2    0    0    0 100%    0        0   1
+  -3,1    g    0%      60 .. ..        1    0    0    0 100%    0        0   1
+  -1,1    -    0%      60 .. ..        1    0    0    0 100%    0        0   1
+   1,1    g    0%      60 .. ..        2    0    0    0 100%    0        0   1
+   3,1    w    0%      60 .. ..        1    0    0    0 100%    0        0   1
+29 sectors
+
+[0:619] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . .          -5  
+  -4 . o - . - . .       -4  
+  -3  ? o - g g . . .    -3  
+  -2   . g g g g - g .   -2  
+  -1    . g g g g g c .  -1  
+   0   . . g c c g g - . 0   
+   1    . g - g w . . .  1   
+   2     . . . . . .     2   
+   3      . . . . .      3   
+   4                     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:619] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2997, yielding 0.00 hap, 0.00 edu
+1.9620 technology (0.0000 + 1.9620), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $853 for this update
+
+
+[0:619] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   1,-1   m 100%   474  474i 1.00 $0                                      474
+   3,-1   g  67%    91   61d 1.00 $0                                       61
+   0,0    g 100%   623  500d 1.00 $0                                      500
+   2,0    g 100%   626  500d 1.00 $0                                      500
+   4,0    g  14%   261   37d 1.00 $0                                       37
+5 sectors
+
+[0:619] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 07 completed successfully
+Update Turn 08 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  32   43%  11K  50    0    0    0  5.4K 730  285    0    1    0   21K
+    39.06
+        8  29   10% 3.0K 110    0    0    0    0  407    0    0    0    0   29K
+     7.60
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   29K
+     7.54
+        3   3  100% 3.0K 110    0    0    0    0  366    0    0    0    0   29K
+     7.48
+        5   3  100% 3.0K 110    0    0    0    0  365    0    0    0    0   29K
+     7.48
+        7   3  100% 3.0K 110    0    0    0    0  342    0    0    0    0   29K
+     7.43
+        4   3  100% 3.0K 110    0    0    0    0  307    0    0    0    0   29K
+     7.35
+       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   29K
+     7.19
+        2   3  100% 3.0K 110    0    0    0    0   57    0    0    0    0   29K
+     6.82
+        9   3  100% 3.0K 110    0    0    0    0   29    0    0    0    0   29K
+     6.76
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide  85   48%  38K 1.0K   0    0    0  5.4K 3.2K 285    0    1    0  282K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                 10.62        0.00       39.67        0.00     5,-15 
+ 2     2                  5.31        0.00        0.00        0.00    16,10  
+ 3     3                  5.31        0.00        0.00        0.00    -4,10  
+ 4     4                  5.31        0.00        0.00        0.00   -15,1   
+ 5     5                  5.31        0.00        0.00        0.00   -30,8   
+ 6     6                  5.31        0.00        0.00        0.00     2,-2  
+ 7     7                  5.31        0.00        0.00        0.00    24,0   
+ 8     8                  5.31        0.00        0.00        0.00    30,-12 
+ 9     9                  5.31        0.00        0.00        0.00   -26,-6  
+ 10    10                 5.31        0.00        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  +o   7%     127 .. ..       12    0    0    0 100%    3    0   1
+  1    1,-15  o    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1    3,-15  o    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  1    5,-15  c    5%     127 .. ..      100    0    0    0 100%    3    0   1
+  1    7,-15  +    4%     127 .. ..        8    0    0    0 100%    2    0   1
+  1    9,-15  t  100%     127 .. ..      210    0    0    0 100%   74    0   1
+  1   11,-15  l  100%     127 .. ..      210    0    0    0 100%   45    0   1
+  8   17,-15  o    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   19,-15  -    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   23,-15  -    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1    4,-14  b  100%     127 .. ..      100    0    0    0 100%  548    0   1
+  1    6,-14  m  100%     127 .. ..      768    0    0    0 100%    0    0
+  1    8,-14  j  100%     127 .. ..      768    0    0    0 100%    0    0
+  1   10,-14  h  100%     125 .. ..     1631    0    0    0 100%  560    0   1
+  1   12,-14  =   20%       0 .. ..       77    0    0    0 100%    0    0   1
+  1   16,-14  )   86%     127 .. ..   8   29   25   87    0 100%   37    0   1
+  8   18,-14  o    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  8   20,-14  -    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-14  g    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  8   24,-14  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1    3,-13  j  100%     127 .. ..      769    0    0    0 100%  473    0   1
+  1    5,-13  m  100%     127 .. ..      768    0    0    0 100%    0    0
+  1    7,-13  m  100%     124 .. ..      768    0  401    0 100%    0    0
+  1    9,-13  k  100%     127 .. ..      768    0    0    0 100%    0    0   1
+  8   19,-13  g    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  8   21,-13  g    0%      60 .. ..        1    0    0    0 100%    0    0
+  8   23,-13  g    0%      60 .. ..        1    0    0    0 100%    0    0
+  8   25,-13  g    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  8   27,-13  -    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   29,-13  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  1    4,-12  k    0%     127 .. ..        7    0    0    0 100%    2    0   1
+  1    6,-12  gm 100%     125 .. ..      768    0    0    0 100%   40    0
+  1    8,-12  g    0%     127 .. ..      769    0    0    0 100%    1    0
+  1   10,-12  +    1%     127 .. ..        6    0    0    0 100%    2    0   1
+  1   12,-12  +    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  8   20,-12  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-12  g    0%      60 .. ..        1    0    0    0 100%    0    0
+  8   24,-12  gm 100%     117 .. ..      769    0    0    0 100%  599    0
+  8   26,-12  g    0%      60 .. ..      233    0    0    0 100%    0    0
+  8   28,-12  g    0%      60 .. ..        1    0    0    0 100%    0    0
+  8   30,-12  c    0%      60 .. ..        2    0    0    0 100%    0    0   1
+ 10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  599    0   1
+  1    3,-11  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-11  g   19%     127 .. ..      769    0    0    0 100%   20    0
+  1    7,-11  g    0%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    9,-11  g    0%     127 .. ..        8    0    0    0 100%    2    0   1
+  1   11,-11  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  1   13,-11  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1   15,-11  +    3%     127 .. ..        8    0    0    0 100%    2    0   1
+  8   21,-11  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   23,-11  cg 100%     113 .. ..      769   55  197    0 100%  730    0
+  8   25,-11  cg 100%     117 .. ..      769   55  201    0 100%  733    0
+  8   27,-11  g    0%      60 .. ..      464    0    0    0 100%    0    0   1
+  8   29,-11  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   31,-11  -    0%      60 .. ..        2    0    0    0 100%    0    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  202    0 100%  734    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  199    0 100%  732    0   1
+  1    4,-10  +    4%     127 .. ..        9    0    0    0 100%    3    0   1
+  1    6,-10  +    8%     127 .. ..       14    0    0    0 100%    4    0   1
+  1   10,-10  +    8%     127 .. ..       12    0    0    0 100%    3    0   1
+  8   20,-10  g    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-10  -    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  8   24,-10  g    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  8   26,-10  w    0%      60 .. ..        1    0    0    0 100%    0    0   1
+  9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  599    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  201    0 100%  733    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  197    0 100%  730    0
+  6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  599    0
+  6    2,-2   c  100%     127 .. ..     1000   55  197    0 100%  731    0
+  6    4,-2   c  100%     127 .. ..     1000   55  199    0 100%  732    0
+  7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  599    0
+  4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  599    0
+  7   24,0    c  100%     127 .. ..     1000   55  197    0 100%  731    0
+  7   26,0    c  100%     127 .. ..     1000   55  200    0 100%  732    0
+  4  -15,1    c  100%     127 .. ..     1000   55  201    0 100%  733    0
+  4  -13,1    c  100%     127 .. ..     1000   55  197    0 100%  730    0
+  5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  599    0
+  5  -30,8    c  100%     127 .. ..     1000   55  198    0 100%  731    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  200    0 100%  732    0
+  3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  599    0
+  2   17,9    g  100%     127 .. ..     1000    0    0    0 100%  599    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  196    0 100%  730    0
+  3   -2,10   c  100%     127 .. ..     1000   55  200    0 100%  732    0
+  2   16,10   c  100%     127 .. ..     1000   55  202    0 100%  733    0
+  2   18,10   c  100%     127 .. ..     1000   55  200    0 100%  732    0
+85 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  + .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  1   1,-15  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  1   3,-15  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  t .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
+  1  11,-15  l .......... .......1..   0   0    0    0    0   0    0  150    0   0
+  8  17,-15  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  301  40    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  1  10,-14  h .......... ..........   0   0    0 2897  416   0  234  261  320   0
+  1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  18,-14  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  8  20,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  22,-14  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  24,-14  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  1   3,-13  j .......... .......0..   0   0    0  473    0   0    0    1    0   0
+  1   5,-13  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-13  k .......... ...9....0.   0   0    0  999    0   0    0    0    1   0
+  8  19,-13  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  21,-13  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  23,-13  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  25,-13  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  27,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  29,-13  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  1   4,-12  k .......... ........0.   0   0    0    0    0   0    0    0    0   0
+  1   6,-12  g ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1  10,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  12,-12  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  20,-12  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  22,-12  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  24,-12  g .......... ...00.....   0   0    0    0  407   0    0    0    0   0
+  8  26,-12  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  28,-12  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+  1   3,-11  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   5,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1   7,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1   9,-11  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  1  11,-11  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  1  13,-11  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  21,-11  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  23,-11  c .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  25,-11  c .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  27,-11  g .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  29,-11  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  31,-11  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  20,-10  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  22,-10  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  24,-10  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   29   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  342   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  307   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  365   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  366   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   57   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+85 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  +o   7%    0    0   82  58    0
+  1    1,-15  o    0%    6    0   67  32    0
+  1    3,-15  o    0%   11    0   61  21    0
+  1    5,-15  c    5%   28    5   37   0    0
+  1    7,-15  +    4%    0    0   76  47    0
+  1    9,-15  t  100%   39   14   21   0    0
+  1   11,-15  l  100%    0    0   91  72    0
+  8   17,-15  o    0%    0    0  100  87    0
+  8   19,-15  -    0%    0    0  100 100    0
+  8   23,-15  -    0%   11    0   61  21    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  j  100%   96   60    0   0   77
+  1   10,-14  h  100%   45   19   13   0    0
+  1   12,-14  =   20%    0    0   45  11    0
+  1   16,-14  )   86%    0    0  100  98    0
+  8   18,-14  o    0%    0    0   91  72    0
+  8   20,-14  -    0%    0    0   82  58    0
+  8   22,-14  g    0%   50   23    6   0    0
+  8   24,-14  g    0%   45   19   13   0    0
+  1    3,-13  j  100%   23    1   43   0    0
+  1    5,-13  m  100%  100    0  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  8   19,-13  g    0%   56   28    0   0    5
+  8   21,-13  g    0%   96   60    0   0   77
+  8   23,-13  g    0%  100   65    0   0   88
+  8   25,-13  g    0%   63   33    0   0   17
+  8   27,-13  -    0%    0    0   76  47    0
+  8   29,-13  g    0%   28    5   37   0    0
+  1    4,-12  k    0%   74   42    0   0   37
+  1    6,-12  gm 100%  100    0    0   0  100
+  1    8,-12  g    0%  100   65    0   0   88
+  1   10,-12  +    1%   50   23    6   0    0
+  1   12,-12  +    1%   63   33    0   0   17
+  8   20,-12  g    0%   74   42    0   0   37
+  8   22,-12  g    0%  100   69    0   0   97
+  8   24,-12  gm 100%  100    0    0   0  100
+  8   26,-12  g    0%  100   74    0   0  100
+  8   28,-12  g    0%   91   56    0   0   68
+  8   30,-12  c    0%   23    1   43   0    0
+ 10  -11,-11  g  100%   78    0    0   0   45
+  1    3,-11  o  100%    0    0  100   9    0
+  1    5,-11  g   19%  100   74    0   0  100
+  1    7,-11  g    0%   91   56    0   0   68
+  1    9,-11  g    0%   85   51    0   0   57
+  1   11,-11  g    0%   78   46    0   0   45
+  1   13,-11  g    0%   67   37    0   0   25
+  1   15,-11  +    3%   56   28    0   0    5
+  8   21,-11  g    0%   85   51    0   0   57
+  8   23,-11  cg 100%  100  100  100 100  100
+  8   25,-11  cg 100%  100  100  100 100  100
+  8   27,-11  g    0%   39   14   21   0    0
+  8   29,-11  g    0%   34   10   28   0    0
+  8   31,-11  -    0%    0    0  100 100    0
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +    4%    0    0  100 100    0
+  1    6,-10  +    8%    0    0  100 100    0
+  1   10,-10  +    8%    0    0  100  98    0
+  8   20,-10  g    0%   78   46    0   0   45
+  8   22,-10  -    0%    6    0   67  32    0
+  8   24,-10  g    0%   67   37    0   0   25
+  8   26,-10  w    0%   17    0   52   7    0
+  9  -25,-7   g  100%   28    0   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100    0    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100    0    0   0   97
+  4  -14,0    g  100%   96    0    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100    0    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  3   -3,9    g  100%  100    0    0   0  100
+  2   17,9    g  100%   34    0   28   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   16,10   c  100%  100  100  100 100  100
+  2   18,10   c  100%  100  100  100 100  100
+85 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 08 completed successfully
+Player 01 Turn 08 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:640] Command : 
+[0:639] Command : Deliver iron ore from gold mine @ 0,2 to 2,2
+
+[0:638] Command : 0,2 old threshold 1
+
+[0:637] Command : Looking for best path to -1,-1
+Using best path 'uyyh', movement cost 0.600
+Total movement cost = 3
+124 mob left in 0,2
+
+[0:636] Command : 
+[0:635] Command : Deliver iron ore from gold mine @ 3,1 to 5,1
+
+[0:634] Command : 3,1 old threshold 1
+
+[0:633] Command : Looking for best path to -1,-1
+Using best path 'yygh', movement cost 0.600
+Total movement cost = 3
+124 mob left in 3,1
+
+[0:632] Command : 
+[0:631] Command : 
+[0:630] Command : 2,2 old threshold 1
+
+[0:629] Command : Looking for best path to -1,-1
+Using best path 'yyyh', movement cost 0.600
+Total movement cost = 3
+124 mob left in 2,2
+
+[0:628] Command : 4,-2 old threshold 10
+
+[0:627] Command : 4,-2 old threshold 50
+
+[0:626] Command : 4,-2 old threshold 100
+
+[0:625] Command : 
+[0:624] Command : 
+[0:623] Command : 
+[0:622] Command : 
+[0:621] Command : 
+[0:620] Command : 
+[0:619] Command : 11,-1 efficiency 100%, max range 4
+    . . . . .    
+   . . . . . .   
+  . . . . . . .  
+ t l . . o ? . ? 
+j h = . 0 o ? ? ?
+ k . . . . ? ? ? 
+  g g . . F ? ?  
+   g g + . . ?   
+    . . . . ?    
+
+
+[0:618] Command :      1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+  -8                                           -8  
+  -7                                           -7  
+  -6                                           -6  
+  -5                        . . . . .          -5  
+  -4             . . . . . . . . . . .         -4  
+  -3            . . . + . . . . . . . .        -3  
+  -2           . o o c + t l . . o ? . ?       -2  
+  -1          - . . b m j h = . ) o ? ? ?      -1  
+   0         - - . j m m k . . . . ? ? ?       0   
+   1          - - . k g g g g . . . ? ?        1   
+   2         - - . o g g g g g + . . ?         2   
+   3          - - . + + . + . . . . ?          3   
+   4           - - . . . . .                   4   
+   5                                           5   
+   6                                           6   
+   7                                           7   
+   8                                           8   
+     1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+
+[0:618] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   o    2%     127 .. ..      769    0    0    0 100%    4        0   1
+  -4,-2   o    0%     127 .. ..      769    0    0    0 100%    0        0   1
+  -2,-2   o    0%     127 .. ..      769    0    0    0 100%    1        0   1
+   0,-2   c   44%     127 .. ..      100    0    0    0 100%   39        0   1
+   2,-2   +    6%     127 .. ..       11    0    0    0 100%    3        0   1
+   4,-2   t  100%     127 .. ..      210    0    0    0 100%    3        0   1
+   6,-2   l  100%     127 .. ..      210    0    0    0 100%   13        0   1
+  -1,-1   b  100%     127 .. ..      100    0    0    0 100%    0        0   1
+   1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0
+   5,-1   h  100%     127 .. ..        1    0    0    0 100%  600        0   1
+   7,-1   =   49%      60 .. ..      100    0    0    0 100%   30        0   1
+  11,-1   )  100%     127 .. ..   8   37   25  100    0 100%   73        0   1
+  -2,0    j  100%     127 .. ..      769    0    0    0 100%  126        0   1
+   0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,0    m  100%     127 .. ..      769    0  461    0 100%    0        0
+   4,0    k  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,1    k    2%     127 .. ..      769    0    0    0 100%    3        0   1
+   1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,1    gm 100%     124 .. ..      769    0    0    0 100%    1        0
+   5,1    g    0%     127 .. ..        8    0    0    0 100%    2        0   1
+   7,1    g    0%     127 .. ..        7    0    0    0 100%    2        0   1
+  -2,2    o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,2    gm 100%     124 .. ..      769    0    0    0 100%   18        0
+   2,2    gk 100%     124 .. ..      769    0    0    0 100%    0        0   1
+   4,2    g    2%     127 .. ..      675    0    0    0 100%    3        0   1
+   6,2    g    1%     127 .. ..        5    0    0    0 100%    1        0   1
+   8,2    g    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  10,2    +g   5%     127 .. ..       11    0    0    0 100%    3        0   1
+  -1,3    +    7%     127 .. ..       12    0    0    0 100%    3        0   1
+   1,3    +   13%     127 .. ..       19    0    0    0 100%    6        0   1
+   5,3    +   12%     127 .. ..       15    0    0    0 100%    4        0   1
+32 sectors
+
+[0:618] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+   0 frg  frigate       13,1       100%   0  25   0   0  0  0  0  0 127    0
+1 ship
+
+[0:618] Command :      --------00000000001111111
+     8765432101234567890123456
+  -4     . . . . . . . . . .   -4  
+  -3    . . . o . . . . . . .  -3  
+  -2   . o o c + t l . . ? ? . -2  
+  -1  - . . b m j h = . ) ? ?  -1  
+   0 - - . j m m k . . . . ? ? 0   
+   1  - - . k m g g g . . . ?  1   
+   2 - - . o g g g g g + . .   2   
+   3  - - . + + . + . . .      3   
+   4   - - . . . . .           4   
+     --------00000000001111111
+     8765432101234567890123456
+
+[0:618] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+Production minimally disrupted by terrorists in 11,-1
+technological breakthroughs (7.76) produced in 4,-2
+a class of graduates (150.00) produced in 6,-2
+  0 happiness, 150 education produced
+total pop was 10880, yielding 0.00 hap, 42.44 edu
+3.9563 tech, 0.0000 research produced
+Army delta $0, Navy delta $-36, Air force delta $0
+money delta was $-508 for this update
+
+
+[0:618] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   1,-3   o  58%   501  207o 0.71 $0                                      207
+  -4,-2   o  32%   499  114o 0.71 $0                                      114
+  -2,-2   o  21%   499   75o 0.71 $0                                       75
+   4,-2   t 100%   163  7.79 0.78 $3000   10d  50o 100l   10d  50o 100l  7.79
+   6,-2   l 100%   163  150  1.00 $1350  150l            163l             163
+  -1,-1   b 100%    78   16b 1.00 $160    80d             80d              16
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   j 100%   599  425l 0.71 $0     599i            599i             425
+  -2,0    j 100%   599  425l 0.71 $0     598i            599i             425
+   0,0    m 100%   599  599i 1.00 $0                                      599
+   2,0    m 100%   917  917i 1.00 $0                                      917
+   4,0    k 100%   599  213h 0.71 $0     600i            600i             213
+  -1,1    k 100%   501  168h 0.71 $0     472i            502i             178
+   1,1    m 100%   599  599i 1.00 $0                                      599
+   3,1    m 100%   474  474i 1.00 $0                                      474
+  -2,2    o   4%   599   17o 0.71 $0                                       17
+   0,2    m 100%   474  474i 1.00 $0                                      474
+   2,2    k 100%   474    0h 0.71 $0       0i            474i             168
+   4,2    g  51%   428  218d 1.00 $0                                      218
+19 sectors
+
+[0:618] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 08 completed successfully
+Player 08 Turn 08 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:619] Command : 
+[0:618] Command : 
+[0:617] Command : 
+[0:616] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . .          -5  
+  -4 . o - . - . .       -4  
+  -3  ) o - g g . . .    -3  
+  -2   . g g g g - g .   -2  
+  -1    . g g g g g c .  -1  
+   0   . . g c c g g - . 0   
+   1    . g - g w . . .  1   
+   2     . . . . . .     2   
+   3      . . . . .      3   
+   4                     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:616] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-4   o    0%     120 .. ..        1    0    0    0 100%    0        0   1
+  -4,-4   -    0%     120 .. ..        1    0    0    0 100%    0        0   1
+   0,-4   -    0%     120 .. ..        1    0    0    0 100%    0        0   1
+  -5,-3   o    0%     120 .. ..        3    0    0    0 100%    1        0   1
+  -3,-3   -    0%     120 .. ..        2    0    0    0 100%    0        0   1
+  -1,-3   g    0%     120 .. ..        2    0    0    0 100%    1        0   1
+   1,-3   g    0%     120 .. ..        2    0    0    0 100%    0        0   1
+  -4,-2   g    0%     120 .. ..        3    0    0    0 100%    1        0   1
+  -2,-2   g    0%     120 .. ..        1    0    0    0 100%    0        0
+   0,-2   g    0%     120 .. ..        1    0    0    0 100%    0        0
+   2,-2   g    0%     120 .. ..        2    0    0    0 100%    1        0   1
+   4,-2   -    0%     120 .. ..        1    0    0    0 100%    0        0   1
+   6,-2   g    0%     120 .. ..        2    0    0    0 100%    0        0   1
+  -3,-1   g    0%     120 .. ..        1    0    0    0 100%    0        0   1
+  -1,-1   g    0%     120 .. ..        1    0    0    0 100%    0        0
+   1,-1   m  100%      61 .. ..      769    0    0    0 100%    0        0
+   3,-1   g   90%     103 .. ..      769    0    0    0 100%    1        0
+   5,-1   g    0%     120 .. ..        1    0    0    0 100%    0        0
+   7,-1   c    0%     120 .. ..        3    0    0    0 100%    1        0   1
+  -2,0    g    0%     120 .. ..        1    0    0    0 100%    0        0   1
+   0,0    gm 100%      61 .. ..      769   55  227    0 100%  123        0
+   2,0    gm 100%      78 .. ..      769   55  231    0 100%  126        0
+   4,0    g  100%     119 .. ..      350    0    0    0 100%    0        0   1
+   6,0    g    0%     120 .. ..        2    0    0    0 100%    0        0   1
+   8,0    -    0%     120 .. ..        2    0    0    0 100%    1        0   1
+  -3,1    g    0%     120 .. ..        2    0    0    0 100%    0        0   1
+  -1,1    -    0%     120 .. ..        1    0    0    0 100%    0        0   1
+   1,1    g    0%     120 .. ..        3    0    0    0 100%    1        0   1
+   3,1    w    0%     101 .. ..      480    0    0    0 100%    0        0   1
+29 sectors
+
+[0:616] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . .          -5  
+  -4 . o - . - . . .     -4  
+  -3  ? o - g g . . .    -3  
+  -2   . g g g g - g .   -2  
+  -1    . g g m g g c .  -1  
+   0   . . g g g g g - . 0   
+   1    . g - g w . . .  1   
+   2     . . . . . . .   2   
+   3      . . . . . .    3   
+   4                     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:616] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 3035, yielding 0.00 hap, 0.00 edu
+1.9782 technology (0.0000 + 1.9782), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $-99 for this update
+
+
+[0:616] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   g  62%   589  310d 1.00 $0                                      310
+   0,0    m 100%   644  644i 1.00 $0                                      644
+   2,0    m 100%   646  646i 1.00 $0                                      646
+   4,0    g   7%   273   19d 1.00 $0                                       19
+5 sectors
+
+[0:616] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 08 completed successfully
+Update Turn 09 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  32   54%  13K  50    0    0    0  6.2K 1.6K 272    0    1    0   20K
+    68.78
+        8  29   17% 3.9K 110    0    0    0  474  1.5K   0    0    0    0   29K
+    15.19
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   30K
+    10.42
+        3   3  100% 3.0K 110    0    0    0    0  366    0    0    0    0   30K
+    10.33
+        5   3  100% 3.0K 110    0    0    0    0  365    0    0    0    0   30K
+    10.32
+        7   3  100% 3.0K 110    0    0    0    0  342    0    0    0    0   30K
+    10.26
+        4   3  100% 3.0K 110    0    0    0    0  307    0    0    0    0   30K
+    10.16
+       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   30K
+     9.93
+        2   3  100% 3.0K 110    0    0    0    0   57    0    0    0    0   30K
+     9.43
+        9   3  100% 3.0K 110    0    0    0    0   29    0    0    0    0   30K
+     9.35
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide  85   55%  41K 1.0K   0    0    0  6.7K 5.2K 272    0    1    0  288K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                 14.49        0.00       40.33        0.00     5,-15 
+ 2     2                  7.24        0.00        0.00        0.00    16,10  
+ 3     3                  7.24        0.00        0.00        0.00    -4,10  
+ 4     4                  7.24        0.00        0.00        0.00   -15,1   
+ 5     5                  7.24        0.00        0.00        0.00   -30,8   
+ 6     6                  7.24        0.00        0.00        0.00     2,-2  
+ 7     7                  7.24        0.00        0.00        0.00    24,0   
+ 8     8                  7.24        0.00        0.00        0.00    30,-12 
+ 9     9                  7.24        0.00        0.00        0.00   -26,-6  
+ 10    10                 7.24        0.00        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  o    2%     127 .. ..      769    0    0    0 100%    4    0   1
+  1    1,-15  o    0%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    3,-15  o    0%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    5,-15  c   44%     127 .. ..      100    0    0    0 100%   39    0   1
+  1    7,-15  +    6%     127 .. ..       11    0    0    0 100%    3    0   1
+  1    9,-15  t  100%     127 .. ..      210    0    0    0 100%    3    0   1
+  1   11,-15  l  100%     127 .. ..      210    0    0    0 100%   13    0   1
+  8   17,-15  o    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  8   19,-15  -    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  8   23,-15  -    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  1    4,-14  b  100%     127 .. ..      100    0    0    0 100%    0    0   1
+  1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-14  j  100%     127 .. ..      769    0    0    0 100%    0    0
+  1   10,-14  h  100%     127 .. ..        1    0    0    0 100%  600    0   1
+  1   12,-14  =   49%      60 .. ..      100    0    0    0 100%   30    0   1
+  1   16,-14  )  100%     127 .. ..   8   37   25  100    0 100%   73    0   1
+  8   18,-14  o    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  8   20,-14  -    0%     120 .. ..        2    0    0    0 100%    0    0   1
+  8   22,-14  g    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  8   24,-14  g    0%     120 .. ..        2    0    0    0 100%    0    0   1
+  1    3,-13  j  100%     127 .. ..      769    0    0    0 100%  126    0   1
+  1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-13  m  100%     127 .. ..      769    0  461    0 100%    0    0
+  1    9,-13  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   19,-13  g    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  8   21,-13  g    0%     120 .. ..        1    0    0    0 100%    0    0
+  8   23,-13  g    0%     120 .. ..        1    0    0    0 100%    0    0
+  8   25,-13  g    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  8   27,-13  -    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  8   29,-13  g    0%     120 .. ..        2    0    0    0 100%    0    0   1
+  1    4,-12  k    2%     127 .. ..      769    0    0    0 100%    3    0   1
+  1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-12  gm 100%     124 .. ..      769    0    0    0 100%    1    0
+  1   10,-12  g    0%     127 .. ..        8    0    0    0 100%    2    0   1
+  1   12,-12  g    0%     127 .. ..        7    0    0    0 100%    2    0   1
+  8   20,-12  g    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  8   22,-12  g    0%     120 .. ..        1    0    0    0 100%    0    0
+  8   24,-12  m  100%      61 .. ..      769    0    0    0 100%    0    0
+  8   26,-12  g   90%     103 .. ..      769    0    0    0 100%    1    0
+  8   28,-12  g    0%     120 .. ..        1    0    0    0 100%    0    0
+  8   30,-12  c    0%     120 .. ..        3    0    0    0 100%    1    0   1
+ 10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  1    3,-11  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-11  gm 100%     124 .. ..      769    0    0    0 100%   18    0
+  1    7,-11  gk 100%     124 .. ..      769    0    0    0 100%    0    0   1
+  1    9,-11  g    2%     127 .. ..      675    0    0    0 100%    3    0   1
+  1   11,-11  g    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  1   13,-11  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  1   15,-11  +g   5%     127 .. ..       11    0    0    0 100%    3    0   1
+  8   21,-11  g    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  8   23,-11  gm 100%      61 .. ..      769   55  227    0 100%  123    0
+  8   25,-11  gm 100%      78 .. ..      769   55  231    0 100%  126    0
+  8   27,-11  g  100%     119 .. ..      350    0    0    0 100%    0    0   1
+  8   29,-11  g    0%     120 .. ..        2    0    0    0 100%    0    0   1
+  8   31,-11  -    0%     120 .. ..        2    0    0    0 100%    1    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  233    0 100%  752    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  228    0 100%  749    0   1
+  1    4,-10  +    7%     127 .. ..       12    0    0    0 100%    3    0   1
+  1    6,-10  +   13%     127 .. ..       19    0    0    0 100%    6    0   1
+  1   10,-10  +   12%     127 .. ..       15    0    0    0 100%    4    0   1
+  8   20,-10  g    0%     120 .. ..        2    0    0    0 100%    0    0   1
+  8   22,-10  -    0%     120 .. ..        1    0    0    0 100%    0    0   1
+  8   24,-10  g    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  8   26,-10  w    0%     101 .. ..      480    0    0    0 100%    0    0   1
+  9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  231    0 100%  751    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  227    0 100%  749    0
+  6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  6    2,-2   c  100%     127 .. ..     1000   55  226    0 100%  748    0
+  6    4,-2   c  100%     127 .. ..     1000   55  229    0 100%  750    0
+  7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  7   24,0    c  100%     127 .. ..     1000   55  226    0 100%  748    0
+  7   26,0    c  100%     127 .. ..     1000   55  230    0 100%  751    0
+  4  -15,1    c  100%     127 .. ..     1000   55  231    0 100%  751    0
+  4  -13,1    c  100%     127 .. ..     1000   55  226    0 100%  748    0
+  5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  5  -30,8    c  100%     127 .. ..     1000   55  228    0 100%  750    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  230    0 100%  751    0
+  3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  2   17,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  225    0 100%  747    0
+  3   -2,10   c  100%     127 .. ..     1000   55  230    0 100%  751    0
+  2   16,10   c  100%     127 .. ..     1000   55  232    0 100%  752    0
+  2   18,10   c  100%     127 .. ..     1000   55  230    0 100%  751    0
+85 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   1,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   3,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  t .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
+  1  11,-15  l .......... .......1..   0   0    0    0    0   0    0  150    0   0
+  8  17,-15  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  303  56    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  1  10,-14  h .......... ..........   0   0    0 3174 1298   0  218  732  520   0
+  1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  18,-14  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  8  20,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  22,-14  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  24,-14  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1   3,-13  j .......... .......0..   0   0    0  598    0   0    0    1    0   0
+  1   5,-13  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-13  k .......... ...9....0.   0   0    0  999    0   0    0    0    1   0
+  8  19,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  21,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  23,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  25,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  27,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  29,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1   4,-12  k .......... ........0.   0   0    0  473    0   0    0    0    1   0
+  1   6,-12  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  g ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  1  12,-12  g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  20,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  22,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  24,-12  m .......... ...00.....   0   0    0    1  114   0    0    0    0   0
+  8  26,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  28,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+  1   3,-11  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   5,-11  g ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  g .......... ........0.   0   0    0    0    0   0    0    0    0   0
+  1   9,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1  11,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1  13,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1  15,-11  + .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  8  21,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  23,-11  g .......... ...00.....   0   0    0    0  127   0    0    0    0   0
+  8  25,-11  g .......... ...00.....   0   0    0    0    1   0    0    0    0   0
+  8  27,-11  g .......... ..........   0   0    0    0   37   0    0    0    0   0
+  8  29,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  31,-11  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  20,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  22,-10  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0  473 1210   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   29   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  342   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  307   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  365   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  366   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   57   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+85 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  o    2%    0    0   82  58    0
+  1    1,-15  o    0%    6    0   67  32    0
+  1    3,-15  o    0%   11    0   61  21    0
+  1    5,-15  c   44%   28    5   37   0    0
+  1    7,-15  +    6%    0    0   76  47    0
+  1    9,-15  t  100%   39   14   21   0    0
+  1   11,-15  l  100%    0    0   91  72    0
+  8   17,-15  o    0%    0    0  100  87    0
+  8   19,-15  -    0%    0    0  100 100    0
+  8   23,-15  -    0%   11    0   61  21    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  j  100%   96   60    0   0   77
+  1   10,-14  h  100%   45   19   13   0    0
+  1   12,-14  =   49%    0    0   45  11    0
+  1   16,-14  )  100%    0    0  100  98    0
+  8   18,-14  o    0%    0    0   91  72    0
+  8   20,-14  -    0%    0    0   82  58    0
+  8   22,-14  g    0%   50   23    6   0    0
+  8   24,-14  g    0%   45   19   13   0    0
+  1    3,-13  j  100%   23    1   43   0    0
+  1    5,-13  m  100%  100    0  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  8   19,-13  g    0%   56   28    0   0    5
+  8   21,-13  g    0%   96   60    0   0   77
+  8   23,-13  g    0%  100   65    0   0   88
+  8   25,-13  g    0%   63   33    0   0   17
+  8   27,-13  -    0%    0    0   76  47    0
+  8   29,-13  g    0%   28    5   37   0    0
+  1    4,-12  k    2%   74   42    0   0   37
+  1    6,-12  m  100%  100    0    0   0  100
+  1    8,-12  gm 100%  100    0    0   0   88
+  1   10,-12  g    0%   50   23    6   0    0
+  1   12,-12  g    0%   63   33    0   0   17
+  8   20,-12  g    0%   74   42    0   0   37
+  8   22,-12  g    0%  100   69    0   0   97
+  8   24,-12  m  100%  100    0    0   0  100
+  8   26,-12  g   90%  100   62    0   0  100
+  8   28,-12  g    0%   91   56    0   0   68
+  8   30,-12  c    0%   23    1   43   0    0
+ 10  -11,-11  g  100%   78    0    0   0   45
+  1    3,-11  o  100%    0    0  100   4    0
+  1    5,-11  gm 100%  100    0    0   0  100
+  1    7,-11  gk 100%   91    0    0   0   68
+  1    9,-11  g    2%   85   51    0   0   57
+  1   11,-11  g    1%   78   46    0   0   45
+  1   13,-11  g    0%   67   37    0   0   25
+  1   15,-11  +g   5%   56   28    0   0    5
+  8   21,-11  g    0%   85   51    0   0   57
+  8   23,-11  gm 100%  100    0  100 100  100
+  8   25,-11  gm 100%  100    0  100 100  100
+  8   27,-11  g  100%   39    7   21   0    0
+  8   29,-11  g    0%   34   10   28   0    0
+  8   31,-11  -    0%    0    0  100 100    0
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +    7%    0    0  100 100    0
+  1    6,-10  +   13%    0    0  100 100    0
+  1   10,-10  +   12%    0    0  100  98    0
+  8   20,-10  g    0%   78   46    0   0   45
+  8   22,-10  -    0%    6    0   67  32    0
+  8   24,-10  g    0%   67   37    0   0   25
+  8   26,-10  w    0%   17    0   52   7    0
+  9  -25,-7   g  100%   28    0   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100    0    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100    0    0   0   97
+  4  -14,0    g  100%   96    0    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100    0    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  3   -3,9    g  100%  100    0    0   0  100
+  2   17,9    g  100%   34    0   28   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   16,10   c  100%  100  100  100 100  100
+  2   18,10   c  100%  100  100  100 100  100
+85 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 09 completed successfully
+Player 01 Turn 09 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:640] Command : Looking for best path to 7,-1
+Using best path 'ujjh', movement cost 0.484
+Total movement cost = 9
+118 mob left in 2,0
+
+[0:639] Command : 
+[0:638] Command : 
+[0:637] Command : 
+[0:636] Command : 
+[0:635] Command : -2,2 old threshold 1
+
+[0:634] Command : Looking for best path to 4,-2
+Using best path 'uuujuh', movement cost 1.000
+Total movement cost = 1
+126 mob left in -2,2
+
+[0:633] Command : 1,-3 threshold unchanged (left at 769)
+-4,-2 threshold unchanged (left at 769)
+-2,-2 threshold unchanged (left at 769)
+0,-2 old threshold 100
+4,-2 old threshold 210
+6,-2 old threshold 210
+-1,-1 old threshold 100
+1,-1 threshold unchanged (left at 769)
+3,-1 threshold unchanged (left at 769)
+5,-1 threshold unchanged (left at 769)
+-2,0 threshold unchanged (left at 769)
+0,0 threshold unchanged (left at 769)
+2,0 threshold unchanged (left at 769)
+4,0 threshold unchanged (left at 769)
+-1,1 threshold unchanged (left at 769)
+1,1 threshold unchanged (left at 769)
+3,1 threshold unchanged (left at 769)
+5,1 threshold unchanged (left at 769)
+7,1 threshold unchanged (left at 769)
+-2,2 threshold unchanged (left at 769)
+0,2 threshold unchanged (left at 769)
+2,2 threshold unchanged (left at 769)
+4,2 threshold unchanged (left at 769)
+6,2 threshold unchanged (left at 769)
+8,2 threshold unchanged (left at 769)
+10,2 threshold unchanged (left at 769)
+
+[0:632] Command : -1,3 old threshold 769
+1,3 old threshold 769
+
+[0:631] Command :      1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+  -8                                           -8  
+  -7                                           -7  
+  -6                                           -6  
+  -5                        . . . . .          -5  
+  -4             . . . . . . . . . . .         -4  
+  -3            . . . o . . . . . . . .        -3  
+  -2           . o o c + t l . . o ? . ?       -2  
+  -1          - . . b m j h = . ) o ? ? ?      -1  
+   0         - - . j m m k . . . . ? ? ?       0   
+   1          - - . k m g g g . . . ? ?        1   
+   2         - - . o g g g g g + . . ?         2   
+   3          - - . + + . + . . . . ?          3   
+   4           - - . . . . .                   4   
+   5                                           5   
+   6                                           6   
+   7                                           7   
+   8                                           8   
+     1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+
+[0:631] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -4,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -2,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,-2   c   83%     127 .. ..      100    0    0    0 100%   39        0   1
+   2,-2   +    9%     127 .. ..       14    0    0    0 100%    4        0   1
+   4,-2   t  100%     127 .. ..      210    0    0    0 100%    3        0   1
+   6,-2   l  100%     127 .. ..      210    0    0    0 100%   13        0   1
+  -1,-1   b  100%     127 .. ..      100    0    0    0 100%    0        0   1
+   1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0
+   5,-1   h  100%     127 .. ..        1    0    0    0 100%    0        0   1
+   7,-1   =   79%     120 .. ..       77    0   10    0 100%   30        0   1
+  11,-1   )  100%     127 .. ..   8   48   21  115    0 100%  101        0   1
+  -2,0    j  100%     127 .. ..      769    0    0    0 100%    1        0   1
+   0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,0    m  100%     118 .. ..      769    0  520    0 100%    0        0
+   4,0    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
+  -1,1    k  100%     127 .. ..      769    0    0    0 100%   29        0   1
+   1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   5,1    g    2%     127 .. ..      769    0    0    0 100%    3        0   1
+   7,1    g    2%     127 .. ..      769    0    0    0 100%    3        0   1
+  -2,2    oi 100%     126 .. ..      769    0    0    0 100%    0        0   1
+   0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,2    k  100%     127 .. ..      769    0    0    0 100%  474        0   1
+   4,2    g  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   6,2    g    2%     127 .. ..      769    0    0    0 100%    2        0   1
+   8,2    g    1%     127 .. ..      769    0    0    0 100%    1        0   1
+  10,2    g    1%     127 .. ..      744    0    0    0 100%    4        0   1
+  -1,3    +   11%     127 .. ..       15    0    0    0 100%    4        0   1
+   1,3    +   20%     127 .. ..       24    0    0    0 100%    7        0   1
+   5,3    +   18%     127 .. ..       20    0    0    0 100%    6        0   1
+32 sectors
+
+[0:631] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+   0 frg  frigate       13,1       100%   0  25   0   0  0  0  0  0 127    0
+1 ship
+
+[0:631] Command :      --------00000000001111111
+     8765432101234567890123456
+  -4 - . . . . . . . . . . .   -4  
+  -3  - . . . o . . . . . . .  -3  
+  -2 . . o o c + t l . . ? ? . -2  
+  -1  - . . b m j h = . ) ? ?  -1  
+   0 - - . j m m k . . . . ? ? 0   
+   1  - - . k m m g g . . . ?  1   
+   2 - - . o m k g g g g . .   2   
+   3  - - . + + . + . . .      3   
+   4   - - . . . . . .         4   
+     --------00000000001111111
+     8765432101234567890123456
+
+[0:631] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+Production minimally disrupted by terrorists in 11,-1
+Guerrilla warfare in 11,-1
+  body count: troops: 4, rebels: 7
+technological breakthroughs (7.79) produced in 4,-2
+a class of graduates (150.00) produced in 6,-2
+  0 happiness, 150 education produced
+total pop was 13023, yielding 0.00 hap, 37.24 edu
+3.9624 tech, 0.0000 research produced
+Army delta $0, Navy delta $-36, Air force delta $0
+money delta was $-364 for this update
+
+
+[0:631] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   1,-3   o  29%   599  129o 0.74 $0                                      129
+  -4,-2   o  16%   599   71o 0.74 $0                                       71
+  -2,-2   o  10%   599   44o 0.74 $0                                       44
+   4,-2   t 100%   163  7.76 0.78 $3000   10d  50o 100l   10d  50o 100l  7.76
+   6,-2   l 100%   163  150  1.00 $1350  150l            163l             163
+  -1,-1   b 100%    78   16b 1.00 $160    80d             80d              16
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   j 100%   599  443l 0.74 $0     599i            599i             443
+  -2,0    j 100%   599  443l 0.74 $0     599i            599i             443
+   0,0    m 100%   599  599i 1.00 $0                                      599
+   2,0    m 100%   958  958i 1.00 $0                                      958
+   4,0    k 100%   599  222h 0.74 $0     600i            600i             222
+  -1,1    k 100%   599  222h 0.74 $0     600i            600i             222
+   1,1    m 100%   599  599i 1.00 $0                                      599
+   3,1    m 100%   599  599i 1.00 $0                                      599
+   5,1    g  23%   501  115d 1.00 $0                                      115
+   7,1    g  33%   501  165d 1.00 $0                                      165
+  -2,2    i 100%   474    0s 0.00 $0       0l   0h         0l   0h          0
+   0,2    m 100%   599  599i 1.00 $0                                      599
+   2,2    k 100%   599  175h 0.74 $0     474i            600i             222
+   4,2    g   7%   599   35d 1.00 $0                                       35
+   6,2    g  46%   501  230d 1.00 $0                                      230
+   8,2    g  37%   500  185d 1.00 $0                                      185
+  10,2    g  28%   481  135d 1.00 $0                                      135
+24 sectors
+
+[0:631] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 09 completed successfully
+Player 08 Turn 09 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:616] Command : 1,-1 old threshold 1
+
+[0:615] Command : Looking for best path to 4,0
+Using best path 'njh', movement cost 0.400
+Total movement cost = 2
+115 mob left in 1,-1
+
+[0:614] Command : 
+[0:613] Command : 
+[0:612] Command : 3,-1 old threshold 1
+
+[0:611] Command : Looking for best path to 4,0
+Using best path 'nh', movement cost 0.200
+Total movement cost = 1
+126 mob left in 3,-1
+
+[0:610] Command : 
+[0:609] Command : 
+[0:608] Command : 
+[0:607] Command : 
+[0:606] Command : 
+[0:605] Command : 0,0 old threshold 1
+2,0 old threshold 1
+
+[0:604] Command : Looking for best path to 4,0
+Using best path 'jjh', movement cost 0.400
+Total movement cost = 2
+115 mob left in 0,0
+
+[0:603] Command : Looking for best path to 4,0
+Using best path 'jh', movement cost 0.200
+Total movement cost = 1
+126 mob left in 2,0
+
+[0:602] Command : 
+[0:601] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . .          -5  
+  -4 . o - . - . . .     -4  
+  -3  ) o - g g . . .    -3  
+  -2   . g g g g - g .   -2  
+  -1    . g g m g g c .  -1  
+   0   . . g g g g g - . 0   
+   1    . g - g w . . .  1   
+   2     . . . . . . .   2   
+   3      . . . . . .    3   
+   4                     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:601] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-4   o    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -4,-4   -    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   0,-4   -    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -5,-3   o    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -3,-3   -    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -1,-3   g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   1,-3   g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -4,-2   g    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -2,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0
+   0,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0
+   2,-2   g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   4,-2   -    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   6,-2   g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -3,-1   g    0%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,-1   g    0%     127 .. ..      769    0    0    0 100%    0        0
+   1,-1   m  100%     115 .. ..      769    0    0    0 100%    0        0
+   3,-1   gm 100%     126 .. ..      769    0    0    0 100%   89        0
+   5,-1   g    0%     127 .. ..        1    0    0    0 100%    0        0
+   7,-1   c    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -2,0    g    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   0,0    m  100%     115 .. ..      769   55  261    0 100%    0        0
+   2,0    m  100%     126 .. ..      769   55  265    0 100%    0        0
+   4,0    gb 100%     127 .. ..      350    0    0    0 100%    2        0   1
+   6,0    g    0%     127 .. ..        2    0    0    0 100%    1        0   1
+   8,0    -    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -3,1    g    0%     127 .. ..        2    0    0    0 100%    1        0   1
+  -1,1    -    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   1,1    g    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   3,1    w  100%     127 .. ..      117    0    0    0 100%  274        0   1
+29 sectors
+
+[0:601] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . .          -5  
+  -4 . o - . - . . .     -4  
+  -3  ? o - g g . . .    -3  
+  -2   . g g g g - g .   -2  
+  -1    . g g m g g c .  -1  
+   0   . . g m m g g - . 0   
+   1    . g - g w . . .  1   
+   2     . . . . . . .   2   
+   3      . . . . . .    3   
+   4         . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:601] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 3945, yielding 0.00 hap, 0.00 edu
+1.9812 technology (0.0000 + 1.9812), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $754 for this update
+
+
+[0:601] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+  -3,-1   g  42%   499  210d 1.00 $0                                      210
+  -1,-1   g  69%   499  344d 1.00 $0                                      344
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   m 100%   474  474i 1.00 $0                                      474
+   0,0    m 100%   792  792i 1.00 $0                                      792
+   2,0    m 100%   795  795i 1.00 $0                                      795
+   4,0    b 100%   148   12b 1.00 $120    60d            150d              30
+7 sectors
+
+[0:601] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 09 completed successfully
+Update Turn 10 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  32   73%  17K  46    0    0    0  7.6K 1.7K 634    0    1    0   20K
+   111.64
+        8  29   21% 5.1K 110    0    0    0  2.4K 1.8K   0    0    0    0   30K
+    23.28
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   31K
+    13.34
+        3   3  100% 3.0K 110    0    0    0    0  366    0    0    0    0   31K
+    13.23
+        5   3  100% 3.0K 110    0    0    0    0  365    0    0    0    0   31K
+    13.23
+        7   3  100% 3.0K 110    0    0    0    0  342    0    0    0    0   31K
+    13.14
+        4   3  100% 3.0K 110    0    0    0    0  307    0    0    0    0   31K
+    13.01
+       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   31K
+    12.73
+        2   3  100% 3.0K 110    0    0    0    0   57    0    0    0    0   31K
+    12.10
+        9   3  100% 3.0K 110    0    0    0    0   29    0    0    0    0   31K
+    11.99
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide  85   63%  46K 1.0K   0    0    0   10K 5.7K 634    0    1    0  296K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                 18.34        0.00       39.60        0.00     5,-15 
+ 2     2                  9.17        0.00        0.00        0.00    16,10  
+ 3     3                  9.17        0.00        0.00        0.00    -4,10  
+ 4     4                  9.17        0.00        0.00        0.00   -15,1   
+ 5     5                  9.17        0.00        0.00        0.00   -30,8   
+ 6     6                  9.17        0.00        0.00        0.00     2,-2  
+ 7     7                  9.17        0.00        0.00        0.00    24,0   
+ 8     8                  9.17        0.00        0.00        0.00    30,-12 
+ 9     9                  9.17        0.00        0.00        0.00   -26,-6  
+ 10    10                 9.17        0.00        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    1,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    3,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-15  c   83%     127 .. ..      100    0    0    0 100%   39    0   1
+  1    7,-15  +    9%     127 .. ..       14    0    0    0 100%    4    0   1
+  1    9,-15  t  100%     127 .. ..      210    0    0    0 100%    3    0   1
+  1   11,-15  l  100%     127 .. ..      210    0    0    0 100%   13    0   1
+  8   17,-15  o    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   19,-15  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   23,-15  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1    4,-14  b  100%     127 .. ..      100    0    0    0 100%    0    0   1
+  1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-14  j  100%     127 .. ..      769    0    0    0 100%    0    0
+  1   10,-14  h  100%     127 .. ..        1    0    0    0 100%    0    0   1
+  1   12,-14  =   79%     120 .. ..       77    0   10    0 100%   30    0   1
+  1   16,-14  )  100%     127 .. ..   8   48   21  115    0 100%  101    0   1
+  8   18,-14  o    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   20,-14  -    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   22,-14  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   24,-14  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-13  m  100%     118 .. ..      769    0  520    0 100%    0    0
+  1    9,-13  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   19,-13  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   21,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0
+  8   23,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0
+  8   25,-13  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   27,-13  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   29,-13  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  1    4,-12  k  100%     127 .. ..      769    0    0    0 100%   29    0   1
+  1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1   10,-12  g    2%     127 .. ..      769    0    0    0 100%    3    0   1
+  1   12,-12  g    2%     127 .. ..      769    0    0    0 100%    3    0   1
+  8   20,-12  g    0%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   22,-12  g    0%     127 .. ..      769    0    0    0 100%    0    0
+  8   24,-12  m  100%     115 .. ..      769    0    0    0 100%    0    0
+  8   26,-12  gm 100%     126 .. ..      769    0    0    0 100%   89    0
+  8   28,-12  g    0%     127 .. ..        1    0    0    0 100%    0    0
+  8   30,-12  c    0%     127 .. ..        4    0    0    0 100%    1    0   1
+ 10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  1    3,-11  oi 100%     126 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-11  k  100%     127 .. ..      769    0    0    0 100%  474    0   1
+  1    9,-11  g  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1   11,-11  g    2%     127 .. ..      769    0    0    0 100%    2    0   1
+  1   13,-11  g    1%     127 .. ..      769    0    0    0 100%    1    0   1
+  1   15,-11  g    1%     127 .. ..      744    0    0    0 100%    4    0   1
+  8   21,-11  g    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   23,-11  m  100%     115 .. ..      769   55  261    0 100%    0    0
+  8   25,-11  m  100%     126 .. ..      769   55  265    0 100%    0    0
+  8   27,-11  gb 100%     127 .. ..      350    0    0    0 100%    2    0   1
+  8   29,-11  g    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  8   31,-11  -    0%     127 .. ..        3    0    0    0 100%    1    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  268    0 100%  774    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  262    0 100%  770    0   1
+  1    4,-10  +   11%     127 .. ..       15    0    0    0 100%    4    0   1
+  1    6,-10  +   20%     127 .. ..       24    0    0    0 100%    7    0   1
+  1   10,-10  +   18%     127 .. ..       20    0    0    0 100%    6    0   1
+  8   20,-10  g    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  8   22,-10  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   24,-10  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   26,-10  w  100%     127 .. ..      117    0    0    0 100%  274    0   1
+  9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  266    0 100%  772    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  261    0 100%  769    0
+  6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  6    2,-2   c  100%     127 .. ..     1000   55  260    0 100%  768    0
+  6    4,-2   c  100%     127 .. ..     1000   55  264    0 100%  771    0
+  7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  7   24,0    c  100%     127 .. ..     1000   55  260    0 100%  768    0
+  7   26,0    c  100%     127 .. ..     1000   55  265    0 100%  772    0
+  4  -15,1    c  100%     127 .. ..     1000   55  265    0 100%  771    0
+  4  -13,1    c  100%     127 .. ..     1000   55  259    0 100%  767    0
+  5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  5  -30,8    c  100%     127 .. ..     1000   55  262    0 100%  770    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  265    0 100%  772    0
+  3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  2   17,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  259    0 100%  768    0
+  3   -2,10   c  100%     127 .. ..     1000   55  265    0 100%  772    0
+  2   16,10   c  100%     127 .. ..     1000   55  267    0 100%  773    0
+  2   18,10   c  100%     127 .. ..     1000   55  265    0 100%  772    0
+85 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   1,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   3,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  t .......... ....0.01..   0   0    0    0   15   0   76  150    0   0
+  1  11,-15  l .......... .......1..   0   0    0    0    0   0    0  150    0   0
+  8  17,-15  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  300  72    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  1  10,-14  h .......... ..........   0   0    0 3494 1422   0  555 1282  900   0
+  1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  18,-14  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  8  20,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  22,-14  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  24,-14  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1   3,-13  j .......... .......0..   0   0    0  599    0   0    0    1    0   0
+  1   5,-13  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-13  k .......... ...9....0.   0   0    0  999    0   0    0    0    1   0
+  8  19,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  21,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  23,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  25,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  27,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  29,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1   4,-12  k .......... ........0.   0   0    0  600    0   0    0    0    1   0
+  1   6,-12  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  g .......... ....0.....   0   0    0  474    1   0    0    0    0   0
+  1  12,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  20,-12  g .......... ...90.....   0   0    0    0    1   0    0    0    0   0
+  8  22,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  24,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  26,-12  g .......... ...0......   0   0    0    0    0   0    0    0    0   0
+  8  28,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+  1   3,-11  o .......... 0......63.   0   0    0    0    0   0    0    0    0   0
+  1   5,-11  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  k .......... ........0.   0   0    0  474    0   0    0    0    1   0
+  1   9,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1  11,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1  13,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1  15,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  21,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  23,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  25,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  27,-11  g .......... ....3.....   0   0    0    0   60   0    0    0    0   0
+  8  29,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  31,-11  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  20,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  22,-10  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 2361 1759   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   29   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  342   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  307   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  365   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  366   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   57   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+85 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  o  100%    0    0   82  29    0
+  1    1,-15  o  100%    6    0   67  16    0
+  1    3,-15  o  100%   11    0   61  10    0
+  1    5,-15  c   83%   28    5   37   0    0
+  1    7,-15  +    9%    0    0   76  47    0
+  1    9,-15  t  100%   39   14   21   0    0
+  1   11,-15  l  100%    0    0   91  72    0
+  8   17,-15  o    0%    0    0  100  87    0
+  8   19,-15  -    0%    0    0  100 100    0
+  8   23,-15  -    0%   11    0   61  21    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  j  100%   96   60    0   0   77
+  1   10,-14  h  100%   45   19   13   0    0
+  1   12,-14  =   79%    0    0   45  11    0
+  1   16,-14  )  100%    0    0  100  98    0
+  8   18,-14  o    0%    0    0   91  72    0
+  8   20,-14  -    0%    0    0   82  58    0
+  8   22,-14  g    0%   50   23    6   0    0
+  8   24,-14  g    0%   45   19   13   0    0
+  1    3,-13  j  100%   23    1   43   0    0
+  1    5,-13  m  100%  100    0  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  8   19,-13  g    0%   56   28    0   0    5
+  8   21,-13  g    0%   96   60    0   0   77
+  8   23,-13  g    0%  100   65    0   0   88
+  8   25,-13  g    0%   63   33    0   0   17
+  8   27,-13  -    0%    0    0   76  47    0
+  8   29,-13  g    0%   28    5   37   0    0
+  1    4,-12  k  100%   74   42    0   0   37
+  1    6,-12  m  100%  100    0    0   0  100
+  1    8,-12  m  100%  100    0    0   0   88
+  1   10,-12  g    2%   50   23    6   0    0
+  1   12,-12  g    2%   63   33    0   0   17
+  8   20,-12  g    0%   74   42    0   0   37
+  8   22,-12  g    0%  100   69    0   0   97
+  8   24,-12  m  100%  100    0    0   0  100
+  8   26,-12  gm 100%  100    0    0   0  100
+  8   28,-12  g    0%   91   56    0   0   68
+  8   30,-12  c    0%   23    1   43   0    0
+ 10  -11,-11  g  100%   78    0    0   0   45
+  1    3,-11  oi 100%    0    0  100   2    0
+  1    5,-11  m  100%  100    0    0   0  100
+  1    7,-11  k  100%   91    0    0   0   68
+  1    9,-11  g  100%   85    7    0   0   57
+  1   11,-11  g    2%   78   46    0   0   45
+  1   13,-11  g    1%   67   37    0   0   25
+  1   15,-11  g    1%   56   28    0   0    5
+  8   21,-11  g    0%   85   51    0   0   57
+  8   23,-11  m  100%  100    0  100 100  100
+  8   25,-11  m  100%  100    0  100 100  100
+  8   27,-11  gb 100%   39    3   21   0    0
+  8   29,-11  g    0%   34   10   28   0    0
+  8   31,-11  -    0%    0    0  100 100    0
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +   11%    0    0  100 100    0
+  1    6,-10  +   20%    0    0  100 100    0
+  1   10,-10  +   18%    0    0  100  98    0
+  8   20,-10  g    0%   78   46    0   0   45
+  8   22,-10  -    0%    6    0   67  32    0
+  8   24,-10  g    0%   67   37    0   0   25
+  8   26,-10  w  100%   17    0   52   7    0
+  9  -25,-7   g  100%   28    0   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100    0    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100    0    0   0   97
+  4  -14,0    g  100%   96    0    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100    0    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  3   -3,9    g  100%  100    0    0   0  100
+  2   17,9    g  100%   34    0   28   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   16,10   c  100%  100  100  100 100  100
+  2   18,10   c  100%  100  100  100 100  100
+85 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 10 completed successfully
+Player 01 Turn 10 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:640] Command : Looking for best path to 7,-1
+Using best path 'jh', movement cost 0.001
+No mobility used
+127 mob left in 5,-1
+
+[0:639] Command : Bridge span built over 9,-1
+That just cost you $1000.00
+
+[0:638] Command : Total movement cost = 1, 126 mob left in 7,-1
+Sector 9,-1 is now yours.
+
+[0:637] Command : 
+[0:636] Command : Looking for best path to 4,0
+Using best path 'gbh', movement cost 0.400
+Total movement cost = 10
+116 mob left in 7,-1
+
+[0:635] Command : 
+[0:634] Command : 
+[0:633] Command : 4,0 old threshold 999
+
+[0:632] Command : 
+[0:631] Command : 6,-2 old threshold 150
+
+[0:630] Command : 
+[0:629] Command : 
+[0:628] Command : 
+[0:627] Command : 
+[0:626] Command : 
+[0:625] Command : 7,1 old threshold 1
+
+[0:624] Command : Looking for best path to -1,-1
+Using best path 'gyggyh', movement cost 1.000
+Total movement cost = 5
+122 mob left in 7,1
+
+[0:623] Command : 
+[0:622] Command : 
+[0:621] Command : 5,1 old threshold 1
+
+[0:620] Command : Looking for best path to -1,-1
+Using best path 'ggyyh', movement cost 0.800
+Total movement cost = 4
+123 mob left in 5,1
+
+[0:619] Command : 
+[0:618] Command : 
+[0:617] Command : 
+[0:616] Command : 4,2 old threshold 1
+
+[0:615] Command : 
+[0:614] Command : 6,2 old threshold 1
+
+[0:613] Command : Looking for best path to -1,-1
+Using best path 'yygygh', movement cost 1.000
+Total movement cost = 5
+122 mob left in 6,2
+
+[0:612] Command : 
+[0:611] Command : 8,2 old threshold 1
+
+[0:610] Command : Looking for best path to -1,-1
+Using best path 'ygyyggh', movement cost 1.200
+Total movement cost = 6
+121 mob left in 8,2
+
+[0:609] Command : 
+[0:608] Command : 
+[0:607] Command : 
+[0:606] Command : 
+[0:605] Command : 
+[0:604] Command : 
+[0:603] Command : 10,2 old threshold 1
+
+[0:602] Command : Looking for best path to -1,-1
+Using best path 'gygyyggh', movement cost 1.400
+Total movement cost = 7
+120 mob left in 10,2
+
+[0:601] Command : 
+[0:600] Command : 
+[0:599] Command : oil field at 1,-3 distributes to 5,-1. 
+oil field 1,-3 now distributes to 5,-1 (cost 0.744)
+
+oil field at -4,-2 distributes to 5,-1. 
+oil field -4,-2 now distributes to 5,-1 (cost 1.000)
+
+oil field at -2,-2 distributes to 5,-1. 
+oil field -2,-2 now distributes to 5,-1 (cost 0.800)
+
+capital at 0,-2 distributes to 5,-1. 
+capital 0,-2 now distributes to 5,-1 (cost 0.600)
+
+highway at 2,-2 distributes to 5,-1. 
+highway 2,-2 now distributes to 5,-1 (cost 0.400)
+
+technical center at 4,-2 distributes to 5,-1. 
+technical center 4,-2 now distributes to 5,-1 (cost 0.200)
+
+library/school at 6,-2 distributes to 5,-1. 
+library/school 6,-2 now distributes to 5,-1 (cost 0.200)
+
+bank at -1,-1 distributes to 5,-1. 
+bank -1,-1 now distributes to 5,-1 (cost 0.600)
+
+mine at 1,-1 distributes to 5,-1. 
+mine 1,-1 now distributes to 5,-1 (cost 0.400)
+
+light manufacturing at 3,-1 distributes to 5,-1. 
+light manufacturing 3,-1 now distributes to 5,-1 (cost 0.200)
+
+harbor at 5,-1 has no dist sector. 
+Distribution from and to harbor 5,-1 terminated
+
+bridge span at 7,-1 distributes to 5,-1. 
+bridge span 7,-1 now distributes to 5,-1 (cost 0.200)
+
+bridge span at 9,-1 has no dist sector. 
+bridge span 9,-1 now distributes to 5,-1 (cost 0.201)
+
+radar installation at 11,-1 has no dist sector. 
+radar installation 11,-1 now distributes to 5,-1 (cost 0.521)
+
+light manufacturing at -2,0 distributes to 5,-1. 
+light manufacturing -2,0 now distributes to 5,-1 (cost 0.800)
+
+mine at 0,0 distributes to 5,-1. 
+mine 0,0 now distributes to 5,-1 (cost 0.600)
+
+mine at 2,0 distributes to 5,-1. 
+mine 2,0 now distributes to 5,-1 (cost 0.400)
+
+heavy manufacturing at 4,0 distributes to 5,-1. 
+heavy manufacturing 4,0 now distributes to 5,-1 (cost 0.200)
+
+heavy manufacturing at -1,1 distributes to 5,-1. 
+heavy manufacturing -1,1 now distributes to 5,-1 (cost 0.800)
+
+mine at 1,1 distributes to 5,-1. 
+mine 1,1 now distributes to 5,-1 (cost 0.600)
+
+mine at 3,1 distributes to 5,-1. 
+mine 3,1 now distributes to 5,-1 (cost 0.400)
+
+gold mine at 5,1 distributes to 5,-1. 
+gold mine 5,1 now distributes to 5,-1 (cost 0.400)
+
+gold mine at 7,1 distributes to 5,-1. 
+gold mine 7,1 now distributes to 5,-1 (cost 0.600)
+
+shell industry at -2,2 distributes to 5,-1. 
+shell industry -2,2 now distributes to 5,-1 (cost 1.000)
+
+mine at 0,2 distributes to 5,-1. 
+mine 0,2 now distributes to 5,-1 (cost 0.800)
+
+heavy manufacturing at 2,2 distributes to 5,-1. 
+heavy manufacturing 2,2 now distributes to 5,-1 (cost 0.600)
+
+gold mine at 4,2 distributes to 5,-1. 
+gold mine 4,2 now distributes to 5,-1 (cost 0.600)
+
+gold mine at 6,2 distributes to 5,-1. 
+gold mine 6,2 now distributes to 5,-1 (cost 0.600)
+
+gold mine at 8,2 distributes to 5,-1. 
+gold mine 8,2 now distributes to 5,-1 (cost 0.800)
+
+gold mine at 10,2 distributes to 5,-1. 
+gold mine 10,2 now distributes to 5,-1 (cost 1.000)
+
+highway at -1,3 distributes to 5,-1. 
+highway -1,3 now distributes to 5,-1 (cost 1.000)
+
+highway at 1,3 distributes to 5,-1. 
+highway 1,3 now distributes to 5,-1 (cost 0.800)
+
+highway at 5,3 distributes to 5,-1. 
+highway 5,3 now distributes to 5,-1 (cost 0.800)
+
+
+[0:598] Command : -1,3 old threshold 100
+1,3 old threshold 100
+
+[0:597] Command : SPY report
+Thu Jan  1 00:00:00 1970
+                 old sct rd  rl  def
+   sect   de own own eff eff eff eff  civ  mil  shl gun  pet food bars
+  12,-2   o    8   8   0   0   0   0  770    0    0   0    0    0    0
+  13,-1   o    8   8   0   0   0   0   10    0    0   0    0    0    0
+
+[0:595] Command :      1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+  -8                                           -8  
+  -7                                           -7  
+  -6                                           -6  
+  -5                        . . . . .          -5  
+  -4         - . . . . . . . . . . . .         -4  
+  -3          - . . . o . . . . . . . .        -3  
+  -2         . . o o c + t l . . o ? . ?       -2  
+  -1          - . . b m j h = = ) o ? ? ?      -1  
+   0         - - . j m m k . . . . ? ? ?       0   
+   1          - - . k m m g g . . . ? ?        1   
+   2         - - . o m k g g g g . . ?         2   
+   3          - - . + + . + . . . . ?          3   
+   4           - - . . . . . .                 4   
+   5                                           5   
+   6                                           6   
+   7                                           7   
+   8                                           8   
+     1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+
+[0:595] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -4,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -2,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,-2   c  100%     127 .. ..      769    0    0    0 100%   61        0   1
+   2,-2   +   14%     127 .. ..      769    0    0    0 100%    5        0   1
+   4,-2   t  100%     127 .. ..      769    0    0    0 100%    3        0   1
+   6,-2   l  100%     127 .. ..      769    0    0    0 100%   13        0   1
+  -1,-1   b  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0
+   5,-1   h  100%     127 .. ..      920    0    0    0 100%    0        0   1
+   7,-1   =  100%     116 .. ..       76    0    0    0 100%    6        0   1
+   9,-1   =   20%       0 .. ..        1    0    0    0 100%    0        0   1
+  11,-1   )  100%     127 .. 0.   8   63   21  132    0 100%  121        0   1
+  -2,0    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769    0  598    0 100%    0        0
+   4,0    k  100%     127 .. 8.      769    0   12    0 100%    0        0   1
+  -1,1    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
+   1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   5,1    gj 100%     123 .. ..      769    0    0    0 100%    1        0   1
+   7,1    gd 100%     122 .. ..      769    0    0    0 100%    1        0   1
+  -2,2    i  100%     127 .. ..      769    0    0    0 100%  474        0   1
+   0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,2    k  100%     127 .. ..      769    0    0    0 100%  125        0   1
+   4,2    gr 100%     127 .. ..      769    0    0    0 100%  100        0   1
+   6,2    gw 100%     122 .. ..      769    0    0    0 100%    1        0   1
+   8,2    ge 100%     121 .. ..      769    0    0    0 100%    0        0   1
+  10,2    g! 100%     120 .. ..      769    0    0    0 100%    0        0   1
+  -1,3    +   16%     127 .. ..      100    0    0    0 100%    6        0   1
+   1,3    +   29%     127 .. ..      100    0    0    0 100%    9        0   1
+   5,3    +p  25%     127 .. ..      769    0    0    0 100%    8        0   1
+33 sectors
+
+[0:595] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+   0 frg  frigate       13,1       100%   0  25   0   0  0  0  0  0 127    0
+1 ship
+
+[0:595] Command :      --------00000000001111111
+     8765432101234567890123456
+  -4 - . . . . . . . . . . .   -4  
+  -3  - . . . o . . . . . . .  -3  
+  -2 . . o o c + t l . . ? ? . -2  
+  -1  - . . b m j h = = ) ? ?  -1  
+   0 - - . j m m k . . . . ? ? 0   
+   1  - - . k m m g g . . . ?  1   
+   2 - - . i m k g g g g . . ? 2   
+   3  - - . + + . + . . . . ?  3   
+   4   - - . . . . . . . . .   4   
+     --------00000000001111111
+     8765432101234567890123456
+
+[0:595] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+technological breakthroughs (7.76) produced in 4,-2
+a class of graduates (150.00) produced in 6,-2
+  0 happiness, 150 education produced
+total pop was 16895, yielding 0.00 hap, 30.95 edu
+3.9556 tech, 0.0000 research produced
+Army delta $0, Navy delta $-36, Air force delta $0
+money delta was $2131 for this update
+
+
+[0:595] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   1,-3   o  11%   599   50o 0.76 $0                                       50
+  -4,-2   o   6%   599   27o 0.76 $0                                       27
+  -2,-2   o   4%   599   18o 0.76 $0                                       18
+   4,-2   t 100%   599 11.47 0.76 $4500   15d  75o 150l   37d 185o 370l 28.30
+   6,-2   l 100%   599  150  1.00 $1350  150l            599l             599
+  -1,-1   b 100%   599   61b 1.00 $610   305d            600d             120
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   j 100%   599  457l 0.76 $0     599i            599i             457
+  -2,0    j 100%   599  457l 0.76 $0     599i            599i             457
+   0,0    m 100%   599  599i 1.00 $0                                      599
+   2,0    m 100%  1011  999i 1.00 $0                                      999
+   4,0    k 100%   607  232h 0.76 $0     608i            608i             232
+  -1,1    k 100%   599  229h 0.76 $0     600i            600i             229
+   1,1    m 100%   599  599i 1.00 $0                                      599
+   3,1    m 100%   599  599i 1.00 $0                                      599
+   5,1    j 100%   474  362l 0.76 $0     474i            474i             362
+   7,1    d 100%   474    0g 0.18 $0       0o   0l   0h   30o 150l 300h     5
+  -2,2    i 100%   599   35s 0.18 $600   400l 200h       400l 200h         35
+   0,2    m 100%   599  599i 1.00 $0                                      599
+   2,2    k 100%   599  228h 0.76 $0     598i            600i             229
+   4,2    r 100%   474  0.00 0.76 $0       0d   0o   0l   30d 150o 300l 22.95
+   8,2    e 100%   474   30m 1.00 $90     30c             30c             499
+   5,3    p 100%   492    0  1.00 $0       0l            492l             492
+23 sectors
+
+[0:595] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 10 completed successfully
+Player 08 Turn 10 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:601] Command : 
+[0:600] Command : -3,-1 threshold unchanged (left at 999)
+
+[0:599] Command : 
+[0:598] Command : 
+[0:597] Command : -3,-1 old threshold 1
+
+[0:596] Command : Looking for best path to 4,0
+Using best path 'jjnjh', movement cost 0.800
+Total movement cost = 4
+123 mob left in -3,-1
+
+[0:595] Command : 
+[0:594] Command : 
+[0:593] Command : 
+[0:592] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . .          -5  
+  -4 . o - . - . . .     -4  
+  -3  ) o - g g . . .    -3  
+  -2   . g g g g - g .   -2  
+  -1    . g g m g g c .  -1  
+   0   . . g m m g g - . 0   
+   1    . g - g w . . .  1   
+   2     . . . . . . .   2   
+   3      . . . . . .    3   
+   4         . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:592] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-4   o    0%     127 .. ..      769    0    0    0 100%    0        0   1
+  -4,-4   -    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   0,-4   -    0%     127 .. ..        1    0    0    0 100%    0        0   1
+  -5,-3   o    1%     127 .. ..        5    0    0    0 100%    1        0   1
+  -3,-3   -    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -1,-3   g    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   1,-3   g    0%     127 .. ..      769    0    0    0 100%    1        0   1
+  -4,-2   g    1%     127 .. ..        5    0    0    0 100%    1        0   1
+  -2,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0
+   0,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0
+   2,-2   g    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   4,-2   -    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   6,-2   g    0%     127 .. ..      112    0    0    0 100%    1        0   1
+  -3,-1   gj 100%     123 .. ..      769    0    0    0 100%    2        0   1
+  -1,-1   g  100%     127 .. ..      769    0    0    0 100%    0        0
+   1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   5,-1   g    0%     127 .. ..        2    0    0    0 100%    0        0
+   7,-1   c    1%     127 .. ..        6    0    0    0 100%    2        0   1
+  -2,0    g    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   0,0    m  100%     127 .. ..      769   55  300    0 100%    0        0
+   2,0    m  100%     127 .. ..      769   55  304    0 100%    0        0
+   4,0    b  100%     127 .. ..      350    0    0    0 100%   88        0   1
+   6,0    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   8,0    -    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -3,1    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -1,1    -    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   1,1    g    1%     127 .. ..        5    0    0    0 100%    1        0   1
+   3,1    w  100%     127 .. ..        1    0    0    0 100%   91        0   1
+29 sectors
+
+[0:592] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . .          -5  
+  -4 . o - . - . . .     -4  
+  -3  ? o - g g . . .    -3  
+  -2 . . g g g g - g .   -2  
+  -1  . . g g m m g c .  -1  
+   0 ? . . g m m b g - . 0   
+   1  . . g - g w . . .  1   
+   2   . . . . . . . .   2   
+   3      . . . . . .    3   
+   4         . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:592] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 5128, yielding 0.00 hap, 0.00 edu
+1.9778 technology (0.0000 + 1.9778), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $643 for this update
+
+
+[0:592] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+  -6,-4   o  87%   499  294o 0.68 $0                                      294
+   1,-3   g  19%   499   95d 1.00 $0                                       95
+  -3,-1   j 100%   474  321l 0.68 $0     474i            474i             321
+  -1,-1   g   0%   599    0d 1.00 $0                                        0
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   m 100%   599  599i 1.00 $0                                      599
+   0,0    m 100%   819  819i 1.00 $0                                      819
+   2,0    m 100%   822  822i 1.00 $0                                      822
+   4,0    b 100%   273   55b 1.00 $550   275d            275d              55
+9 sectors
+
+[0:592] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 10 completed successfully
+Update Turn 11 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  33   88%  22K  46    0    0    0  8.7K 2.5K 828    0    1    0   21K
+   176.76
+        8  29   28% 6.7K 110    0    0    0  5.0K 2.3K   0    0    0    0   30K
+    35.18
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   32K
+    16.32
+        3   3  100% 3.0K 110    0    0    0    0  366    0    0    0    0   32K
+    16.18
+        5   3  100% 3.0K 110    0    0    0    0  365    0    0    0    0   32K
+    16.18
+        7   3  100% 3.0K 110    0    0    0    0  342    0    0    0    0   32K
+    16.08
+        4   3  100% 3.0K 110    0    0    0    0  307    0    0    0    0   32K
+    15.92
+       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   32K
+    15.58
+        2   3  100% 3.0K 110    0    0    0    0   57    0    0    0    0   32K
+    14.81
+        9   3  100% 3.0K 110    0    0    0    0   29    0    0    0    0   32K
+    14.69
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide  86   71%  53K 1.0K   0    0    0   14K 6.9K 828    0    1    0  304K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                 22.15        0.00       37.54        0.00     5,-15 
+ 2     2                 11.08        0.00        0.00        0.00    16,10  
+ 3     3                 11.08        0.00        0.00        0.00    -4,10  
+ 4     4                 11.08        0.00        0.00        0.00   -15,1   
+ 5     5                 11.08        0.00        0.00        0.00   -30,8   
+ 6     6                 11.08        0.00        0.00        0.00     2,-2  
+ 7     7                 11.08        0.00        0.00        0.00    24,0   
+ 8     8                 11.08        0.00        0.00        0.00    30,-12 
+ 9     9                 11.08        0.00        0.00        0.00   -26,-6  
+ 10    10                11.08        0.00        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    1,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    3,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-15  c  100%     127 .. ..      769    0    0    0 100%   61    0   1
+  1    7,-15  +   14%     127 .. ..      769    0    0    0 100%    5    0   1
+  1    9,-15  t  100%     127 .. ..      769    0    0    0 100%    3    0   1
+  1   11,-15  l  100%     127 .. ..      769    0    0    0 100%   13    0   1
+  8   17,-15  o    0%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   19,-15  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   23,-15  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  1    4,-14  b  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-14  j  100%     127 .. ..      769    0    0    0 100%    0    0
+  1   10,-14  h  100%     127 .. ..      920    0    0    0 100%    0    0   1
+  1   12,-14  =  100%     116 .. ..       76    0    0    0 100%    6    0   1
+  1   14,-14  =   20%       0 .. ..        1    0    0    0 100%    0    0   1
+  1   16,-14  )  100%     127 .. 0.   8   63   21  132    0 100%  121    0   1
+  8   18,-14  o    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  8   20,-14  -    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   22,-14  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   24,-14  g    0%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-13  m  100%     127 .. 5.      769    0  598    0 100%    0    0
+  1    9,-13  k  100%     127 .. 8.      769    0   12    0 100%    0    0   1
+  8   19,-13  g    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  8   21,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0
+  8   23,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0
+  8   25,-13  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   27,-13  -    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  8   29,-13  g    0%     127 .. ..      112    0    0    0 100%    1    0   1
+  1    4,-12  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1   10,-12  gj 100%     123 .. ..      769    0    0    0 100%    1    0   1
+  1   12,-12  gd 100%     122 .. ..      769    0    0    0 100%    1    0   1
+  8   20,-12  gj 100%     123 .. ..      769    0    0    0 100%    2    0   1
+  8   22,-12  g  100%     127 .. ..      769    0    0    0 100%    0    0
+  8   24,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  8   26,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  8   28,-12  g    0%     127 .. ..        2    0    0    0 100%    0    0
+  8   30,-12  c    1%     127 .. ..        6    0    0    0 100%    2    0   1
+ 10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  1    3,-11  i  100%     127 .. ..      769    0    0    0 100%  474    0   1
+  1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-11  k  100%     127 .. ..      769    0    0    0 100%  125    0   1
+  1    9,-11  gr 100%     127 .. ..      769    0    0    0 100%  100    0   1
+  1   11,-11  gw 100%     122 .. ..      769    0    0    0 100%    1    0   1
+  1   13,-11  ge 100%     121 .. ..      769    0    0    0 100%    0    0   1
+  1   15,-11  g! 100%     120 .. ..      769    0    0    0 100%    0    0   1
+  8   21,-11  g    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  8   23,-11  m  100%     127 .. ..      769   55  300    0 100%    0    0
+  8   25,-11  m  100%     127 .. ..      769   55  304    0 100%    0    0
+  8   27,-11  b  100%     127 .. ..      350    0    0    0 100%   88    0   1
+  8   29,-11  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   31,-11  -    0%     127 .. ..        4    0    0    0 100%    1    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  308    0 100%  798    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  301    0 100%  793    0   1
+  1    4,-10  +   16%     127 .. ..      100    0    0    0 100%    6    0   1
+  1    6,-10  +   29%     127 .. ..      100    0    0    0 100%    9    0   1
+  1   10,-10  +p  25%     127 .. ..      769    0    0    0 100%    8    0   1
+  8   20,-10  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   22,-10  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   24,-10  g    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  8   26,-10  w  100%     127 .. ..        1    0    0    0 100%   91    0   1
+  9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  306    0 100%  796    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  300    0 100%  792    0
+  6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  6    2,-2   c  100%     127 .. ..     1000   55  299    0 100%  792    0
+  6    4,-2   c  100%     127 .. ..     1000   55  303    0 100%  794    0
+  7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  7   24,0    c  100%     127 .. ..     1000   55  299    0 100%  792    0
+  7   26,0    c  100%     127 .. ..     1000   55  304    0 100%  795    0
+  4  -15,1    c  100%     127 .. ..     1000   55  304    0 100%  795    0
+  4  -13,1    c  100%     127 .. ..     1000   55  298    0 100%  791    0
+  5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  5  -30,8    c  100%     127 .. ..     1000   55  301    0 100%  793    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  305    0 100%  796    0
+  3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  2   17,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  298    0 100%  791    0
+  3   -2,10   c  100%     127 .. ..     1000   55  305    0 100%  796    0
+  2   16,10   c  100%     127 .. ..     1000   55  307    0 100%  797    0
+  2   18,10   c  100%     127 .. ..     1000   55  305    0 100%  796    0
+86 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   1,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   3,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  t .......... ....0.01..   0   0    0    0   15   0   75  150    0   0
+  1  11,-15  l .......... .......2..   0   0    0    0    0   0    0  150    0   0
+  8  17,-15  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-15  - .......... ...9......   0   0    0    0    0   0    0    0    0   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  305  88    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  1  10,-14  h .......... ..........   0   0    0 3851 2197   0  750 1318 1118   0
+  1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  14,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  18,-14  o .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  8  20,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  22,-14  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  24,-14  g .......... ....0..3..   0   0    0    0    1   0    0    0    0   0
+  1   3,-13  j .......... .......0..   0   0    0  599    0   0    0    1    0   0
+  1   5,-13  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-13  k .......... ...a....0.   0   0    0  999    0   0    0    0    1   0
+  8  19,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  21,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  23,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  25,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  27,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  29,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  1   4,-12  k .......... ........0.   0   0    0  601    0   0    0    0    1   0
+  1   6,-12  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  g .......... .......0..   0   0    0 1073    0   0    0    0    0   0
+  1  12,-12  g .......... .0....021.   0   0    0    0    0   0    0    0    0   0
+  8  20,-12  g .......... ...9...0..   0   0    0  999    0   0    0    0    0   0
+  8  22,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  24,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  28,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+  1   3,-11  i .......... 0......63.   0   0    0    0    0   0    0  600  300   0
+  1   5,-11  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  k .......... ........0.   0   0    0  599    0   0    0    0    1   0
+  1   9,-11  g .......... ....0.01..   0   0    0    0    1   0    0    0    0   0
+  1  11,-11  g .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  13,-11  g .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  g .......... 20.....22.   0   0    0    0    0   0    0    0    0   0
+  8  21,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  23,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  25,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  27,-11  b .......... ....3.....   0   0    0    0  301  12    0    0    0   0
+  8  29,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  31,-11  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  + .......... .......0..   0   0    0    0    0   0    0    0    0   0
+  8  20,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  22,-10  - .......... ...9......   0   0    0    0    0   0    0    0    0   0
+  8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 4022 2013   0    0    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   29   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  342   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  307   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  365   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  366   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   57   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+86 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  o  100%    0    0   82  11    0
+  1    1,-15  o  100%    6    0   67   6    0
+  1    3,-15  o  100%   11    0   61   4    0
+  1    5,-15  c  100%   28    5   37   0    0
+  1    7,-15  +   14%    0    0   76  47    0
+  1    9,-15  t  100%   39   14   21   0    0
+  1   11,-15  l  100%    0    0   91  72    0
+  8   17,-15  o    0%    0    0  100  87    0
+  8   19,-15  -    0%    0    0  100 100    0
+  8   23,-15  -    0%   11    0   61  21    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  j  100%   96   60    0   0   77
+  1   10,-14  h  100%   45   19   13   0    0
+  1   12,-14  =  100%    0    0   45  11    0
+  1   14,-14  =   20%    0    0   63  46    0
+  1   16,-14  )  100%    0    0  100  98    0
+  8   18,-14  o    1%    0    0   91  72    0
+  8   20,-14  -    0%    0    0   82  58    0
+  8   22,-14  g    0%   50   23    6   0    0
+  8   24,-14  g    0%   45   19   13   0    0
+  1    3,-13  j  100%   23    1   43   0    0
+  1    5,-13  m  100%  100    0  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  8   19,-13  g    1%   56   28    0   0    5
+  8   21,-13  g    0%   96   60    0   0   77
+  8   23,-13  g    0%  100   65    0   0   88
+  8   25,-13  g    0%   63   33    0   0   17
+  8   27,-13  -    0%    0    0   76  47    0
+  8   29,-13  g    0%   28    5   37   0    0
+  1    4,-12  k  100%   74   42    0   0   37
+  1    6,-12  m  100%  100    0    0   0  100
+  1    8,-12  m  100%  100    0    0   0   88
+  1   10,-12  gj 100%   50    0    6   0    0
+  1   12,-12  gd 100%   63    0    0   0   17
+  8   20,-12  gj 100%   74    0    0   0   37
+  8   22,-12  g  100%  100    0    0   0   97
+  8   24,-12  m  100%  100    0    0   0  100
+  8   26,-12  m  100%  100    0    0   0  100
+  8   28,-12  g    0%   91   56    0   0   68
+  8   30,-12  c    1%   23    1   43   0    0
+ 10  -11,-11  g  100%   78    0    0   0   45
+  1    3,-11  i  100%    0    0  100   2    0
+  1    5,-11  m  100%  100    0    0   0  100
+  1    7,-11  k  100%   91    0    0   0   68
+  1    9,-11  gr 100%   85    0    0   0   57
+  1   11,-11  gw 100%   78    0    0   0   45
+  1   13,-11  ge 100%   67    0    0   0   25
+  1   15,-11  g! 100%   56    1    0   0    5
+  8   21,-11  g    0%   85   51    0   0   57
+  8   23,-11  m  100%  100    0  100 100  100
+  8   25,-11  m  100%  100    0  100 100  100
+  8   27,-11  b  100%   39    3   21   0    0
+  8   29,-11  g    0%   34   10   28   0    0
+  8   31,-11  -    0%    0    0  100 100    0
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +   16%    0    0  100 100    0
+  1    6,-10  +   29%    0    0  100 100    0
+  1   10,-10  +p  25%    0    0  100  98    0
+  8   20,-10  g    0%   78   46    0   0   45
+  8   22,-10  -    0%    6    0   67  32    0
+  8   24,-10  g    1%   67   37    0   0   25
+  8   26,-10  w  100%   17    0   52   7    0
+  9  -25,-7   g  100%   28    0   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100    0    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100    0    0   0   97
+  4  -14,0    g  100%   96    0    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100    0    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  3   -3,9    g  100%  100    0    0   0  100
+  2   17,9    g  100%   34    0   28   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   16,10   c  100%  100  100  100 100  100
+  2   18,10   c  100%  100  100  100 100  100
+86 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 11 completed successfully
+Player 01 Turn 11 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:640] Command : 6,-2 old threshold 250
+
+[0:639] Command : 
+[0:638] Command : 
+[0:637] Command : 
+[0:636] Command : 
+[0:635] Command : 
+[0:634] Command : oil field at 1,-3 distributes to 5,-1. 
+oil field 1,-3 now distributes to 6,2 (cost 0.801)
+
+oil field at -4,-2 distributes to 5,-1. 
+oil field -4,-2 now distributes to 6,2 (cost 1.201)
+
+oil field at -2,-2 distributes to 5,-1. 
+oil field -2,-2 now distributes to 6,2 (cost 1.001)
+
+capital at 0,-2 distributes to 5,-1. 
+capital 0,-2 now distributes to 6,2 (cost 0.801)
+
+highway at 2,-2 distributes to 5,-1. 
+highway 2,-2 now distributes to 6,2 (cost 0.800)
+
+technical center at 4,-2 distributes to 5,-1. 
+technical center 4,-2 now distributes to 6,2 (cost 0.800)
+
+library/school at 6,-2 distributes to 5,-1. 
+library/school 6,-2 now distributes to 6,2 (cost 0.800)
+
+bank at -1,-1 distributes to 5,-1. 
+bank -1,-1 now distributes to 6,2 (cost 1.000)
+
+mine at 1,-1 distributes to 5,-1. 
+mine 1,-1 now distributes to 6,2 (cost 0.800)
+
+light manufacturing at 3,-1 distributes to 5,-1. 
+light manufacturing 3,-1 now distributes to 6,2 (cost 0.600)
+
+harbor at 5,-1 has no dist sector. 
+harbor 5,-1 now distributes to 6,2 (cost 0.600)
+
+bridge span at 7,-1 distributes to 5,-1. 
+bridge span 7,-1 now distributes to 6,2 (cost 0.800)
+
+bridge span at 9,-1 distributes to 5,-1. 
+bridge span 9,-1 now distributes to 6,2 (cost 0.801)
+
+radar installation at 11,-1 distributes to 5,-1. 
+radar installation 11,-1 now distributes to 6,2 (cost 1.121)
+
+light manufacturing at -2,0 distributes to 5,-1. 
+light manufacturing -2,0 now distributes to 6,2 (cost 1.000)
+
+mine at 0,0 distributes to 5,-1. 
+mine 0,0 now distributes to 6,2 (cost 0.800)
+
+mine at 2,0 distributes to 5,-1. 
+mine 2,0 now distributes to 6,2 (cost 0.600)
+
+heavy manufacturing at 4,0 distributes to 5,-1. 
+heavy manufacturing 4,0 now distributes to 6,2 (cost 0.400)
+
+heavy manufacturing at -1,1 distributes to 5,-1. 
+heavy manufacturing -1,1 now distributes to 6,2 (cost 0.800)
+
+mine at 1,1 distributes to 5,-1. 
+mine 1,1 now distributes to 6,2 (cost 0.600)
+
+mine at 3,1 distributes to 5,-1. 
+mine 3,1 now distributes to 6,2 (cost 0.400)
+
+light manufacturing at 5,1 distributes to 5,-1. 
+light manufacturing 5,1 now distributes to 6,2 (cost 0.200)
+
+defense plant at 7,1 distributes to 5,-1. 
+defense plant 7,1 now distributes to 6,2 (cost 0.200)
+
+shell industry at -2,2 distributes to 5,-1. 
+shell industry -2,2 now distributes to 6,2 (cost 0.800)
+
+mine at 0,2 distributes to 5,-1. 
+mine 0,2 now distributes to 6,2 (cost 0.600)
+
+heavy manufacturing at 2,2 distributes to 5,-1. 
+heavy manufacturing 2,2 now distributes to 6,2 (cost 0.400)
+
+research lab at 4,2 distributes to 5,-1. 
+research lab 4,2 now distributes to 6,2 (cost 0.200)
+
+warehouse at 6,2 distributes to 5,-1. 
+Distribution from and to warehouse 6,2 terminated
+
+enlistment center at 8,2 distributes to 5,-1. 
+enlistment center 8,2 now distributes to 6,2 (cost 0.200)
+
+headquarters at 10,2 distributes to 5,-1. 
+headquarters 10,2 now distributes to 6,2 (cost 0.400)
+
+highway at -1,3 distributes to 5,-1. 
+highway -1,3 now distributes to 6,2 (cost 0.728)
+
+highway at 1,3 distributes to 5,-1. 
+highway 1,3 now distributes to 6,2 (cost 0.600)
+
+park at 5,3 distributes to 5,-1. 
+park 5,3 now distributes to 6,2 (cost 0.200)
+
+
+[0:633] Command : You can't build that!
+Use `show land build 26' to show types you can build.
+command failed
+
+[0:632] Command :      1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+  -8                                           -8  
+  -7                                           -7  
+  -6                                           -6  
+  -5                        . . . . .          -5  
+  -4         - . . . . . . . . . . . .         -4  
+  -3          - . . . o . . . . . . . .        -3  
+  -2         . . o o c + t l . . o ? . ?       -2  
+  -1          - . . b m j h = = ) o ? ? ?      -1  
+   0         - - . j m m k . . . . ? ? ?       0   
+   1          - - . k m m g g . . . ? ?        1   
+   2         - - . i m k g g g g . . ?         2   
+   3          - - . + + . + . . . . ?          3   
+   4           - - . . . . . . . . .           4   
+   5                                           5   
+   6                                           6   
+   7                                           7   
+   8                                           8   
+     1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+
+[0:632] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   o  100%     127 .. ..      769    0    0    0 100%    9        0   1
+  -4,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -2,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,-2   c  100%     127 .. ..      769    0    0    0 100%  599        0   1
+   2,-2   +  100%     127 .. ..      769    0    0    0 100%  513        0   1
+   4,-2   t  100%     127 .. ..      769    0    0    0 100%  359        0   1
+   6,-2   l  100%     127 .. ..      769    0    0    0 100%  449        0   1
+  -1,-1   b  100%     127 .. ..      769    0    0    0 100%  294        0   1
+   1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0
+   5,-1   h  100%     127 .. ..     5869   29    0    0 100%  600        0   1
+   7,-1   =  100%     127 .. ..       77    0    0    0 100%   58        0   1
+   9,-1   =   20%      60 .. ..       77    0    0    0 100%    0        0   1
+  11,-1   )  100%     127 .. 0.   8   82   21    1    0 100%  145        0   1
+  -2,0    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769    0  579    0 100%   13        0
+   4,0    k  100%     127 .. 8.      769    0  273    0 100%    1        0   1
+  -1,1    k  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   5,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   7,1    d  100%     127 .. ..      769    0    0    0 100%  474        0   1
+  -2,2    i  100%     127 .. ..      769    0    0    0 100%    2        0   1
+   0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,2    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
+   4,2    r  100%     127 .. ..      769    0    0    0 100%  474        0   1
+   6,2    w  100%     127 .. ..      769    0    0    0 100%  474        0   1
+   8,2    e  100%     127 .. ..      769    1    0    0 100%  474        0   1
+  10,2    !  100%     127 .. ..      769    0    0    0 100%  474        0   1
+  -1,3    +   55%     127 .. ..      769    0    0    0 100%   39        0   1
+   1,3    +   68%     127 .. ..      769    0    0    0 100%   39        0   1
+   5,3    p  100%     127 .. ..      769    0    0    0 100%  492        0   1
+33 sectors
+
+[0:632] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+   0 frg  frigate       13,1       100%   0  25   0   0  0  0  0  0 127    0
+1 ship
+
+[0:632] Command :      --------00000000001111111
+     8765432101234567890123456
+  -4 - . . . . . . . . . . .   -4  
+  -3  - . . . o . . . . . . .  -3  
+  -2 . . o o c + t l . . ? ? . -2  
+  -1  - . . b m j h = = ) ? ?  -1  
+   0 - - . j m m k . . . . ? ? 0   
+   1  - - . k m m j d . . . ?  1   
+   2 - - . i m k r w e ! . . ? 2   
+   3  - - . + + . p . . . . ?  3   
+   4   - - . . . . . . . . .   4   
+     --------00000000001111111
+     8765432101234567890123456
+
+[0:632] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+technological breakthroughs (11.47) produced in 4,-2
+a class of graduates (150.00) produced in 6,-2
+  0 happiness, 150 education produced
+total pop was 21960, yielding 0.00 hap, 25.85 edu
+4.5203 tech, 0.0000 research produced
+Army delta $0, Navy delta $-36, Air force delta $0
+money delta was $3163 for this update
+
+
+[0:632] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   1,-3   o   5%   599   24o 0.78 $0                                       24
+  -4,-2   o   2%   599    9o 0.78 $0                                        9
+  -2,-2   o   1%   599    5o 0.78 $0                                        5
+   4,-2   t 100%   599 11.23 0.75 $4500   15d  75o 150l   37d 185o 370l 27.69
+   6,-2   l 100%   599  250  1.00 $2250  250l            599l             599
+  -1,-1   b 100%   599   60b 1.00 $600   300d            600d             120
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   j 100%   599  470l 0.78 $0     599i            599i             470
+  -2,0    j 100%   599  470l 0.78 $0     599i            599i             470
+   0,0    m 100%   599  599i 1.00 $0                                      599
+   2,0    m 100%   998  998i 1.00 $0                                      998
+   4,0    k 100%   787  309h 0.78 $0     788i            788i             309
+  -1,1    k 100%   599  235h 0.78 $0     600i            600i             235
+   1,1    m 100%   599  599i 1.00 $0                                      599
+   3,1    m 100%   599  599i 1.00 $0                                      599
+   5,1    j 100%   599  470l 0.78 $0     599i            599i             470
+   7,1    d 100%   599    4g 0.39 $300    10o  50l 100h   37o 185l 370h    15
+  -2,2    i 100%   599   79s 0.39 $600   400l 200h       400l 200h         79
+   0,2    m 100%   599  599i 1.00 $0                                      599
+   2,2    k 100%   599  235h 0.78 $0     600i            600i             235
+   4,2    r 100%   599  7.48 0.75 $900    10d  50o 100l   37d 185o 370l 27.69
+   8,2    e 100%   599   33m 1.00 $99     33c             33c             498
+   5,3    p 100%   599   75  1.00 $675    75l            599l             599
+23 sectors
+
+[0:632] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 11 completed successfully
+Player 08 Turn 11 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:593] Command : 
+[0:592] Command : 
+[0:591] Command : -1,-1 old threshold 1
+
+[0:590] Command : Looking for best path to 4,0
+Using best path 'jjnh', movement cost 0.600
+Total movement cost = 3
+124 mob left in -1,-1
+
+[0:589] Command : 
+[0:588] Command : 
+[0:587] Command : 
+[0:586] Command : 
+[0:585] Command : 
+[0:584] Command : 1,-3 old threshold 1
+
+[0:583] Command : 
+[0:582] Command : 
+[0:581] Command : 6,-2 old threshold 1
+
+[0:580] Command : 
+[0:579] Command : 
+[0:578] Command : 
+[0:577] Command : 
+[0:576] Command : 
+[0:575] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . .          -5  
+  -4 . o - . k . . .     -4  
+  -3  ) o - g g . . .    -3  
+  -2 . . g g g g - g .   -2  
+  -1  . . g g m m g c .  -1  
+   0 ? . . g m m b g - . 0   
+   1  . . g j g w . . .  1   
+   2   . . . . . . . .   2   
+   3      . . . . . .    3   
+   4         . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:575] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-4   o  100%     127 .. ..      769    0    0    0 100%    1        0   1
+  -4,-4   -    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   0,-4   k    0%     127 .. ..        2    0    0    0 100%    0        0   1
+  -5,-3   o    2%     127 .. ..        6    0    0    0 100%    2        0   1
+  -3,-3   -    1%     127 .. ..        5    0    0    0 100%    1        0   1
+  -1,-3   g    1%     127 .. ..        5    0    0    0 100%    1        0   1
+   1,-3   gl 100%     127 .. ..      769    0    0    0 100%    5        0   1
+  -4,-2   g    2%     127 .. ..        6    0    0    0 100%    2        0   1
+  -2,-2   g    0%     127 .. ..        1    0    0    0 100%    0        0
+   0,-2   g    0%     127 .. ..        2    0    0    0 100%    0        0
+   2,-2   g    1%     127 .. ..        6    0    0    0 100%    2        0   1
+   4,-2   -    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   6,-2   g   43%     127 .. ..      769    0    0    0 100%   43        0   1
+  -3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,-1   gm 100%     124 .. ..      769    0    0    0 100%  599        0
+   1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   5,-1   g    0%     127 .. ..        2    0    0    0 100%    1        0
+   7,-1   c    2%     127 .. ..        7    0    0    0 100%    2        0   1
+  -2,0    g    0%     127 .. ..        2    0    0    0 100%    1        0   1
+   0,0    m  100%     127 .. ..      769   55  345    0 100%    0        0
+   2,0    m  100%     127 .. ..      769   55  349    0 100%    0        0
+   4,0    b  100%     127 .. ..      350    0    0    0 100%    0        0   1
+   6,0    g    0%     127 .. ..      769    0    0    0 100%    1        0   1
+   8,0    -    1%     127 .. ..        5    0    0    0 100%    1        0   1
+  -3,1    g    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -1,1    j    0%     127 .. ..        1    0    0    0 100%    0        0   1
+   1,1    g    2%     127 .. ..        6    0    0    0 100%    2        0   1
+   3,1    w  100%     127 .. ..      562    0    0    0 100%    0        0   1
+29 sectors
+
+[0:575] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . . . .      -5  
+  -4 . o - . k . . . .   -4  
+  -3  ? o - g g . . . .  -3  
+  -2 . . g g g g - g . - -2  
+  -1  . . j g m m g c .  -1  
+   0 ? . . g m m b g - . 0   
+   1  . . g j g w . . .  1   
+   2   . . . . . . . .   2   
+   3      . . . . . .    3   
+   4         . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:575] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 6669, yielding 0.00 hap, 0.00 edu
+2.2601 technology (0.0000 + 2.2601), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $1191 for this update
+
+
+[0:575] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+  -6,-4   o  43%   599  180o 0.70 $0                                      180
+   1,-3   l 100%   474  300  1.00 $2700  300l            474l             474
+   6,-2   g   5%   542   25d 1.00 $0                                       25
+  -3,-1   j 100%   599  419l 0.70 $0     599i            599i             419
+  -1,-1   m 100%   474  474i 1.00 $0                                      474
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   m 100%   599  599i 1.00 $0                                      599
+   0,0    m 100%   850  850i 1.00 $0                                      850
+   2,0    m 100%   853  853i 1.00 $0                                      853
+   4,0    b 100%   273   55b 1.00 $550   275d            275d              55
+   6,0    g  10%   499   50d 1.00 $0                                       50
+11 sectors
+
+[0:575] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 11 completed successfully
+Update Turn 12 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  33   95%  28K  76   35    0    0  9.2K 2.2K 848    0    1    0   24K
+   257.04
+        8  29   36% 8.7K 110    0    0    0  7.4K 2.1K 294    0    0    0   31K
+    51.13
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   33K
+    19.76
+        3   3  100% 3.0K 110    0    0    0    0  366    0    0    0    0   33K
+    19.60
+        5   3  100% 3.0K 110    0    0    0    0  365    0    0    0    0   33K
+    19.59
+        7   3  100% 3.0K 110    0    0    0    0  342    0    0    0    0   33K
+    19.47
+        4   3  100% 3.0K 110    0    0    0    0  307    0    0    0    0   33K
+    19.28
+       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   33K
+    18.88
+        2   3  100% 3.0K 110    0    0    0    0   57    0    0    0    0   33K
+    17.96
+        9   3  100% 3.0K 110    0    0    0    0   29    0    0    0    0   33K
+    17.81
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide  86   77%  61K 1.1K  35    0    0   17K 6.4K 1.1K   0    1    0  316K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                 26.51        0.00       34.75        0.00     5,-15 
+ 2     2                 13.25        0.00        0.00        0.00    16,10  
+ 3     3                 13.25        0.00        0.00        0.00    -4,10  
+ 4     4                 13.25        0.00        0.00        0.00   -15,1   
+ 5     5                 13.25        0.00        0.00        0.00   -30,8   
+ 6     6                 13.25        0.00        0.00        0.00     2,-2  
+ 7     7                 13.25        0.00        0.00        0.00    24,0   
+ 8     8                 13.25        0.00        0.00        0.00    30,-12 
+ 9     9                 13.25        0.00        0.00        0.00   -26,-6  
+ 10    10                13.25        0.00        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  o  100%     127 .. ..      769    0    0    0 100%    9    0   1
+  1    1,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    3,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-15  c  100%     127 .. ..      769    0    0    0 100%  599    0   1
+  1    7,-15  +  100%     127 .. ..      769    0    0    0 100%  513    0   1
+  1    9,-15  t  100%     127 .. ..      769    0    0    0 100%  359    0   1
+  1   11,-15  l  100%     127 .. ..      769    0    0    0 100%  449    0   1
+  8   17,-15  o  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   19,-15  -    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   23,-15  k    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  1    4,-14  b  100%     127 .. ..      769    0    0    0 100%  294    0   1
+  1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-14  j  100%     127 .. ..      769    0    0    0 100%    0    0
+  1   10,-14  h  100%     127 .. ..     5869   29    0    0 100%  600    0   1
+  1   12,-14  =  100%     127 .. ..       77    0    0    0 100%   58    0   1
+  1   14,-14  =   20%      60 .. ..       77    0    0    0 100%    0    0   1
+  1   16,-14  )  100%     127 .. 0.   8   82   21    1    0 100%  145    0   1
+  8   18,-14  o    2%     127 .. ..        6    0    0    0 100%    2    0   1
+  8   20,-14  -    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  8   22,-14  g    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  8   24,-14  gl 100%     127 .. ..      769    0    0    0 100%    5    0   1
+  1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-13  m  100%     127 .. 5.      769    0  579    0 100%   13    0
+  1    9,-13  k  100%     127 .. 8.      769    0  273    0 100%    1    0   1
+  8   19,-13  g    2%     127 .. ..        6    0    0    0 100%    2    0   1
+  8   21,-13  g    0%     127 .. ..        1    0    0    0 100%    0    0
+  8   23,-13  g    0%     127 .. ..        2    0    0    0 100%    0    0
+  8   25,-13  g    1%     127 .. ..        6    0    0    0 100%    2    0   1
+  8   27,-13  -    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   29,-13  g   43%     127 .. ..      769    0    0    0 100%   43    0   1
+  1    4,-12  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1   10,-12  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1   12,-12  d  100%     127 .. ..      769    0    0    0 100%  474    0   1
+  8   20,-12  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   22,-12  gm 100%     124 .. ..      769    0    0    0 100%  599    0
+  8   24,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  8   26,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  8   28,-12  g    0%     127 .. ..        2    0    0    0 100%    1    0
+  8   30,-12  c    2%     127 .. ..        7    0    0    0 100%    2    0   1
+ 10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  1    3,-11  i  100%     127 .. ..      769    0    0    0 100%    2    0   1
+  1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-11  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    9,-11  r  100%     127 .. ..      769    0    0    0 100%  474    0   1
+  1   11,-11  w  100%     127 .. ..      769    0    0    0 100%  474    0   1
+  1   13,-11  e  100%     127 .. ..      769    1    0    0 100%  474    0   1
+  1   15,-11  !  100%     127 .. ..      769    0    0    0 100%  474    0   1
+  8   21,-11  g    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  8   23,-11  m  100%     127 .. ..      769   55  345    0 100%    0    0
+  8   25,-11  m  100%     127 .. ..      769   55  349    0 100%    0    0
+  8   27,-11  b  100%     127 .. ..      350    0    0    0 100%    0    0   1
+  8   29,-11  g    0%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   31,-11  -    1%     127 .. ..        5    0    0    0 100%    1    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  354    0 100%  825    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  346    0 100%  820    0   1
+  1    4,-10  +   55%     127 .. ..      769    0    0    0 100%   39    0   1
+  1    6,-10  +   68%     127 .. ..      769    0    0    0 100%   39    0   1
+  1   10,-10  p  100%     127 .. ..      769    0    0    0 100%  492    0   1
+  8   20,-10  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   22,-10  j    0%     127 .. ..        1    0    0    0 100%    0    0   1
+  8   24,-10  g    2%     127 .. ..        6    0    0    0 100%    2    0   1
+  8   26,-10  w  100%     127 .. ..      562    0    0    0 100%    0    0   1
+  9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  352    0 100%  823    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  345    0 100%  820    0
+  6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  6    2,-2   c  100%     127 .. ..     1000   55  344    0 100%  819    0
+  6    4,-2   c  100%     127 .. ..     1000   55  349    0 100%  822    0
+  7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  7   24,0    c  100%     127 .. ..     1000   55  344    0 100%  819    0
+  7   26,0    c  100%     127 .. ..     1000   55  350    0 100%  822    0
+  4  -15,1    c  100%     127 .. ..     1000   55  350    0 100%  822    0
+  4  -13,1    c  100%     127 .. ..     1000   55  342    0 100%  818    0
+  5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  5  -30,8    c  100%     127 .. ..     1000   55  346    0 100%  820    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  351    0 100%  823    0
+  3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  2   17,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  343    0 100%  819    0
+  3   -2,10   c  100%     127 .. ..     1000   55  351    0 100%  823    0
+  2   16,10   c  100%     127 .. ..     1000   55  354    0 100%  825    0
+  2   18,10   c  100%     127 .. ..     1000   55  350    0 100%  823    0
+86 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   1,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   3,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  t .......... ....0.01..   0   0    0    0   15   0   75  150    0   0
+  1  11,-15  l .......... .......3..   0   0    0    0    0   0    0  250    0   0
+  8  17,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-15  k .......... ...9....0.   0   0    0  999    0   0    0    0    0   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  300 149    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  1  10,-14  h .......... ...00.022.   0   0    0 4043 1873   0  700 1219 1306   0
+  1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  14,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  18,-14  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  8  20,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  22,-14  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  24,-14  g .......... .......3..   0   0    0    0    1   0    0  300    0   0
+  1   3,-13  j .......... .......0..   0   0    0  599    0   0    0    1    0   0
+  1   5,-13  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-13  k .......... ...a....0.   0   0    0 1200    0   0    0    0    1   0
+  8  19,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  21,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  23,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  25,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  27,-13  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  29,-13  g .......... ....0.13..   0   0    0    0    1   0    0    0    0   0
+  1   4,-12  k .......... ........0.   0   0    0  600    0   0    0    0    1   0
+  1   6,-12  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  j .......... .......0..   0   0    0 1198    0   0    0    1    0   0
+  1  12,-12  d .......... .0....021.   0   0    0    0    0   0   20  200  100   0
+  8  20,-12  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  8  22,-12  g .......... ...0......   0   0    0    0    0   0    0    0    0   0
+  8  24,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  28,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+  1   3,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  300   0
+  1   5,-11  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  k .......... ........0.   0   0    0  600    0   0    0    0    1   0
+  1   9,-11  r .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
+  1  11,-11  w .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  13,-11  e .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  ! .......... 20.....22.  34   0    0    0    0   0    0  200  200   0
+  8  21,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  23,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  25,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  27,-11  b .......... ....3.....   0   0    0    0  301  67    0    0    0   0
+  8  29,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  31,-11  - .......... .......63.   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  p .......... .......0..   0   0    0    0    0   0    0   75    0   0
+  8  20,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  22,-10  j .......... ...9...0..   0   0    0  999    0   0    0    0    0   0
+  8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 4389 1833   0  292   21    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   29   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  342   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  307   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  365   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  366   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   57   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+86 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  o  100%    0    0   82   5    0
+  1    1,-15  o  100%    6    0   67   2    0
+  1    3,-15  o  100%   11    0   61   1    0
+  1    5,-15  c  100%   28    5   37   0    0
+  1    7,-15  +  100%    0    0   76  47    0
+  1    9,-15  t  100%   39   14   21   0    0
+  1   11,-15  l  100%    0    0   91  72    0
+  8   17,-15  o  100%    0    0  100  43    0
+  8   19,-15  -    0%    0    0  100 100    0
+  8   23,-15  k    0%   11    0   61  21    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  j  100%   96   60    0   0   77
+  1   10,-14  h  100%   45   19   13   0    0
+  1   12,-14  =  100%    0    0   45  11    0
+  1   14,-14  =   20%    0    0   63  46    0
+  1   16,-14  )  100%    0    0  100  98    0
+  8   18,-14  o    2%    0    0   91  72    0
+  8   20,-14  -    1%    0    0   82  58    0
+  8   22,-14  g    1%   50   23    6   0    0
+  8   24,-14  gl 100%   45    1   13   0    0
+  1    3,-13  j  100%   23    1   43   0    0
+  1    5,-13  m  100%  100    0  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  8   19,-13  g    2%   56   28    0   0    5
+  8   21,-13  g    0%   96   60    0   0   77
+  8   23,-13  g    0%  100   65    0   0   88
+  8   25,-13  g    1%   63   33    0   0   17
+  8   27,-13  -    0%    0    0   76  47    0
+  8   29,-13  g   43%   28    5   37   0    0
+  1    4,-12  k  100%   74   42    0   0   37
+  1    6,-12  m  100%  100    0    0   0  100
+  1    8,-12  m  100%  100    0    0   0   88
+  1   10,-12  j  100%   50    0    6   0    0
+  1   12,-12  d  100%   63    0    0   0   17
+  8   20,-12  j  100%   74    0    0   0   37
+  8   22,-12  gm 100%  100    0    0   0   97
+  8   24,-12  m  100%  100    0    0   0  100
+  8   26,-12  m  100%  100    0    0   0  100
+  8   28,-12  g    0%   91   56    0   0   68
+  8   30,-12  c    2%   23    1   43   0    0
+ 10  -11,-11  g  100%   78    0    0   0   45
+  1    3,-11  i  100%    0    0  100   2    0
+  1    5,-11  m  100%  100    0    0   0  100
+  1    7,-11  k  100%   91    0    0   0   68
+  1    9,-11  r  100%   85    0    0   0   57
+  1   11,-11  w  100%   78    0    0   0   45
+  1   13,-11  e  100%   67    0    0   0   25
+  1   15,-11  !  100%   56    1    0   0    5
+  8   21,-11  g    0%   85   51    0   0   57
+  8   23,-11  m  100%  100    0  100 100  100
+  8   25,-11  m  100%  100    0  100 100  100
+  8   27,-11  b  100%   39    3   21   0    0
+  8   29,-11  g    0%   34   10   28   0    0
+  8   31,-11  -    1%    0    0  100 100    0
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +   55%    0    0  100 100    0
+  1    6,-10  +   68%    0    0  100 100    0
+  1   10,-10  p  100%    0    0  100  98    0
+  8   20,-10  g    0%   78   46    0   0   45
+  8   22,-10  j    0%    6    0   67  32    0
+  8   24,-10  g    2%   67   37    0   0   25
+  8   26,-10  w  100%   17    0   52   7    0
+  9  -25,-7   g  100%   28    0   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100    0    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100    0    0   0   97
+  4  -14,0    g  100%   96    0    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100    0    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  3   -3,9    g  100%  100    0    0   0  100
+  2   17,9    g  100%   34    0   28   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   16,10   c  100%  100  100  100 100  100
+  2   18,10   c  100%  100  100  100 100  100
+86 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 12 completed successfully
+Player 01 Turn 12 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:640] Command : cav  cavalry #0 built in sector 10,2
+cav  cavalry #1 built in sector 10,2
+cav  cavalry #2 built in sector 10,2
+cav  cavalry #3 built in sector 10,2
+cav  cavalry #4 built in sector 10,2
+That just cost you $250.00
+
+[0:639] Command : cs   cargo ship (#1) built in sector 5,-1
+cs   cargo ship (#2) built in sector 5,-1
+cs   cargo ship (#3) built in sector 5,-1
+That just cost you $300.00
+
+[0:638] Command : 
+[0:637] Command : 
+[0:636] Command : 
+[0:635] Command :      1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+  -8                                           -8  
+  -7                                           -7  
+  -6                                           -6  
+  -5                        . . . . .          -5  
+  -4         - . . . . . . . . . . . .         -4  
+  -3          - . . . o . . . . . . . .        -3  
+  -2         . . o o c + t l . . o ? . ?       -2  
+  -1          - . . b m j h = = ) o ? ? ?      -1  
+   0         - - . j m m k . . . . ? ? ?       0   
+   1          - - . k m m j d . . . ? ?        1   
+   2         - - . i m k r w e ! . . ?         2   
+   3          - - . + + . p . . . . ?          3   
+   4           - - . . . . . . . . .           4   
+   5                                           5   
+   6                                           6   
+   7                                           7   
+   8                                           8   
+     1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+
+[0:635] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -4,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -2,-2   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,-2   c  100%     127 .. ..      769    0    0    0 100%  599        0   1
+   2,-2   +  100%     127 .. ..      769    0    0    0 100%  599        0   1
+   4,-2   t  100%     127 .. ..      769    0    0    0 100%  359        0   1
+   6,-2   l  100%     127 .. ..      769    0    0    0 100%  349        0   1
+  -1,-1   b  100%     127 .. ..      769    0    0    0 100%  299        0   1
+   1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0
+   5,-1   h  100%      90 .. ..      769   29    0    0 100%  510        0   1
+   7,-1   =  100%     127 .. ..       77    0    0    0 100%   59        0   1
+   9,-1   =   49%     120 .. ..       77    0    0    0 100%   30        0   1
+  11,-1   )  100%     127 .. 0.   8  107   21    1    0 100%   69        0   1
+  -2,0    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
+   4,0    k  100%     127 .. 8.      769    0  401    0 100%    0        0   1
+  -1,1    k  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   5,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   7,1    d  100%     127 .. ..      769    0    0    0 100%  439        0   1
+  -2,2    i  100%     127 .. ..      769    0    0    0 100%    2        0   1
+   0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,2    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
+   4,2    r  100%     127 .. ..      769    0    0    0 100%  439        0   1
+   6,2    w  100%     127 .. ..     7703   33    0    0 100%  599        0   1
+   8,2    e  100%     127 .. ..      769    1    0    0 100%  599        0   1
+  10,2    !  100%     127 .. ..      769    0    0    0 100%  579        0   1
+  -1,3    +  100%     127 .. ..      769    0    0    0 100%  554        0   1
+   1,3    +  100%     127 .. ..      769    0    0    0 100%  567        0   1
+   5,3    p  100%     127 .. ..      769    0    0    0 100%  524        0   1
+33 sectors
+
+[0:635] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+   0 frg  frigate       13,1       100%   0  25   0   0  0  0  0  0 127    0
+   1 cs   cargo ship     5,-1       20%   0   0   0   0  0  0  0  0   0   30
+   2 cs   cargo ship     5,-1       20%   0   0   0   0  0  0  0  0   0   30
+   3 cs   cargo ship     5,-1       20%   0   0   0   0  0  0  0  0   0   30
+4 ships
+
+[0:635] Command :    # unit type          x,y   a   eff mil frt  mu  fd tch retr xl ln carry
+   0 cav  cavalry      10,2       10%   0   0   0   0  30  42%  0  0
+   1 cav  cavalry      10,2       10%   0   0   0   0  30  42%  0  0
+   2 cav  cavalry      10,2       10%   0   0   0   0  30  42%  0  0
+   3 cav  cavalry      10,2       10%   0   0   0   0  30  42%  0  0
+   4 cav  cavalry      10,2       10%   0   0   0   0  30  42%  0  0
+5 units
+
+[0:635] Command :      --------00000000001111111
+     8765432101234567890123456
+  -4 - . . . . . . . . . . .   -4  
+  -3  - . . . o . . . . . . .  -3  
+  -2 . . o o c + t l . . ? ? . -2  
+  -1  - . . b m j h = = ) ? ?  -1  
+   0 - - . j m m k . . . . ? ? 0   
+   1  - - . k m m j d . . . ?  1   
+   2 - - . i m k r w e ! . . ? 2   
+   3  - - . + + . p . . . . ?  3   
+   4   - - . . . . . . . . .   4   
+     --------00000000001111111
+     8765432101234567890123456
+
+[0:635] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+technological breakthroughs (11.23) produced in 4,-2
+a class of graduates (250.00) produced in 6,-2
+medical discoveries (7.48) produced in 4,2
+happy strollers (75.00) produced in 5,3
+ 75 happiness, 250 education produced
+total pop was 28324, yielding 12.95 hap, 30.83 edu
+4.4889 tech, 3.7013 research produced
+Army delta $0, Navy delta $-36, Air force delta $0
+money delta was $5637 for this update
+
+
+[0:635] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   1,-3   o   2%   599   10o 0.80 $0                                       10
+  -4,-2   o   0%   599    0o 0.80 $0                                        0
+  -2,-2   o   1%   599    5o 0.80 $0                                        5
+   4,-2   t 100%   599 11.14 0.74 $4500   15d  75o 150l   37d 185o 370l 27.47
+   6,-2   l 100%   599  300  1.00 $2700  300l            599l             599
+  -1,-1   b 100%   599   60b 1.00 $600   300d            600d             120
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   j 100%   599  481l 0.80 $0     599i            599i             481
+  -2,0    j 100%   599  481l 0.80 $0     599i            599i             481
+   0,0    m 100%   599  599i 1.00 $0                                      599
+   2,0    m 100%   998  998i 1.00 $0                                      998
+   4,0    k 100%   876  352h 0.80 $0     876i            876i             352
+  -1,1    k 100%   599  240h 0.80 $0     598i            600i             241
+   1,1    m 100%   599  599i 1.00 $0                                      599
+   3,1    m 100%   599  599i 1.00 $0                                      599
+   5,1    j 100%   599  481l 0.80 $0     599i            599i             481
+   7,1    d 100%   599    5g 0.52 $300    10o  50l 100h   37o 185l 370h    19
+  -2,2    i 100%   599  104s 0.52 $600   400l 200h       400l 200h        104
+   0,2    m 100%   599  599i 1.00 $0                                      599
+   2,2    k 100%   599  241h 0.80 $0     600i            600i             241
+   4,2    r 100%   599  7.42 0.74 $900    10d  50o 100l   37d 185o 370l 27.47
+   8,2    e 100%   599   33m 1.00 $99     33c             33c             498
+   5,3    p 100%   599   75  1.00 $675    75l            599l             599
+23 sectors
+
+[0:635] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 12 completed successfully
+Player 08 Turn 12 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:577] Command : 
+[0:576] Command : 
+[0:575] Command : 6,0 old threshold 1
+
+[0:574] Command : 
+[0:573] Command : 
+[0:572] Command : 
+[0:571] Command : 
+[0:570] Command : 4,0 old threshold 350
+
+[0:569] Command : 
+[0:568] Command : 
+[0:567] Command : 
+[0:566] Command : 
+[0:565] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . . . .      -5  
+  -4 . o - . k . . . .   -4  
+  -3  ) o - g g . . . .  -3  
+  -2 . . g g g g j g . - -2  
+  -1  . . j g m m g c .  -1  
+   0 ? . . g m m b g i . 0   
+   1  . . g j g w . . .  1   
+   2   . . . . . . . .   2   
+   3      . . . . . .    3   
+   4         . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:565] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-4   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -4,-4   -    0%     127 .. ..        2    0    0    0 100%    0        0   1
+   0,-4   k    0%     127 .. ..      769    0    0    0 100%    1        0   1
+  -5,-3   o    4%     127 .. ..        8    0    0    0 100%    2        0   1
+  -3,-3   -    2%     127 .. ..        6    0    0    0 100%    2        0   1
+  -1,-3   g    2%     127 .. ..        6    0    0    0 100%    2        0   1
+   1,-3   l  100%     127 .. ..      769    0    0    0 100%  174        0   1
+  -4,-2   g    4%     127 .. ..        8    0    0    0 100%    2        0   1
+  -2,-2   g    0%     127 .. ..        2    0    0    0 100%    0        0
+   0,-2   g    0%     127 .. ..        2    0    0    0 100%    1        0
+   2,-2   g    3%     127 .. ..        8    0    0    0 100%    2        0   1
+   4,-2   j    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   6,-2   gt 100%     127 .. ..      769    0    0    0 100%   42        0   1
+  -3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   5,-1   g    0%     127 .. ..        3    0    0    0 100%    1        0
+   7,-1   c    4%     127 .. ..        9    0    0    0 100%    3        0   1
+  -2,0    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   0,0    m  100%     127 .. ..      769   55  396    0 100%    0        0
+   2,0    m  100%     127 .. ..      769   55  402    0 100%    0        0
+   4,0    b  100%     127 .. ..      350    0    0    0 100%    3        0   1
+   6,0    gh 100%     127 .. ..      769    0    0    0 100%    0        0   1
+   8,0    i    0%     127 .. ..      769    0    0    0 100%    2        0   1
+  -3,1    g    1%     127 .. ..      769    0    0    0 100%    2        0   1
+  -1,1    j    0%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,1    g    4%     127 .. ..        8    0    0    0 100%    2        0   1
+   3,1    w  100%     127 .. ..       84    0    0    0 100%  438        0   1
+29 sectors
+
+[0:565] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . . . . . .  -5  
+  -4 . o - . k . . . . - -4  
+  -3  ? o - g l . . . .  -3  
+  -2 . . g g g g j g . - -2  
+  -1  . . j m m m g c .  -1  
+   0 ? . . g m m b g i . 0   
+   1  . . g j g w . . .  1   
+   2   . . . . . . . . . 2   
+   3      . . . . . . .  3   
+   4         . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:565] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+a class of graduates (300.00) produced in 1,-3
+  0 happiness, 300 education produced
+total pop was 8666, yielding 0.00 hap, 85.92 edu
+2.2444 technology (0.0000 + 2.2444), 1.8507 research (0.0000 + 1.8507) produced
+money delta was $505 for this update
+
+
+[0:565] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+  -6,-4   o  17%   599   73o 0.72 $0                                       73
+   0,-4   k 100%   499  179h 0.72 $0     500i            500i             179
+   1,-3   l 100%   599  300  1.00 $2700  300l            599l             599
+   6,-2   t 100%   474  8.50 0.61 $4200   14d  70o 140l   30d 150o 300l 18.22
+  -3,-1   j 100%   599  430l 0.72 $0     599i            599i             430
+  -1,-1   m 100%   599  599i 1.00 $0                                      599
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   m 100%   599  599i 1.00 $0                                      599
+   0,0    m 100%   885  885i 1.00 $0                                      885
+   2,0    m 100%   889  889i 1.00 $0                                      889
+   4,0    b 100%   273   55b 1.00 $550   275d            275d              55
+   8,0    i 100%   499    0s 0.00 $0       0l   0h         0l   0h          0
+  -3,1    g  46%   500  230d 1.00 $0                                      230
+  -1,1    j 100%   499  358l 0.72 $0     499i            499i             358
+14 sectors
+
+[0:565] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 12 completed successfully
+Update Turn 13 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  33   98%  30K 109  114    4    0  9.4K 1.9K 750    0    4    5   29K
+   322.41
+        8  29   42%  11K 110    0    0    0   10K 2.0K 474    0    0    0   32K
+    70.35
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   33K
+    23.24
+        3   3  100% 3.0K 110    0    0    0    0  366    0    0    0    0   33K
+    23.05
+        5   3  100% 3.0K 110    0    0    0    0  365    0    0    0    0   33K
+    23.05
+        7   3  100% 3.0K 110    0    0    0    0  342    0    0    0    0   33K
+    22.91
+        4   3  100% 3.0K 110    0    0    0    0  307    0    0    0    0   33K
+    22.69
+       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   33K
+    22.22
+        2   3  100% 3.0K 110    0    0    0    0   57    0    0    0    0   33K
+    21.15
+        9   3  100% 3.0K 110    0    0    0    0   29    0    0    0    0   33K
+    20.98
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide  86   80%  66K 1.1K 114    4    0   20K 5.9K 1.2K   0    4    5  329K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                 30.80        3.68       33.82        7.19     5,-15 
+ 2     2                 15.40        1.84        0.00        0.00    16,10  
+ 3     3                 15.40        1.84        0.00        0.00    -4,10  
+ 4     4                 15.40        1.84        0.00        0.00   -15,1   
+ 5     5                 15.40        1.84        0.00        0.00   -30,8   
+ 6     6                 15.40        1.84        0.00        0.00     2,-2  
+ 7     7                 15.40        1.84        0.00        0.00    24,0   
+ 8     8                 15.40        1.84       20.46        0.00    30,-12 
+ 9     9                 15.40        1.84        0.00        0.00   -26,-6  
+ 10    10                15.40        1.84        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    1,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    3,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-15  c  100%     127 .. ..      769    0    0    0 100%  599    0   1
+  1    7,-15  +  100%     127 .. ..      769    0    0    0 100%  599    0   1
+  1    9,-15  t  100%     127 .. ..      769    0    0    0 100%  359    0   1
+  1   11,-15  l  100%     127 .. ..      769    0    0    0 100%  349    0   1
+  8   17,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   19,-15  -    0%     127 .. ..        2    0    0    0 100%    0    0   1
+  8   23,-15  k    0%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    4,-14  b  100%     127 .. ..      769    0    0    0 100%  299    0   1
+  1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-14  j  100%     127 .. ..      769    0    0    0 100%    0    0
+  1   10,-14  h  100%      90 .. ..      769   29    0    0 100%  510    0   1
+  1   12,-14  =  100%     127 .. ..       77    0    0    0 100%   59    0   1
+  1   14,-14  =   49%     120 .. ..       77    0    0    0 100%   30    0   1
+  1   16,-14  )  100%     127 .. 0.   8  107   21    1    0 100%   69    0   1
+  8   18,-14  o    4%     127 .. ..        8    0    0    0 100%    2    0   1
+  8   20,-14  -    2%     127 .. ..        6    0    0    0 100%    2    0   1
+  8   22,-14  g    2%     127 .. ..        6    0    0    0 100%    2    0   1
+  8   24,-14  l  100%     127 .. ..      769    0    0    0 100%  174    0   1
+  1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-13  m  100%     127 .. 5.      769    0  579    0 100%    0    0
+  1    9,-13  k  100%     127 .. 8.      769    0  401    0 100%    0    0   1
+  8   19,-13  g    4%     127 .. ..        8    0    0    0 100%    2    0   1
+  8   21,-13  g    0%     127 .. ..        2    0    0    0 100%    0    0
+  8   23,-13  g    0%     127 .. ..        2    0    0    0 100%    1    0
+  8   25,-13  g    3%     127 .. ..        8    0    0    0 100%    2    0   1
+  8   27,-13  j    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   29,-13  gt 100%     127 .. ..      769    0    0    0 100%   42    0   1
+  1    4,-12  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1   10,-12  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1   12,-12  d  100%     127 .. ..      769    0    0    0 100%  439    0   1
+  8   20,-12  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   22,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  8   24,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  8   26,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  8   28,-12  g    0%     127 .. ..        3    0    0    0 100%    1    0
+  8   30,-12  c    4%     127 .. ..        9    0    0    0 100%    3    0   1
+ 10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  1    3,-11  i  100%     127 .. ..      769    0    0    0 100%    2    0   1
+  1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-11  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    9,-11  r  100%     127 .. ..      769    0    0    0 100%  439    0   1
+  1   11,-11  w  100%     127 .. ..     7703   33    0    0 100%  599    0   1
+  1   13,-11  e  100%     127 .. ..      769    1    0    0 100%  599    0   1
+  1   15,-11  !  100%     127 .. ..      769    0    0    0 100%  579    0   1
+  8   21,-11  g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   23,-11  m  100%     127 .. ..      769   55  396    0 100%    0    0
+  8   25,-11  m  100%     127 .. ..      769   55  402    0 100%    0    0
+  8   27,-11  b  100%     127 .. ..      350    0    0    0 100%    3    0   1
+  8   29,-11  gh 100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   31,-11  i    0%     127 .. ..      769    0    0    0 100%    2    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  408    0 100%  857    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  398    0 100%  851    0   1
+  1    4,-10  +  100%     127 .. ..      769    0    0    0 100%  554    0   1
+  1    6,-10  +  100%     127 .. ..      769    0    0    0 100%  567    0   1
+  1   10,-10  p  100%     127 .. ..      769    0    0    0 100%  524    0   1
+  8   20,-10  g    1%     127 .. ..      769    0    0    0 100%    2    0   1
+  8   22,-10  j    0%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   24,-10  g    4%     127 .. ..        8    0    0    0 100%    2    0   1
+  8   26,-10  w  100%     127 .. ..       84    0    0    0 100%  438    0   1
+  9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  405    0 100%  855    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  397    0 100%  851    0
+  6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  6    2,-2   c  100%     127 .. ..     1000   55  395    0 100%  849    0
+  6    4,-2   c  100%     127 .. ..     1000   55  401    0 100%  853    0
+  7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  7   24,0    c  100%     127 .. ..     1000   55  395    0 100%  849    0
+  7   26,0    c  100%     127 .. ..     1000   55  403    0 100%  854    0
+  4  -15,1    c  100%     127 .. ..     1000   55  402    0 100%  854    0
+  4  -13,1    c  100%     127 .. ..     1000   55  393    0 100%  848    0
+  5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  5  -30,8    c  100%     127 .. ..     1000   55  398    0 100%  851    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  403    0 100%  854    0
+  3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  2   17,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  394    0 100%  849    0
+  3   -2,10   c  100%     127 .. ..     1000   55  403    0 100%  854    0
+  2   16,10   c  100%     127 .. ..     1000   55  407    0 100%  856    0
+  2   18,10   c  100%     127 .. ..     1000   55  403    0 100%  854    0
+86 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  o .......... ...9..0...   0   0    0    0    0   0    1    0    0   0
+  1   1,-15  o .......... ...9..0...   0   0    0    0    0   0    1    0    0   0
+  1   3,-15  o .......... ...9..0...   0   0    0    0    0   0    1    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  t .......... ....0.01..   0   0    0    0   15   0   75  150    0   0
+  1  11,-15  l .......... .......3..   0   0    0    0    0   0    0  300    0   0
+  8  17,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-15  k .......... ...9....0.   0   0    0  999    0   0    0    0    0   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  300 209    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  1  10,-14  h .......... ...00.022.   0   0    0    1    1   0    1  164  176   0
+  1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  14,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  18,-14  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  8  20,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  22,-14  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  24,-14  l .......... .......3..   0   0    0    0    1   0    0  300    0   0
+  1   3,-13  j .......... .......0..   0   0    0  599    0   0    0    1    0   0
+  1   5,-13  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-13  k .......... ...a....0.   0   0    0 1200    0   0    0    0    1   0
+  8  19,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  21,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  23,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  25,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  27,-13  j .......... ...9......   0   0    0    0    0   0    0    0    0   0
+  8  29,-13  g .......... ....0.13..   0   0    0    0   30   0  150  140    0   0
+  1   4,-12  k .......... ........0.   0   0    0  599    0   0    0    0    1   0
+  1   6,-12  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  j .......... .......0..   0   0    0 1198    0   0    0    1    0   0
+  1  12,-12  d .......... .0....021.   0   1    0    0    0   0   20  200  100   0
+  8  20,-12  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  8  22,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  24,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  28,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+  1   3,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  300   0
+  1   5,-11  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  k .......... ........0.   0   0    0  601    0   0    0    0    1   0
+  1   9,-11  r .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
+  1  11,-11  w .......... ..........   0   0    0 4252 1547   0  601 1356 1585   0
+  1  13,-11  e .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  ! .......... 20.....22. 113   3    0    0    0   0    0  195  200   0
+  8  21,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  23,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  25,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  27,-11  b .......... ....3.....   0   0    0    0  300 121    0    0    0   0
+  8  29,-11  g .......... .......22.   0   0    0    0    1   0    0    0    0   0
+  8  31,-11  i .......... 0......63.   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  p .......... .......0..   0   0    0    0    0   0    0   75    0   0
+  8  20,-10  g .......... ...90.....   0   0    0    0    1   0    0    0    0   0
+  8  22,-10  j .......... ...9...0..   0   0    0  999    0   0    0    0    0   0
+  8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 7165 1610   0  322    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   29   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  342   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  307   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  365   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  366   0    0    0    0   0
+  2  17,9    g .......... ..........   0   0    0    0   57   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+86 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  o  100%    0    0   82   2    0
+  1    1,-15  o  100%    6    0   67   0    0
+  1    3,-15  o  100%   11    0   61   1    0
+  1    5,-15  c  100%   28    5   37   0    0
+  1    7,-15  +  100%    0    0   76  47    0
+  1    9,-15  t  100%   39   14   21   0    0
+  1   11,-15  l  100%    0    0   91  72    0
+  8   17,-15  o  100%    0    0  100  17    0
+  8   19,-15  -    0%    0    0  100 100    0
+  8   23,-15  k    0%   11    0   61  21    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  j  100%   96   60    0   0   77
+  1   10,-14  h  100%   45   19   13   0    0
+  1   12,-14  =  100%    0    0   45  11    0
+  1   14,-14  =   49%    0    0   63  46    0
+  1   16,-14  )  100%    0    0  100  98    0
+  8   18,-14  o    4%    0    0   91  72    0
+  8   20,-14  -    2%    0    0   82  58    0
+  8   22,-14  g    2%   50   23    6   0    0
+  8   24,-14  l  100%   45    1   13   0    0
+  1    3,-13  j  100%   23    1   43   0    0
+  1    5,-13  m  100%  100    0  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  8   19,-13  g    4%   56   28    0   0    5
+  8   21,-13  g    0%   96   60    0   0   77
+  8   23,-13  g    0%  100   65    0   0   88
+  8   25,-13  g    3%   63   33    0   0   17
+  8   27,-13  j    0%    0    0   76  47    0
+  8   29,-13  gt 100%   28    0   37   0    0
+  1    4,-12  k  100%   74   42    0   0   37
+  1    6,-12  m  100%  100    0    0   0  100
+  1    8,-12  m  100%  100    0    0   0   88
+  1   10,-12  j  100%   50    0    6   0    0
+  1   12,-12  d  100%   63    0    0   0   17
+  8   20,-12  j  100%   74    0    0   0   37
+  8   22,-12  m  100%  100    0    0   0   97
+  8   24,-12  m  100%  100    0    0   0  100
+  8   26,-12  m  100%  100    0    0   0  100
+  8   28,-12  g    0%   91   56    0   0   68
+  8   30,-12  c    4%   23    1   43   0    0
+ 10  -11,-11  g  100%   78    0    0   0   45
+  1    3,-11  i  100%    0    0  100   2    0
+  1    5,-11  m  100%  100    0    0   0  100
+  1    7,-11  k  100%   91    0    0   0   68
+  1    9,-11  r  100%   85    0    0   0   57
+  1   11,-11  w  100%   78    0    0   0   45
+  1   13,-11  e  100%   67    0    0   0   25
+  1   15,-11  !  100%   56    1    0   0    5
+  8   21,-11  g    0%   85   51    0   0   57
+  8   23,-11  m  100%  100    0  100 100  100
+  8   25,-11  m  100%  100    0  100 100  100
+  8   27,-11  b  100%   39    3   21   0    0
+  8   29,-11  gh 100%   34    0   28   0    0
+  8   31,-11  i    0%    0    0  100 100    0
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +  100%    0    0  100 100    0
+  1    6,-10  +  100%    0    0  100 100    0
+  1   10,-10  p  100%    0    0  100  98    0
+  8   20,-10  g    1%   78   46    0   0   45
+  8   22,-10  j    0%    6    0   67  32    0
+  8   24,-10  g    4%   67   37    0   0   25
+  8   26,-10  w  100%   17    0   52   7    0
+  9  -25,-7   g  100%   28    0   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100    0    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100    0    0   0   97
+  4  -14,0    g  100%   96    0    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100    0    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  3   -3,9    g  100%  100    0    0   0  100
+  2   17,9    g  100%   34    0   28   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   16,10   c  100%  100  100  100 100  100
+  2   18,10   c  100%  100  100  100 100  100
+86 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 13 completed successfully
+Player 01 Turn 13 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:640] Command : 
+[0:639] Command : 
+[0:638] Command : 
+[0:637] Command : 
+[0:636] Command : -4,-2 old threshold 1
+-2,-2 old threshold 1
+
+[0:635] Command : 
+[0:634] Command : 
+[0:633] Command : 1,-3 old threshold 1
+
+[0:632] Command : 
+[0:631] Command : 
+[0:630] Command : 
+[0:629] Command : 
+[0:628] Command : 2,2 old threshold 1
+
+[0:627] Command : 
+[0:626] Command : 3,-1 old threshold 1
+
+[0:625] Command : 3,-1 old threshold 999
+
+[0:624] Command : 6,-2 old threshold 300
+
+[0:623] Command : 11,-1 efficiency 100%, max range 5
+     . ? ? ? ? .     
+    . . . . . . .    
+   . . . . . . . .   
+  . . . . . . . . .  
+ + t l . . o ? . ? . 
+m j C = = 0 o ? ? ? .
+ m k . . . . ? ? ? ? 
+  m j d . . F ? ? ?  
+   r w e ! . . ? ?   
+    p . . . . ? ?    
+     . . . . . .     
+
+
+[0:622] Command : 20 military loaded onto cav  cavalry #0 at 10,2
+1 unit loaded
+
+[0:621] Command : 1 military loaded onto cav  cavalry #1 at 10,2
+1 military loaded onto cav  cavalry #2 at 10,2
+1 military loaded onto cav  cavalry #3 at 10,2
+3 units loaded
+
+[0:620] Command : Leader is cav  cavalry #0
+Using path 'gygyuh'
+cav  cavalry #0 stopped at 5,-1
+cav  cavalry #1 stopped at 5,-1
+cav  cavalry #2 stopped at 5,-1
+cav  cavalry #3 stopped at 5,-1
+
+[0:619] Command : 25 military loaded onto cs   cargo ship (#1) at 5,-1
+1 ship loaded
+
+[0:618] Command : 300 civilians loaded onto cs   cargo ship (#1) at 5,-1
+1 ship loaded
+
+[0:617] Command : 100 light products loaded onto cs   cargo ship (#1) at 5,-1
+1 ship loaded
+
+[0:616] Command : 100 heavy products loaded onto cs   cargo ship (#1) at 5,-1
+1 ship loaded
+
+[0:615] Command : 10 civilians loaded onto cs   cargo ship (#2) at 5,-1
+1 ship loaded
+
+[0:614] Command : 10 civilians loaded onto cs   cargo ship (#3) at 5,-1
+1 ship loaded
+
+[0:613] Command : cav  cavalry #0 loaded onto cs   cargo ship (#1) at 5,-1.
+1 ship loaded
+
+[0:612] Command : cav  cavalry #1 loaded onto cs   cargo ship (#2) at 5,-1.
+1 ship loaded
+
+[0:611] Command : cav  cavalry #2 loaded onto cs   cargo ship (#3) at 5,-1.
+1 ship loaded
+
+[0:610] Command : cav  cavalry #3 loaded onto cs   cargo ship (#3) at 5,-1.
+1 ship loaded
+
+[0:609] Command : art  artillery #5 built in sector 10,2
+
+[0:608] Command : Flagship is cs   cargo ship (#2)
+cs   cargo ship (#2) stopped at 6,0
+Path taken: n
+
+[0:607] Command : Really scrap 1 land [n]? cav  cavalry #1 is not in an allied sector!
+
+[0:605] Command : Really scrap 1 ship [n]? cs   cargo ship (#2) is not in a friendly harbor!
+
+[0:603] Command : Really scuttle 1 land [n]? cav  cavalry #1 is on a ship, and cannot be scuttled!
+
+[0:598] Command : Really scuttle 1 ship [n]? cs   cargo ship (#2) scuttled in 6,0
+       cs   cargo ship (#2) sunk!
+cav  cavalry #1 lost!
+
+[0:593] Command : Thu Jan  1 00:00:00 1970
+COMMODITIES deliver--  distribute
+  sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+   5,-1   h .......... ...00.022.   0   0    0    1    1   0    1  100  100   0
+1 sector
+
+[0:593] Command : Really scrap 1 land [n]? cav  cavalry #2 scrapped in 5,-1
+
+[0:591] Command : Thu Jan  1 00:00:00 1970
+COMMODITIES deliver--  distribute
+  sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+   5,-1   h .......... ...00.022.   0   0    0    1    1   0    1  106  103   0
+1 sector
+
+[0:591] Command : Really scrap 1 ship [n]? cs   cargo ship (#3) scrapped in 5,-1
+cav  cavalry #3 transferred off ship 3 to 5,-1
+       cs   cargo ship (#3) sunk!
+
+[0:589] Command : Thu Jan  1 00:00:00 1970
+COMMODITIES deliver--  distribute
+  sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+   5,-1   h .......... ...00.022.   0   0    0    1    1   0    1  146  129   0
+1 sector
+
+[0:589] Command : 5,-1 old threshold 1
+
+[0:588] Command : 5,-1 old threshold 1
+
+[0:587] Command : 5,-1 old threshold 1
+
+[0:586] Command :      1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+  -8                                           -8  
+  -7                                           -7  
+  -6                       . ? ? ? ? .         -6  
+  -5                      . . . . . . .        -5  
+  -4         - . . . . . . . . . . . . .       -4  
+  -3          - . . . o . . . . . . . . .      -3  
+  -2         . . o o c + t l . . o ? . ? .     -2  
+  -1          - . . b m j h = = ) o ? ? ? .    -1  
+   0         - - . j m m k . . . . ? ? ? ?     0   
+   1          - - . k m m j d . . . ? ? ?      1   
+   2         - - . i m k r w e ! . . ? ?       2   
+   3          - - . + + . p . . . . ? ?        3   
+   4           - - . . . . . . . . . .         4   
+   5                                           5   
+   6                                           6   
+   7                                           7   
+   8                                           8   
+     1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+
+[0:586] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   oj 100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -4,-2   ok 100%     127 .. ..      769    0    0    0 100%  599        0   1
+  -2,-2   oj 100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,-2   c  100%     127 .. ..      769    0    0    0 100%  599        0   1
+   2,-2   +  100%     127 .. ..      769    0    0    0 100%  599        0   1
+   4,-2   t  100%     127 .. ..      769    0    0    0 100%  359        0   1
+   6,-2   l  100%     127 .. ..      769    0    0    0 100%  299        0   1
+  -1,-1   b  100%     127 .. ..      769    0    0    0 100%  299        0   1
+   1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,-1   jm 100%     127 .. ..      769    0    0    0 100%    0        0
+   5,-1   h  100%     127 .. ..      459    5    0    0 100%  222        0   1
+   7,-1   =  100%     127 .. ..       77    0    0    0 100%   59        0   1
+   9,-1   =   78%     127 .. ..       77    0    0    0 100%   30        0   1
+  11,-1   )  100%     127 .. 0.   8  139   21    1    0 100%   88        0   1
+  -2,0    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
+   4,0    k  100%     127 .. 8.      769    0  547    0 100%    0        0   1
+  -1,1    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
+   1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   5,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   7,1    d  100%     127 .. ..      769    0    0    0 100%  439        0   1
+  -2,2    i  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,2    km 100%     127 .. ..      769    0    0    0 100%    0        0   1
+   4,2    r  100%     127 .. ..      769    0    0    0 100%  439        0   1
+   6,2    w  100%     127 .. ..     7704   41    0    0 100%  607        0   1
+   8,2    e  100%     127 .. ..      769    1    0    0 100%  599        0   1
+  10,2    !  100%     127 .. ..      769    2    0    0 100%  413        0   1
+  -1,3    +o 100%     127 .. ..      769    0    0    0 100%  599        0   1
+   1,3    +  100%     127 .. ..      769    0    0    0 100%  599        0   1
+   5,3    p  100%     127 .. ..      769    0    0    0 100%  524        0   1
+33 sectors
+
+[0:586] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+   0 frg  frigate       13,1       100%   0  25   0   0  0  0  0  0 127    0
+   1 cs   cargo ship     5,-1      100% 300  25   0   0  0  0  0  1  90   30
+2 ships
+
+[0:586] Command :    # unit type          x,y   a   eff mil frt  mu  fd tch retr xl ln carry
+   0 cav  cavalry       5,-1     100%  20   0   4   0  30  42%  0  0    1S
+   3 cav  cavalry       5,-1     100%   1   0   4   0  30  42%  0  0
+   4 cav  cavalry      10,2      100%   0   0  60   0  30  42%  0  0
+   5 art  artillery    10,2       10%   0   0   0   0  37  42%  0  0
+4 units
+
+[0:586] Command :      --------00000000001111111
+     8765432101234567890123456
+  -4 - . . . . . . . . . . .   -4  
+  -3  - . . . o . . . . . . .  -3  
+  -2 . . o o c + t l . . ? ? . -2  
+  -1  - . . b m j h = = ) ? ?  -1  
+   0 - - . j m m k . . . . ? ? 0   
+   1  - - . k m m j d . . . ?  1   
+   2 - - . i m k r w e ! . . ? 2   
+   3  - - . + + . p . . . . ?  3   
+   4   - - . . . . . . . . .   4   
+     --------00000000001111111
+     8765432101234567890123456
+
+[0:586] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+technological breakthroughs (11.14) produced in 4,-2
+a class of graduates (300.00) produced in 6,-2
+medical discoveries (7.42) produced in 4,2
+happy strollers (75.00) produced in 5,3
+ 75 happiness, 300 education produced
+total pop was 30158, yielding 12.46 hap, 33.53 edu
+6.5210 technology (4.4772 + 2.0438), 3.6900 research (3.6900 + 0.0000) produced
+Army delta $-2400, Navy delta $-1326, Air force delta $0
+money delta was $3548 for this update
+
+
+[0:586] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   1,-3   j 100%   474  391l 0.82 $0     474i            474i             391
+  -4,-2   k 100%   474  195h 0.82 $0     474i            474i             195
+  -2,-2   j 100%   474  391l 0.82 $0     474i            474i             391
+   4,-2   t 100%   599 11.13 0.74 $4500   15d  75o 150l   37d 185o 370l 27.45
+   6,-2   l 100%   599  300  1.00 $2700  300l            599l             599
+  -1,-1   b 100%   599   60b 1.00 $600   300d            600d             120
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   m  96%   474  455i 1.00 $0                                      455
+  -2,0    j 100%   599  494l 0.82 $0     599i            599i             494
+   0,0    m 100%   599  599i 1.00 $0                                      599
+   2,0    m 100%   998  998i 1.00 $0                                      998
+   4,0    k 100%   976  403h 0.82 $0     976i            976i             403
+  -1,1    k 100%   599  247h 0.82 $0     600i            600i             247
+   1,1    m 100%   599  599i 1.00 $0                                      599
+   3,1    m 100%   599  599i 1.00 $0                                      599
+   5,1    j 100%   599  494l 0.82 $0     599i            599i             494
+   7,1    d 100%   599    6g 0.63 $300    10o  50l 100h   37o 185l 370h    23
+  -2,2    i 100%   599  126s 0.63 $600   400l 200h       400l 200h        126
+   0,2    m 100%   599  599i 1.00 $0                                      599
+   2,2    m  91%   474  431i 1.00 $0                                      431
+   4,2    r 100%   599  7.42 0.74 $900    10d  50o 100l   37d 185o 370l 27.45
+   8,2    e 100%   599   33m 1.00 $99     33c             33c             498
+  -1,3    o 100%   474  391o 0.82 $0                                      391
+   5,3    p 100%   599   75  1.00 $675    75l            599l             599
+24 sectors
+
+[0:586] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 13 completed successfully
+Player 02 Turn 13 starting
+
+
+       -=O=-
+You have thirteen new telegrams waiting ...
+
+[0:640] Command : No mobility used, 127 mob left in 2,0
+Sector 3,-1 is now yours.
+
+[0:639] Command : No mobility used, 127 mob left in 2,0
+Sector 4,0 is now yours.
+
+[0:638] Command : No mobility used, 127 mob left in 2,0
+Sector 1,1 is now yours.
+
+[0:637] Command : No mobility used, 127 mob left in 2,0
+Sector 3,1 is now yours.
+
+[0:636] Command : 
+[0:635] Command : No mobility used, 127 mob left in 2,0
+Sector 2,-2 is now yours.
+
+[0:634] Command : Total movement cost = 1, 126 mob left in 2,0
+Sector -1,-1 is now yours.
+
+[0:633] Command : Total movement cost = 1, 125 mob left in 2,0
+Sector 5,-1 is now yours.
+
+[0:632] Command : Total movement cost = 1, 124 mob left in 2,0
+Sector -2,0 is now yours.
+
+[0:631] Command : No mobility used, 124 mob left in 2,0
+Sector -1,1 is now yours.
+
+[0:630] Command : Total movement cost = 1, 123 mob left in 2,0
+Sector 0,2 is now yours.
+
+[0:629] Command : Total movement cost = 1, 122 mob left in 2,0
+Sector 2,2 is now yours.
+
+[0:628] Command : 
+[0:627] Command : Total movement cost = 1, 121 mob left in 2,0
+Sector 7,-1 is now yours.
+
+[0:626] Command : Total movement cost = 1, 120 mob left in 2,0
+Sector -4,0 is now yours.
+
+[0:625] Command : Total movement cost = 1, 119 mob left in 2,0
+Sector -3,1 is now yours.
+
+[0:624] Command : Total movement cost = 1, 118 mob left in 2,0
+Sector -2,2 is now yours.
+
+[0:623] Command : Total movement cost = 1, 117 mob left in 2,0
+Sector -1,3 is now yours.
+
+[0:622] Command : Total movement cost = 1, 116 mob left in 2,0
+Sector 1,3 is now yours.
+
+[0:621] Command : Total movement cost = 1, 115 mob left in 2,0
+Sector 3,3 is now yours.
+
+[0:620] Command : 
+[0:619] Command : Total movement cost = 2, 113 mob left in 2,0
+Sector -5,-1 is now yours.
+
+[0:618] Command : Total movement cost = 2, 111 mob left in 2,0
+Sector -6,0 is now yours.
+
+[0:617] Command : Total movement cost = 2, 109 mob left in 2,0
+Sector -5,1 is now yours.
+
+[0:616] Command : Total movement cost = 1, 108 mob left in 2,0
+Sector -4,2 is now yours.
+
+[0:615] Command : Total movement cost = 1, 107 mob left in 2,0
+Sector -3,3 is now yours.
+
+[0:614] Command : 
+[0:613] Command : Total movement cost = 1, 106 mob left in 2,0
+Sector -4,-2 is now yours.
+
+[0:612] Command : 
+[0:611] Command : Total movement cost = 1, 126 mob left in 0,0
+
+[0:610] Command : No mobility used, 126 mob left in 0,0
+
+[0:609] Command : Total movement cost = 1, 125 mob left in 0,0
+
+[0:608] Command : Total movement cost = 1, 124 mob left in 0,0
+
+[0:607] Command : 
+[0:606] Command : No mobility used, 124 mob left in 0,0
+
+[0:605] Command : Total movement cost = 1, 123 mob left in 0,0
+
+[0:604] Command : Total movement cost = 1, 122 mob left in 0,0
+
+[0:603] Command : No mobility used, 122 mob left in 0,0
+
+[0:602] Command : Total movement cost = 1, 121 mob left in 0,0
+
+[0:601] Command : Total movement cost = 1, 120 mob left in 0,0
+
+[0:600] Command : Total movement cost = 1, 119 mob left in 0,0
+
+[0:599] Command : Total movement cost = 1, 118 mob left in 0,0
+
+[0:598] Command : Total movement cost = 1, 117 mob left in 0,0
+
+[0:597] Command : 
+[0:596] Command : Total movement cost = 2, 115 mob left in 0,0
+
+[0:595] Command : Total movement cost = 1, 114 mob left in 0,0
+
+[0:594] Command : Total movement cost = 1, 113 mob left in 0,0
+
+[0:593] Command : Total movement cost = 2, 111 mob left in 0,0
+
+[0:592] Command : Total movement cost = 2, 109 mob left in 0,0
+
+[0:591] Command : Total movement cost = 1, 108 mob left in 0,0
+
+[0:590] Command : Total movement cost = 2, 106 mob left in 0,0
+
+[0:589] Command : Total movement cost = 1, 105 mob left in 0,0
+
+[0:588] Command : Total movement cost = 1, 104 mob left in 0,0
+
+[0:587] Command : 
+[0:586] Command : Total movement cost = 2, 102 mob left in 0,0
+Sector -6,-2 is now yours.
+
+[0:585] Command : Total movement cost = 2, 100 mob left in 0,0
+
+[0:584] Command : Total movement cost = 1, 99 mob left in 0,0
+Sector -7,-1 is now yours.
+
+[0:583] Command : Total movement cost = 1, 98 mob left in 0,0
+
+[0:582] Command : Total movement cost = 2, 96 mob left in 0,0
+Sector -7,1 is now yours.
+
+[0:581] Command : 
+[0:580] Command : 
+[0:579] Command : Capital now at 2,-2.
+
+[0:579] Command : 
+[0:578] Command : 
+[0:577] Command : 
+[0:576] Command : 
+[0:575] Command : 
+[0:574] Command : 
+[0:573] Command : 
+[0:572] Command : 
+[0:571] Command : 2,-2 old threshold 769
+
+[0:570] Command : 1,-1 old threshold 769
+
+[0:569] Command : 3,-1 old threshold 769
+
+[0:568] Command : 5,-1 old threshold 769
+
+[0:567] Command : 
+[0:566] Command : highway at -6,-2 has no dist sector. 
+highway -6,-2 now distributes to 1,-1 (cost 1.600)
+
+warehouse at -4,-2 has no dist sector. 
+warehouse -4,-2 now distributes to 1,-1 (cost 1.600)
+
+capital at 2,-2 has no dist sector. 
+capital 2,-2 now distributes to 1,-1 (cost 0.200)
+
+highway at -7,-1 has no dist sector. 
+highway -7,-1 now distributes to 1,-1 (cost 1.600)
+
+gold mine at -5,-1 has no dist sector. 
+gold mine -5,-1 now distributes to 1,-1 (cost 1.200)
+
+oil field at -1,-1 has no dist sector. 
+oil field -1,-1 now distributes to 1,-1 (cost 0.200)
+
+gold mine at 1,-1 has no dist sector. 
+Distribution from and to gold mine 1,-1 terminated
+
+gold mine at 3,-1 has no dist sector. 
+gold mine 3,-1 now distributes to 1,-1 (cost 0.200)
+
+gold mine at 5,-1 has no dist sector. 
+gold mine 5,-1 now distributes to 1,-1 (cost 0.600)
+
+gold mine at 7,-1 has no dist sector. 
+gold mine 7,-1 now distributes to 1,-1 (cost 1.000)
+
+gold mine at -6,0 has no dist sector. 
+gold mine -6,0 now distributes to 1,-1 (cost 1.200)
+
+gold mine at -4,0 has no dist sector. 
+gold mine -4,0 now distributes to 1,-1 (cost 0.800)
+
+gold mine at -2,0 has no dist sector. 
+gold mine -2,0 now distributes to 1,-1 (cost 0.400)
+
+capital at 0,0 has no dist sector. 
+capital 0,0 now distributes to 1,-1 (cost 0.200)
+
+capital at 2,0 has no dist sector. 
+capital 2,0 now distributes to 1,-1 (cost 0.200)
+
+highway at 4,0 has no dist sector. 
+highway 4,0 now distributes to 1,-1 (cost 0.400)
+
+highway at -7,1 has no dist sector. 
+highway -7,1 now distributes to 1,-1 (cost 1.600)
+
+highway at -5,1 has no dist sector. 
+highway -5,1 now distributes to 1,-1 (cost 1.200)
+
+gold mine at -3,1 has no dist sector. 
+gold mine -3,1 now distributes to 1,-1 (cost 0.800)
+
+gold mine at -1,1 has no dist sector. 
+gold mine -1,1 now distributes to 1,-1 (cost 0.400)
+
+gold mine at 1,1 has no dist sector. 
+gold mine 1,1 now distributes to 1,-1 (cost 0.400)
+
+highway at 3,1 has no dist sector. 
+highway 3,1 now distributes to 1,-1 (cost 0.400)
+
+gold mine at -4,2 has no dist sector. 
+gold mine -4,2 now distributes to 1,-1 (cost 1.200)
+
+gold mine at -2,2 has no dist sector. 
+gold mine -2,2 now distributes to 1,-1 (cost 0.800)
+
+gold mine at 0,2 has no dist sector. 
+gold mine 0,2 now distributes to 1,-1 (cost 0.800)
+
+gold mine at 2,2 has no dist sector. 
+gold mine 2,2 now distributes to 1,-1 (cost 0.800)
+
+highway at -3,3 has no dist sector. 
+highway -3,3 now distributes to 1,-1 (cost 1.200)
+
+highway at -1,3 has no dist sector. 
+highway -1,3 now distributes to 1,-1 (cost 1.200)
+
+highway at 1,3 has no dist sector. 
+highway 1,3 now distributes to 1,-1 (cost 1.200)
+
+gold mine at 3,3 has no dist sector. 
+gold mine 3,3 now distributes to 1,-1 (cost 1.200)
+
+
+[0:565] Command : No mobility in 1,1
+Usage: move <COMM> <SECT> <NUM> <PATH|DESTINATION>
+
+[0:565] Command : New civilians on active reserve? (y/n) 55 demobilized in 0,0 (0 mil left)
+55 demobilized in 2,0 (0 mil left)
+Total new civilians : 110
+Military reserve stands at 110 (up 110)
+That just cost you $550.00
+
+[0:564] Command : Looking for best path to 3,-1
+Using best path 'juh', movement cost 0.600
+Total movement cost = 15
+81 mob left in 0,0
+
+[0:563] Command : Looking for best path to 3,-1
+Using best path 'uh', movement cost 0.400
+Total movement cost = 6
+100 mob left in 2,0
+
+[0:562] Command : Looking for best path to 5,-1
+Using best path 'ujh', movement cost 0.800
+Total movement cost = 8
+92 mob left in 2,0
+
+[0:561] Command : 
+[0:560] Command : 
+[0:559] Command :      --------00000000001
+     8765432101234567890
+  -5                     -5  
+  -4                     -4  
+  -3                     -3  
+  -2   + w     c         -2  
+  -1  + g   o g g g g    -1  
+   0   g g g     +       0   
+   1  + + g g g +        1   
+   2     g g g g         2   
+   3      + + + g        3   
+   4                     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:559] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-2   +    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -4,-2   w    0%       0 .. ..        2    0    0    0 100%    0        0   1
+   2,-2   c    0%       0 .. ..        2    0    0    0 100%    0        0   1
+  -7,-1   +    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -5,-1   g    0%       0 .. 5.        2    0    0    0 100%    0        0   1
+  -1,-1   o    0%       0 .. ..        2    0    0    0 100%    0        0   1
+   1,-1   gb 100%     127 .. ..     1000    0    0    0 100%  600        0   1
+   3,-1   g    0%       0 .. ..      427    0    0    0 100%    0        0   1
+   5,-1   g    0%       0 .. ..      102    0    0    0 100%    0        0   1
+   7,-1   g    0%       0 .. ..        2    0    0    0 100%    0        0   1
+  -6,0    g    0%       0 .. ..        2    0    0    0 100%    0        0   1
+  -4,0    g    0%       0 .. ..        2    0    0    0 100%    0        0   1
+  -2,0    g    0%       0 .. ..        2    0    0    0 100%    0        0   1
+   0,0    cg 100%      81 .. 5.      768    0  468    0 100%  893        0
+   2,0    cg 100%      92 .. 5.      766    0  464    0 100%  891        0
+   4,0    +    0%       0 .. ..        2    0    0    0 100%    0        0   1
+  -7,1    +    0%       0 .. ..        1    0    0    0 100%    0        0   1
+  -5,1    +    0%       0 .. ..        2    0    0    0 100%    0        0   1
+  -3,1    g    0%       0 .. ..        2    0    0    0 100%    0        0
+  -1,1    g    0%       0 .. ..        2    0    0    0 100%    0        0
+   1,1    g    0%       0 .. ..        2    0    0    0 100%    0        0
+   3,1    +    0%       0 .. ..        2    0    0    0 100%    0        0   1
+  -4,2    g    0%       0 .. ..        2    0    0    0 100%    0        0   1
+  -2,2    g    0%       0 .. ..        2    0    0    0 100%    0        0
+   0,2    g    0%       0 .. ..        2    0    0    0 100%    0        0
+   2,2    g    0%       0 .. ..        2    0    0    0 100%    0        0   1
+  -3,3    +    0%       0 .. ..        2    0    0    0 100%    0        0   1
+  -1,3    +    0%       0 .. ..        2    0    0    0 100%    0        0   1
+   1,3    +    0%       0 .. ..        2    0    0    0 100%    0        0   1
+   3,3    g    0%       0 .. ..        2    0    0    0 100%    0        0   1
+30 sectors
+
+[0:559] Command :      --------00000000001
+     8765432101234567890
+  -5                     -5  
+  -4       - . . .       -4  
+  -3  . . . - . . .      -3  
+  -2 . + w . . c . . .   -2  
+  -1  + g . o g g g g .  -1  
+   0 . g g g c c + . .   0   
+   1  + + g g g + . .    1   
+   2 . . g g g g . .     2   
+   3    . + + + g .      3   
+   4     . . . . .       4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:559] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2000, yielding 0.00 hap, 0.00 edu
+0.0000 tech, 0.0000 research produced
+money delta was $165 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2268, yielding 0.00 hap, 0.00 edu
+0.0000 tech, 0.0000 research produced
+money delta was $437 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2349, yielding 0.00 hap, 0.00 edu
+0.0000 tech, 0.0000 research produced
+money delta was $528 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2454, yielding 0.00 hap, 0.00 edu
+0.0000 tech, 0.0000 research produced
+money delta was $583 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2590, yielding 0.00 hap, 0.00 edu
+1.5059 technology (0.0000 + 1.5059), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $655 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2767, yielding 0.00 hap, 0.00 edu
+1.9084 technology (0.0000 + 1.9084), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $747 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 2997, yielding 0.00 hap, 0.00 edu
+1.9620 technology (0.0000 + 1.9620), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $868 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 3000, yielding 0.00 hap, 0.00 edu
+1.9782 technology (0.0000 + 1.9782), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $875 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 3000, yielding 0.00 hap, 0.00 edu
+1.9812 technology (0.0000 + 1.9812), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $882 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 3000, yielding 0.00 hap, 0.00 edu
+1.9778 technology (0.0000 + 1.9778), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $888 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 3000, yielding 0.00 hap, 0.00 edu
+2.2601 technology (0.0000 + 2.2601), 0.0000 research (0.0000 + 0.0000) produced
+money delta was $898 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 3000, yielding 0.00 hap, 0.00 edu
+2.2444 technology (0.0000 + 2.2444), 1.8507 research (0.0000 + 1.8507) produced
+money delta was $907 for this update
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 3000, yielding 0.00 hap, 0.00 edu
+2.1412 technology (0.0000 + 2.1412), 1.8450 research (0.0000 + 1.8450) produced
+money delta was $918 for this update
+
+
+[0:559] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   1,-1   b 100%   475   11b 1.00 $110    55d            475d              95
+   3,-1   g  46%   233  107d 1.00 $0                                      107
+   0,0    g 100%   796  500d 1.00 $0                                      500
+   2,0    g 100%   791  500d 1.00 $0                                      500
+4 sectors
+
+[0:559] Command : Bye-bye
+Exit: so long...
+Player 02 Turn 13 completed successfully
+Player 08 Turn 13 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:571] Command : 
+[0:570] Command : 
+[0:569] Command : 
+[0:568] Command : 
+[0:567] Command : 
+[0:566] Command : 
+[0:565] Command : 
+[0:564] Command : 
+[0:563] Command : -3,1 old threshold 1
+
+[0:562] Command : 
+[0:561] Command : 
+[0:560] Command : 
+[0:559] Command : 
+[0:558] Command : 
+[0:557] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . . . . . .  -5  
+  -4 . o - . k . . . . - -4  
+  -3  ) o - g l . . . .  -3  
+  -2 . . g g g g j g . - -2  
+  -1  . . j m m m g c .  -1  
+   0 ? . . g m m b g i . 0   
+   1  . . g j g w . . .  1   
+   2   . . . . . . . . . 2   
+   3      . . . . . . .  3   
+   4         . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:557] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-4   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -4,-4   -    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   0,-4   k  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -5,-3   o    6%     127 .. ..       10    0    0    0 100%    3        0   1
+  -3,-3   -    4%     127 .. ..        8    0    0    0 100%    2        0   1
+  -1,-3   g    3%     127 .. ..        7    0    0    0 100%    2        0   1
+   1,-3   l  100%     127 .. ..      769    0    0    0 100%  299        0   1
+  -4,-2   g    6%     127 .. ..       10    0    0    0 100%    3        0   1
+  -2,-2   g    0%     127 .. ..      769    0    0    0 100%    1        0
+   0,-2   g    0%     127 .. ..      769    0    0    0 100%    1        0
+   2,-2   gk   5%     127 .. ..      769    0    0    0 100%    3        0   1
+   4,-2   j    1%     127 .. ..      769    0    0    0 100%    1        0   1
+   6,-2   t  100%     127 .. ..      769    0    0    0 100%  250        0   1
+  -3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
+   1,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
+   3,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
+   5,-1   g    0%     127 .. ..        4    0    0    0 100%    1        0
+   7,-1   c    7%     127 .. ..       12    0    0    0 100%    3        0   1
+  -2,0    g    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   0,0    m  100%     127 .. 5.      769   55  455    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769   55  463    0 100%    0        0
+   4,0    b  100%     127 .. ..      400    0    0    0 100%    3        0   1
+   6,0    h  100%     127 .. ..      769    0    0    0 100%  474        0   1
+   8,0    i  100%     127 .. ..      769    0    0    0 100%  499        0   1
+  -3,1    gj 100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,1    g    6%     127 .. ..       11    0    0    0 100%    3        0   1
+   3,1    w  100%     127 .. ..      338    0    0    0 100%   65        0   1
+29 sectors
+
+[0:557] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . . . . . .  -5  
+  -4 . o - . k . . . . - -4  
+  -3  ? o - g l . . . .  -3  
+  -2 . . g g g g j t . - -2  
+  -1  . . j m m m g c .  -1  
+   0 ? . . g m m b h i . 0   
+   1  . . g j g w . . .  1   
+   2 . . . . . . . . . . 2   
+   3  . . . . . . . . .  3   
+   4   . . - . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:557] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+a class of graduates (300.00) produced in 1,-3
+technological breakthroughs (8.50) produced in 6,-2
+  0 happiness, 300 education produced
+total pop was 11269, yielding 0.00 hap, 69.89 edu
+6.3262 technology (4.0876 + 2.2386), 1.8450 research (0.0000 + 1.8450) produced
+money delta was $-2749 for this update
+
+
+[0:557] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+  -6,-4   o   7%   599   32o 0.76 $0                                       32
+   0,-4   k 100%   599  228h 0.76 $0     600i            600i             228
+   1,-3   l 100%   599  300  1.00 $2700  300l            599l             599
+  -2,-2   g  60%   499  299d 1.00 $0                                      299
+   0,-2   g  65%   499  324d 1.00 $0                                      324
+   2,-2   k 100%   497    0h 0.76 $0       0i            498i             189
+   4,-2   j 100%   500  380l 0.76 $0     500i            500i             380
+   6,-2   t 100%   599 21.94 0.73 $9000   30d 150o 300l   37d 185o 370l 27.06
+  -3,-1   j 100%   599  455l 0.76 $0     599i            599i             455
+  -1,-1   m 100%   599  599i 1.00 $0                                      599
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   m 100%   599  599i 1.00 $0                                      599
+   0,0    m 100%   926  926i 1.00 $0                                      926
+   2,0    m 100%   931  931i 1.00 $0                                      931
+   4,0    b 100%   312   60b 1.00 $600   300d            310d              62
+   8,0    i 100%   599    0s 0.14 $0       0l   0h       400l 200h         27
+  -3,1    j 100%   474  360l 0.76 $0     474i            474i             360
+  -1,1    j 100%   599  455l 0.76 $0     599i            599i             455
+18 sectors
+
+[0:557] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 13 completed successfully
+Update Turn 14 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  33   99%  30K 141  218    9    0  9.6K 1.5K 629    0    2    4   33K
+   400.43
+        8  29   56%  15K 110    0    0    0   12K 1.9K 477    0    0    0   29K
+   119.60
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   34K
+    26.63
+        3   3  100% 3.0K 110    0    0    0    0  366    0    0    0    0   34K
+    26.41
+        5   3  100% 3.0K 110    0    0    0    0  365    0    0    0    0   34K
+    26.41
+        7   3  100% 3.0K 110    0    0    0    0  342    0    0    0    0   34K
+    26.25
+        4   3  100% 3.0K 110    0    0    0    0  307    0    0    0    0   34K
+    26.00
+       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   34K
+    25.47
+        2  30   10% 3.1K   0    0    0    0    0   57    0    0    0    0   34K
+    24.07
+        9   3  100% 3.0K 110    0    0    0    0   29    0    0    0    0   34K
+    24.06
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide 113   65%  69K 1.0K 218    9    0   22K 5.5K 1.1K   0    2    4  336K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                 37.09        7.32       33.75       10.12     5,-15 
+ 2     2                 17.43        3.66        0.00        0.00    18,8   
+ 3     3                 17.43        3.66        0.00        0.00    -4,10  
+ 4     4                 17.43        3.66        0.00        0.00   -15,1   
+ 5     5                 17.43        3.66        0.00        0.00   -30,8   
+ 6     6                 17.43        3.66        0.00        0.00     2,-2  
+ 7     7                 17.43        3.66        0.00        0.00    24,0   
+ 8     8                 21.59        3.66       32.23        0.00    30,-12 
+ 9     9                 17.43        3.66        0.00        0.00   -26,-6  
+ 10    10                17.43        3.66        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  oj 100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    1,-15  ok 100%     127 .. ..      769    0    0    0 100%  599    0   1
+  1    3,-15  oj 100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-15  c  100%     127 .. ..      769    0    0    0 100%  599    0   1
+  1    7,-15  +  100%     127 .. ..      769    0    0    0 100%  599    0   1
+  1    9,-15  t  100%     127 .. ..      769    0    0    0 100%  359    0   1
+  1   11,-15  l  100%     127 .. ..      769    0    0    0 100%  299    0   1
+  8   17,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   19,-15  -    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  8   23,-15  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    4,-14  b  100%     127 .. ..      769    0    0    0 100%  299    0   1
+  1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-14  jm 100%     127 .. ..      769    0    0    0 100%    0    0
+  1   10,-14  h  100%     127 .. ..      459    5    0    0 100%  222    0   1
+  1   12,-14  =  100%     127 .. ..       77    0    0    0 100%   59    0   1
+  1   14,-14  =   78%     127 .. ..       77    0    0    0 100%   30    0   1
+  1   16,-14  )  100%     127 .. 0.   8  139   21    1    0 100%   88    0   1
+  8   18,-14  o    6%     127 .. ..       10    0    0    0 100%    3    0   1
+  8   20,-14  -    4%     127 .. ..        8    0    0    0 100%    2    0   1
+  8   22,-14  g    3%     127 .. ..        7    0    0    0 100%    2    0   1
+  8   24,-14  l  100%     127 .. ..      769    0    0    0 100%  299    0   1
+  1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-13  m  100%     127 .. 5.      769    0  579    0 100%    0    0
+  1    9,-13  k  100%     127 .. 8.      769    0  547    0 100%    0    0   1
+  8   19,-13  g    6%     127 .. ..       10    0    0    0 100%    3    0   1
+  8   21,-13  g    0%     127 .. ..      769    0    0    0 100%    1    0
+  8   23,-13  g    0%     127 .. ..      769    0    0    0 100%    1    0
+  8   25,-13  gk   5%     127 .. ..      769    0    0    0 100%    3    0   1
+  8   27,-13  j    1%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   29,-13  t  100%     127 .. ..      769    0    0    0 100%  250    0   1
+  1    4,-12  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1   10,-12  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1   12,-12  d  100%     127 .. ..      769    0    0    0 100%  439    0   1
+  8   20,-12  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   22,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
+  8   24,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
+  8   26,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
+  8   28,-12  g    0%     127 .. ..        4    0    0    0 100%    1    0
+  8   30,-12  c    7%     127 .. ..       12    0    0    0 100%    3    0   1
+ 10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  1    3,-11  i  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-11  km 100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    9,-11  r  100%     127 .. ..      769    0    0    0 100%  439    0   1
+  1   11,-11  w  100%     127 .. ..     7704   41    0    0 100%  607    0   1
+  1   13,-11  e  100%     127 .. ..      769    1    0    0 100%  599    0   1
+  1   15,-11  !  100%     127 .. ..      769    2    0    0 100%  413    0   1
+  8   21,-11  g    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   23,-11  m  100%     127 .. 5.      769   55  455    0 100%    0    0
+  8   25,-11  m  100%     127 .. 5.      769   55  463    0 100%    0    0
+  8   27,-11  b  100%     127 .. ..      400    0    0    0 100%    3    0   1
+  8   29,-11  h  100%     127 .. ..      769    0    0    0 100%  474    0   1
+  8   31,-11  i  100%     127 .. ..      769    0    0    0 100%  499    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  469    0 100%  894    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  458    0 100%  888    0   1
+  1    4,-10  +o 100%     127 .. ..      769    0    0    0 100%  599    0   1
+  1    6,-10  +  100%     127 .. ..      769    0    0    0 100%  599    0   1
+  1   10,-10  p  100%     127 .. ..      769    0    0    0 100%  524    0   1
+  8   20,-10  gj 100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   22,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   24,-10  g    6%     127 .. ..       11    0    0    0 100%    3    0   1
+  8   26,-10  w  100%     127 .. ..      338    0    0    0 100%   65    0   1
+  9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  466    0 100%  892    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  456    0 100%  886    0
+  6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  6    2,-2   c  100%     127 .. ..     1000   55  455    0 100%  886    0
+  6    4,-2   c  100%     127 .. ..     1000   55  461    0 100%  889    0
+  7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  7   24,0    c  100%     127 .. ..     1000   55  455    0 100%  886    0
+  7   26,0    c  100%     127 .. ..     1000   55  463    0 100%  891    0
+  4  -15,1    c  100%     127 .. ..     1000   55  463    0 100%  890    0
+  4  -13,1    c  100%     127 .. ..     1000   55  452    0 100%  884    0
+  5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  5  -30,8    c  100%     127 .. ..     1000   55  458    0 100%  888    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  464    0 100%  891    0
+  2   10,8    +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  2   12,8    w    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  2   18,8    c    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  2    9,9    +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  2   11,9    g    0%       0 .. 5.        2    0    0    0 100%    0    0   1
+  2   15,9    o    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  2   17,9    gb 100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  2   19,9    g    0%       0 .. ..      427    0    0    0 100%    0    0   1
+  2   21,9    g    0%       0 .. ..      102    0    0    0 100%    0    0   1
+  2   23,9    g    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  453    0 100%  884    0
+  3   -2,10   c  100%     127 .. ..     1000   55  463    0 100%  891    0
+  2   10,10   g    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  2   12,10   g    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  2   14,10   g    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  2   16,10   cg 100%      81 .. 5.      768    0  468    0 100%  893    0
+  2   18,10   cg 100%      92 .. 5.      766    0  464    0 100%  891    0
+  2   20,10   +    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  2    9,11   +    0%       0 .. ..        1    0    0    0 100%    0    0   1
+  2   11,11   +    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  2   13,11   g    0%       0 .. ..        2    0    0    0 100%    0    0
+  2   15,11   g    0%       0 .. ..        2    0    0    0 100%    0    0
+  2   17,11   g    0%       0 .. ..        2    0    0    0 100%    0    0
+  2   19,11   +    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  2   12,12   g    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  2   14,12   g    0%       0 .. ..        2    0    0    0 100%    0    0
+  2   16,12   g    0%       0 .. ..        2    0    0    0 100%    0    0
+  2   18,12   g    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  2   13,13   +    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  2   15,13   +    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  2   17,13   +    0%       0 .. ..        2    0    0    0 100%    0    0   1
+  2   19,13   g    0%       0 .. ..        2    0    0    0 100%    0    0   1
+113 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  o .......... ...9...0..   0   0    0  999    0   0    1    0    0   0
+  1   1,-15  o .......... ...9....0.   0   0    0  999    0   0    1    0    0   0
+  1   3,-15  o .......... ...9...0..   0   0    0  999    0   0    1    0    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  t .......... ....0.01..   0   0    0    0   15   0   75  150    0   0
+  1  11,-15  l .......... .......4..   0   0    0    0    0   0    0  300    0   0
+  8  17,-15  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-15  k .......... ...9....0.   0   0    0  999    0   0    0    0    1   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  300 269    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  j .......... ...0......   0   0    0  999    0   0    0    1    0   0
+  1  10,-14  h .......... .......22.   0   0    0    1    1   0    1  146  129   0
+  1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  14,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  16,-14  ) .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  18,-14  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  8  20,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  22,-14  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  24,-14  l .......... .......3..   0   0    0    0    1   0    0  300    0   0
+  1   3,-13  j .......... .......0..   0   0    0  599    0   0    0    1    0   0
+  1   5,-13  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-13  k .......... ...a....0.   0   0    0 1200    0   0    0    0    1   0
+  8  19,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  21,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  23,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  25,-13  g .......... ...90...0.   0   0    0    0    1   0    0    0    0   0
+  8  27,-13  j .......... ...9......   0   0    0  999    0   0    0    0    0   0
+  8  29,-13  t .......... ....0.13..   0   0    0    0   30   0  150  300    0   0
+  1   4,-12  k .......... ........0.   0   0    0  600    0   0    0    0    1   0
+  1   6,-12  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  j .......... .......0..   0   0    0 1198    0   0    0    1    0   0
+  1  12,-12  d .......... .0....021.   0   1    0    0    0   0   20  200  100   0
+  8  20,-12  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  8  22,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  24,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  28,-12  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+  1   3,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  300   0
+  1   5,-11  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  k .......... ...0......   0   0    0  600    0   0    0    0    1   0
+  1   9,-11  r .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
+  1  11,-11  w .......... ..........  17   0    0 1376 1222   0  480 1494 1976   0
+  1  13,-11  e .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  ! .......... 20.....22. 200   8    0    0    0   0    0  198  199   0
+  8  21,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  23,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  25,-11  m .......... ...0......   0   0    0  739    0   0    0    0    0   0
+  8  27,-11  b .......... ....3.....   0   0    0    0  300 175    0    0    0   0
+  8  29,-11  h .......... .......22.   0   0    0    0    1   0    0  187  178   0
+  8  31,-11  i .......... 0......63.   0   0    0    0    0   0    0    0    0   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  + .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  p .......... .......0..   0   0    0    0    0   0    0   75    0   0
+  8  20,-10  g .......... ...9...0..   0   0    0  999    1   0    0    0    0   0
+  8  22,-10  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 6403 1556   0  325    0    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   29   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  342   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  307   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  365   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  10,8    + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  12,8    w .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  366   0    0    0    0   0
+  2   9,9    + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  11,9    g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  15,9    o .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  2  17,9    g .......... ....3.....   0   0    0    0   57   0    0    0    0   0
+  2  19,9    g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  21,9    g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  23,9    g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  10,10   g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  12,10   g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  14,10   g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  16,10   c .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  18,10   c .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  20,10   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2   9,11   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  11,11   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  13,11   g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  15,11   g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  17,11   g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  19,11   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  12,12   g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  14,12   g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  16,12   g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  18,12   g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+  2  13,13   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  15,13   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  17,13   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  19,13   g .......... ....0.....   0   0    0    0    0   0    0    0    0   0
+113 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  oj 100%    0    0   82   1    0
+  1    1,-15  ok 100%    6    0   67   0    0
+  1    3,-15  oj 100%   11    0   61   0    0
+  1    5,-15  c  100%   28    5   37   0    0
+  1    7,-15  +  100%    0    0   76  47    0
+  1    9,-15  t  100%   39   14   21   0    0
+  1   11,-15  l  100%    0    0   91  72    0
+  8   17,-15  o  100%    0    0  100   7    0
+  8   19,-15  -    0%    0    0  100 100    0
+  8   23,-15  k  100%   11    0   61  21    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  jm 100%   96   60    0   0   77
+  1   10,-14  h  100%   45   19   13   0    0
+  1   12,-14  =  100%    0    0   45  11    0
+  1   14,-14  =   78%    0    0   63  46    0
+  1   16,-14  )  100%    0    0  100  98    0
+  8   18,-14  o    6%    0    0   91  72    0
+  8   20,-14  -    4%    0    0   82  58    0
+  8   22,-14  g    3%   50   23    6   0    0
+  8   24,-14  l  100%   45    1   13   0    0
+  1    3,-13  j  100%   23    1   43   0    0
+  1    5,-13  m  100%  100    0  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  8   19,-13  g    6%   56   28    0   0    5
+  8   21,-13  g    0%   96   60    0   0   77
+  8   23,-13  g    0%  100   65    0   0   88
+  8   25,-13  gk   5%   63   33    0   0   17
+  8   27,-13  j    1%    0    0   76  47    0
+  8   29,-13  t  100%   28    0   37   0    0
+  1    4,-12  k  100%   74   42    0   0   37
+  1    6,-12  m  100%  100    0    0   0  100
+  1    8,-12  m  100%  100    0    0   0   88
+  1   10,-12  j  100%   50    0    6   0    0
+  1   12,-12  d  100%   63    0    0   0   17
+  8   20,-12  j  100%   74    0    0   0   37
+  8   22,-12  m  100%  100    0    0   0   97
+  8   24,-12  m  100%  100    0    0   0  100
+  8   26,-12  m  100%  100    0    0   0  100
+  8   28,-12  g    0%   91   56    0   0   68
+  8   30,-12  c    7%   23    1   43   0    0
+ 10  -11,-11  g  100%   78    0    0   0   45
+  1    3,-11  i  100%    0    0  100   2    0
+  1    5,-11  m  100%  100    0    0   0  100
+  1    7,-11  km 100%   91    0    0   0   68
+  1    9,-11  r  100%   85    0    0   0   57
+  1   11,-11  w  100%   78    0    0   0   45
+  1   13,-11  e  100%   67    0    0   0   25
+  1   15,-11  !  100%   56    1    0   0    5
+  8   21,-11  g    0%   85   51    0   0   57
+  8   23,-11  m  100%  100    0  100 100  100
+  8   25,-11  m  100%  100    0  100 100  100
+  8   27,-11  b  100%   39    3   21   0    0
+  8   29,-11  h  100%   34    0   28   0    0
+  8   31,-11  i  100%    0    0  100 100    0
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  +o 100%    0    0  100 100    0
+  1    6,-10  +  100%    0    0  100 100    0
+  1   10,-10  p  100%    0    0  100  98    0
+  8   20,-10  gj 100%   78    0    0   0   45
+  8   22,-10  j  100%    6    0   67  32    0
+  8   24,-10  g    6%   67   37    0   0   25
+  8   26,-10  w  100%   17    0   52   7    0
+  9  -25,-7   g  100%   28    0   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100    0    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100    0    0   0   97
+  4  -14,0    g  100%   96    0    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100    0    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  2   10,8    +    0%    0    0  100  87    0
+  2   12,8    w    0%   17    0   52   7    0
+  2   18,8    c    0%   23    1   43   0    0
+  3   -3,9    g  100%  100    0    0   0  100
+  2    9,9    +    0%    6    0   67  32    0
+  2   11,9    g    0%   56   28    0   0    5
+  2   15,9    o    0%    0    0  100 100    0
+  2   17,9    gb 100%   34    0   28   0    0
+  2   19,9    g    0%   78   46    0   0   45
+  2   21,9    g    0%   74   42    0   0   37
+  2   23,9    g    0%   39   14   21   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   10,10   g    0%   45   19   13   0    0
+  2   12,10   g    0%   63   33    0   0   17
+  2   14,10   g    0%   91   56    0   0   68
+  2   16,10   cg 100%  100  100  100 100  100
+  2   18,10   cg 100%  100  100  100 100  100
+  2   20,10   +    0%    0    0  100 100    0
+  2    9,11   +    0%    0    0   82  58    0
+  2   11,11   +    0%   11    0   61  21    0
+  2   13,11   g    0%  100   69    0   0   97
+  2   15,11   g    0%  100   74    0   0  100
+  2   17,11   g    0%  100   80    0   0  100
+  2   19,11   +    0%    0    0  100  98    0
+  2   12,12   g    0%   67   37    0   0   25
+  2   14,12   g    0%  100   65    0   0   88
+  2   16,12   g    0%   96   60    0   0   77
+  2   18,12   g    0%   85   51    0   0   57
+  2   13,13   +    0%    0    0   91  72    0
+  2   15,13   +    0%   28    5   37   0    0
+  2   17,13   +    0%    0    0   76  47    0
+  2   19,13   g    0%   50   23    6   0    0
+113 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 14 completed successfully
+Player 01 Turn 14 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:640] Command : 5 military loaded onto cav  cavalry #4 at 10,2
+5 military loaded onto art  artillery #5 at 10,2
+2 units loaded
+
+[0:639] Command : 40 shells loaded onto art  artillery #5 at 10,2
+1 unit loaded
+
+[0:638] Command : 10 guns loaded onto art  artillery #5 at 10,2
+1 unit loaded
+
+[0:637] Command : Leader is cav  cavalry #4
+cav  cavalry #4 stopped at 4,0
+art  artillery #5 stopped at 4,0
+
+[0:636] Command : 6,-2 old threshold 400
+
+[0:635] Command : 
+[0:634] Command : 
+[0:633] Command : 
+[0:632] Command : 
+[0:631] Command : 
+[0:630] Command : 
+[0:629] Command : tk   tanker (#2) built in sector 5,-1
+That just cost you $120.00
+
+[0:628] Command : 30 civilians loaded onto tk   tanker (#2) at 5,-1
+1 ship loaded
+
+[0:627] Command : Enter telegram for 2
+undo last line with ~u, print with ~p, abort with ~q, end with .
+1024 left: 1006 left: 
+
+[0:627] Command : Declaration made (give 'em hell).
+Diplomatic relations with 8 downgraded to "At War".
+
+[0:625] Command : Congratulations!
+Diplomatic relations with 2 upgraded to "Allied".
+
+[0:623] Command :      1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+  -8                                           -8  
+  -7                                           -7  
+  -6                       . ? ? ? ? .         -6  
+  -5                      . . . . . . .        -5  
+  -4         - . . . . . . . . . . . . .       -4  
+  -3          - . . . o . . . . . . . . .      -3  
+  -2         . . o o c + t l . . o ? . ? .     -2  
+  -1          - . . b m j h = = ) o ? ? ? .    -1  
+   0         - - . j m m k . . . . ? ? ? ?     0   
+   1          - - . k m m j d . . . ? ? ?      1   
+   2         - - . i m k r w e ! . . ? ?       2   
+   3          - - . + + . p . . . . ? ?        3   
+   4           - - . . . . . . . . . .         4   
+   5                                           5   
+   6                                           6   
+   7                                           7   
+   8                                           8   
+     1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+
+[0:623] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -4,-2   k  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -2,-2   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,-2   c  100%     127 .. ..      769    0    0    0 100%  599        0   1
+   2,-2   +o 100%     127 .. ..      769    0    0    0 100%  599        0   1
+   4,-2   t  100%     127 .. ..      769    0    0    0 100%  359        0   1
+   6,-2   l  100%     127 .. ..      769    0    0    0 100%  299        0   1
+  -1,-1   b  100%     127 .. ..      769    0    0    0 100%  299        0   1
+   1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,-1   m  100%     127 .. ..      769    0    0    0 100%    1        0
+   5,-1   h  100%     127 .. ..      739    5    0    0 100%  326        0   1
+   7,-1   =  100%     127 .. ..       77    0    0    0 100%   59        0   1
+   9,-1   =  100%     127 .. ..       77    0    0    0 100%   37        0   1
+  11,-1   )* 100%     127 .. 0.   8  181   21    1    0 100%  114        0   1
+  -2,0    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
+   4,0    k  100%     127 .. 8.      769    0  716    0 100%    0        0   1
+  -1,1    k  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,1    m  100%     127 .. 5.      769    0    0    0 100%    0        0
+   5,1    j  100%     127 .. 5.      769    0    0    0 100%    0        0   1
+   7,1    d  100%     127 .. ..      769    0    0    0 100%  439        0   1
+  -2,2    i  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,2    m  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   4,2    r  100%     127 .. ..      769    0    0    0 100%  439        0   1
+   6,2    w  100%     127 .. ..     7301   51    0    0 100%  609        0   1
+   8,2    e  100%     127 .. ..      769    1    0    0 100%  599        0   1
+  10,2    !  100%     127 .. ..      769   15    0    0 100%  545        0   1
+  -1,3    o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,3    +  100%     127 .. ..      769    0    0    0 100%  599        0   1
+   5,3    p  100%     127 .. ..      769    0    0    0 100%  524        0   1
+33 sectors
+
+[0:623] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+   0 frg  frigate       13,1       100%   0  25   0   0  0  0  0  0 127    0
+   1 cs   cargo ship     5,-1      100% 300  25   0   0  0  0  0  1 127   30
+   2 tk   tanker         5,-1       20%  30   0   0   0  0  0  0  0   0   44
+3 ships
+
+[0:623] Command :    # unit type          x,y   a   eff mil frt  mu  fd tch retr xl ln carry
+   0 cav  cavalry       5,-1     100%  20   0  64   0  30  42%  0  0    1S
+   3 cav  cavalry       5,-1     100%   1   0  64   0  30  42%  0  0
+   4 cav  cavalry       4,0      100%   5   0  75   0  30  42%  0  0
+   5 art  artillery     4,0      100%   5   0 -18   0  37  42%  0  0
+4 units
+
+[0:623] Command : *: No plane(s)
+command failed
+
+[0:623] Command :      --------00000000001111111
+     8765432101234567890123456
+  -4 - . . . . . . . . . . .   -4  
+  -3  - . . . j . . . . . . .  -3  
+  -2 . . k j c + t l . . ? ? . -2  
+  -1  - . . b m m h = = ) ? ?  -1  
+   0 - - . j m m k . . . . ? ? 0   
+   1  - - . k m m j d . . . ?  1   
+   2 - - . i m m r w e ! . . ? 2   
+   3  - - . o + . p . . . . ?  3   
+   4   - - . . . . . . . . .   4   
+     --------00000000001111111
+     8765432101234567890123456
+
+[0:623] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+technological breakthroughs (11.13) produced in 4,-2
+a class of graduates (300.00) produced in 6,-2
+medical discoveries (7.42) produced in 4,2
+happy strollers (75.00) produced in 5,3
+ 75 happiness, 300 education produced
+total pop was 30149, yielding 12.47 hap, 33.54 edu
+7.2041 technology (4.4763 + 2.7278), 3.6891 research (3.6891 + 0.0000) produced
+Army delta $-858, Navy delta $-66, Air force delta $0
+money delta was $6225 for this update
+
+
+[0:623] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   1,-3   j 100%   599  505l 0.84 $0     599i            599i             505
+  -4,-2   k 100%   599  253h 0.84 $0     600i            600i             253
+  -2,-2   j 100%   599  505l 0.84 $0     599i            599i             505
+   2,-2   o  47%   474  188o 0.84 $0                                      188
+   4,-2   t 100%   599 11.12 0.74 $4500   15d  75o 150l   37d 185o 370l 27.44
+   6,-2   l 100%   599  400  1.00 $3600  400l            599l             599
+  -1,-1   b 100%   599   60b 1.00 $600   300d            600d             120
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   m  96%   599  575i 1.00 $0                                      575
+  -2,0    j 100%   599  505l 0.84 $0     599i            599i             505
+   0,0    m 100%   599  599i 1.00 $0                                      599
+   2,0    m 100%   998  998i 1.00 $0                                      998
+   4,0    k 100%  1093  462h 0.84 $0    1094i           1094i             462
+  -1,1    k 100%   599  252h 0.84 $0     598i            600i             253
+   1,1    m 100%   599  599i 1.00 $0                                      599
+   3,1    m 100%   599  599i 1.00 $0                                      599
+   5,1    j 100%   599  505l 0.84 $0     599i            599i             505
+   7,1    d 100%   599    7g 0.71 $300    10o  50l 100h   37o 185l 370h    26
+  -2,2    i 100%   599  141s 0.71 $600   400l 200h       400l 200h        141
+   0,2    m 100%   599  599i 1.00 $0                                      599
+   2,2    m  91%   599  545i 1.00 $0                                      545
+   4,2    r 100%   599  7.42 0.74 $900    10d  50o 100l   37d 185o 370l 27.44
+   8,2    e 100%   599   33m 1.00 $99     33c             33c             498
+  -1,3    o  52%   599  262o 0.84 $0                                      262
+   5,3    p 100%   599   75  1.00 $675    75l            599l             599
+25 sectors
+
+[0:623] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 14 completed successfully
+Player 02 Turn 14 starting
+
+
+       -=O=-
+You have three new telegrams waiting ...
+
+[0:561] Command : 
+[0:560] Command : 
+[0:559] Command : 
+[0:558] Command : highway at -6,-2 distributes to 1,-1. 
+highway -6,-2 now distributes to -4,-2 (cost 0.400)
+
+warehouse at -4,-2 distributes to 1,-1. 
+Distribution from and to warehouse -4,-2 terminated
+
+capital at 2,-2 distributes to 1,-1. 
+capital 2,-2 now distributes to -4,-2 (cost 2.000)
+
+highway at -7,-1 distributes to 1,-1. 
+highway -7,-1 now distributes to -4,-2 (cost 0.800)
+
+gold mine at -5,-1 distributes to 1,-1. 
+gold mine -5,-1 now distributes to -4,-2 (cost 0.400)
+
+oil field at -1,-1 distributes to 1,-1. 
+oil field -1,-1 now distributes to -4,-2 (cost 1.600)
+
+bank at 1,-1 has no dist sector. 
+bank 1,-1 now distributes to -4,-2 (cost 1.800)
+
+gold mine at 3,-1 distributes to 1,-1. 
+gold mine 3,-1 now distributes to -4,-2 (cost 2.000)
+
+gold mine at 5,-1 distributes to 1,-1. 
+gold mine 5,-1 now distributes to -4,-2 (cost 2.200)
+
+gold mine at 7,-1 distributes to 1,-1. 
+gold mine 7,-1 now distributes to -4,-2 (cost 2.522)
+
+gold mine at -6,0 distributes to 1,-1. 
+gold mine -6,0 now distributes to -4,-2 (cost 0.800)
+
+gold mine at -4,0 distributes to 1,-1. 
+gold mine -4,0 now distributes to -4,-2 (cost 0.800)
+
+gold mine at -2,0 distributes to 1,-1. 
+gold mine -2,0 now distributes to -4,-2 (cost 1.200)
+
+gold mine at 0,0 distributes to 1,-1. 
+gold mine 0,0 now distributes to -4,-2 (cost 1.600)
+
+gold mine at 2,0 distributes to 1,-1. 
+gold mine 2,0 now distributes to -4,-2 (cost 1.800)
+
+highway at 4,0 distributes to 1,-1. 
+highway 4,0 now distributes to -4,-2 (cost 2.000)
+
+highway at -7,1 distributes to 1,-1. 
+highway -7,1 now distributes to -4,-2 (cost 1.200)
+
+highway at -5,1 distributes to 1,-1. 
+highway -5,1 now distributes to -4,-2 (cost 1.200)
+
+gold mine at -3,1 distributes to 1,-1. 
+gold mine -3,1 now distributes to -4,-2 (cost 1.200)
+
+gold mine at -1,1 distributes to 1,-1. 
+gold mine -1,1 now distributes to -4,-2 (cost 1.600)
+
+gold mine at 1,1 distributes to 1,-1. 
+gold mine 1,1 now distributes to -4,-2 (cost 1.800)
+
+highway at 3,1 distributes to 1,-1. 
+highway 3,1 now distributes to -4,-2 (cost 2.000)
+
+gold mine at -4,2 distributes to 1,-1. 
+gold mine -4,2 now distributes to -4,-2 (cost 1.600)
+
+gold mine at -2,2 distributes to 1,-1. 
+gold mine -2,2 now distributes to -4,-2 (cost 1.600)
+
+gold mine at 0,2 distributes to 1,-1. 
+gold mine 0,2 now distributes to -4,-2 (cost 2.000)
+
+gold mine at 2,2 distributes to 1,-1. 
+gold mine 2,2 now distributes to -4,-2 (cost 2.200)
+
+highway at -3,3 distributes to 1,-1. 
+highway -3,3 now distributes to -4,-2 (cost 2.000)
+
+highway at -1,3 distributes to 1,-1. 
+highway -1,3 now distributes to -4,-2 (cost 2.000)
+
+highway at 1,3 distributes to 1,-1. 
+highway 1,3 now distributes to -4,-2 (cost 2.400)
+
+gold mine at 3,3 distributes to 1,-1. 
+gold mine 3,3 now distributes to -4,-2 (cost 2.600)
+
+
+[0:557] Command : 
+[0:556] Command : > > 
+[0:556] Command : Congratulations!
+Diplomatic relations with 1 upgraded to "Allied".
+
+[0:554] Command : Another cold war...
+Diplomatic relations with 8 downgraded to "Hostile".
+
+[0:552] Command : No announcements for you at the moment...
+
+[0:552] Command : Enter telegram for everybody
+undo last line with ~u, print with ~p, abort with ~q, end with .
+1024 left: 1012 left: 
+You have a new announcement waiting ...
+
+[0:552] Command : 
+Announcements since Thu Jan  1 00:00:00 1970
+
+> Announcement from 2, (#2)  dated Thu Jan  1 00:00:00 1970
+Hello World
+
+
+[0:552] Command : 1 is not logged on
+
+[0:552] Command :      --------00000000001
+     8765432101234567890
+  -5                     -5  
+  -4       - . . .       -4  
+  -3  . . . - . . .      -3  
+  -2 . + w . . c . . .   -2  
+  -1  + g . o g g g g .  -1  
+   0 . g g g c c + . .   0   
+   1  + + g g g + . .    1   
+   2 . . g g g g . .     2   
+   3    . + + + g .      3   
+   4     . . . . .       4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:552] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-2   +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+  -4,-2   w    0%      60 .. ..      230    0    0    0 100%    1        0   1
+   2,-2   c    0%      60 .. ..       50    0    0    0 100%    1        0   1
+  -7,-1   +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+  -5,-1   g    0%      60 .. 5.      769    0    0    0 100%    1        0   1
+  -1,-1   o    0%      60 .. ..      415    0    0    0 100%    1        0   1
+   1,-1   b  100%     127 .. ..        1    0    0    0 100%  420        0   1
+   3,-1   g  100%      60 .. ..      555    0    0    0 100%    0        0   1
+   5,-1   g   39%      60 .. ..      132    0    0    0 100%   40        0   1
+   7,-1   g    0%      60 .. ..        3    0    0    0 100%    1        0   1
+  -6,0    g    0%      60 .. ..        2    0    0    0 100%    1        0   1
+  -4,0    g    0%      60 .. ..        3    0    0    0 100%    1        0   1
+  -2,0    g    0%      60 .. ..        2    0    0    0 100%    1        0   1
+   0,0    gm 100%      92 .. 5.      769    0  538    0 100%  296        0
+   2,0    gm 100%     103 .. 5.      769    0  533    0 100%  291        0
+   4,0    +    0%      60 .. ..        3    0    0    0 100%    1        0   1
+  -7,1    +    0%      60 .. ..        2    0    0    0 100%    0        0   1
+  -5,1    +    0%      60 .. ..        3    0    0    0 100%    1        0   1
+  -3,1    g    0%      60 .. ..        2    0    0    0 100%    1        0
+  -1,1    g    0%      60 .. ..        3    0    0    0 100%    1        0
+   1,1    g    0%      60 .. ..        3    0    0    0 100%    1        0
+   3,1    +    0%      60 .. ..        2    0    0    0 100%    1        0   1
+  -4,2    g    0%      60 .. ..        2    0    0    0 100%    1        0   1
+  -2,2    g    0%      60 .. ..        3    0    0    0 100%    1        0
+   0,2    g    0%      60 .. ..        3    0    0    0 100%    1        0
+   2,2    g    0%      60 .. ..        3    0    0    0 100%    1        0   1
+  -3,3    +    0%      60 .. ..        3    0    0    0 100%    1        0   1
+  -1,3    +    0%      60 .. ..        2    0    0    0 100%    1        0   1
+   1,3    +    0%      60 .. ..        2    0    0    0 100%    1        0   1
+   3,3    g    0%      60 .. ..        2    0    0    0 100%    1        0   1
+30 sectors
+
+[0:552] Command :      --------00000000001
+     8765432101234567890
+  -5                     -5  
+  -4       - . . . .     -4  
+  -3  . . . - . . . .    -3  
+  -2 . + w . . c . . .   -2  
+  -1  + g . o b g g g .  -1  
+   0 . g g g g g + . .   0   
+   1  + + g g g + . .    1   
+   2 . . g g g g . .     2   
+   3    . + + + g .      3   
+   4     . . . . .       4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:552] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 3110, yielding 0.00 hap, 0.00 edu
+2.4830 technology (0.0000 + 2.4830), 1.8446 research (0.0000 + 1.8446) produced
+money delta was $508 for this update
+
+> Telegram from 1, (#1)  dated Thu Jan  1 00:00:00 1970
+Want an alliance?
+
+> BULLETIN from POGO, (#0)  dated Thu Jan  1 00:00:00 1970
+Country 1 (#1) has upgraded their relations with you to "Allied"!
+
+
+[0:552] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+  -5,-1   g  28%   499  140d 1.00 $0                                      140
+  -1,-1   o 100%   223  167o 0.75 $0                                      167
+   1,-1   b 100%     0    0b 1.00 $0       0d              0d               0
+   3,-1   g  25%   432  108d 1.00 $0                                      108
+   5,-1   g  38%    51   19d 1.00 $0                                       19
+   0,0    m 100%   845  845i 1.00 $0                                      845
+   2,0    m 100%   841  841i 1.00 $0                                      841
+7 sectors
+
+[0:552] Command : Bye-bye
+Exit: so long...
+Player 02 Turn 14 completed successfully
+Player 08 Turn 14 starting
+
+
+       -=O=-
+You have two new telegrams waiting ...
+You have a new announcement waiting ...
+
+[0:570] Command : -6,-4 threshold unchanged (left at 769)
+0,-4 threshold unchanged (left at 769)
+-5,-3 threshold unchanged (left at 769)
+-1,-3 threshold unchanged (left at 769)
+1,-3 threshold unchanged (left at 769)
+-4,-2 threshold unchanged (left at 769)
+-2,-2 threshold unchanged (left at 769)
+0,-2 threshold unchanged (left at 769)
+2,-2 threshold unchanged (left at 769)
+4,-2 threshold unchanged (left at 769)
+6,-2 threshold unchanged (left at 769)
+-3,-1 threshold unchanged (left at 769)
+-1,-1 threshold unchanged (left at 769)
+1,-1 threshold unchanged (left at 769)
+3,-1 threshold unchanged (left at 769)
+5,-1 threshold unchanged (left at 769)
+-2,0 threshold unchanged (left at 769)
+0,0 threshold unchanged (left at 769)
+2,0 threshold unchanged (left at 769)
+4,0 old threshold 400
+6,0 threshold unchanged (left at 769)
+8,0 threshold unchanged (left at 769)
+-3,1 threshold unchanged (left at 769)
+-1,1 threshold unchanged (left at 769)
+1,1 threshold unchanged (left at 769)
+
+[0:569] Command : 
+[0:568] Command : 
+[0:567] Command : -2,-2 old threshold 1
+0,-2 old threshold 1
+2,-2 old threshold 1
+
+[0:566] Command : 
+[0:565] Command : 
+[0:564] Command : 
+[0:563] Command : 
+[0:562] Command : Declaration made (give 'em hell).
+Diplomatic relations with 1 downgraded to "At War".
+
+[0:560] Command : Another cold war...
+Diplomatic relations with 2 downgraded to "Hostile".
+
+[0:558] Command : 
+Announcements since Thu Jan  1 00:00:00 1970
+
+> Announcement from 2, (#2)  dated Thu Jan  1 00:00:00 1970
+Hello World
+
+
+[0:558] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . . . . . .  -5  
+  -4 . o - . k . . . . - -4  
+  -3  ) o - g l . . . .  -3  
+  -2 . . g g g g j t . - -2  
+  -1  . . j m m m g c .  -1  
+   0 ? . . g m m b h i . 0   
+   1  . . g j g w . . .  1   
+   2 . . . . . . . . . . 2   
+   3  . . . . . . . . .  3   
+   4   . . - . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:558] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-4   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -4,-4   -    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   0,-4   k  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -5,-3   o    9%     127 .. ..      769    0    0    0 100%    4        0   1
+  -3,-3   -    6%     127 .. ..       10    0    0    0 100%    3        0   1
+  -1,-3   g    5%     127 .. ..      769    0    0    0 100%    3        0   1
+   1,-3   l  100%     127 .. ..      769    0    0    0 100%  299        0   1
+  -4,-2   g    9%     127 .. ..      769    0    0    0 100%    4        0   1
+  -2,-2   gm 100%     127 .. ..      769    0    0    0 100%    0        0
+   0,-2   gm 100%     127 .. ..      769    0    0    0 100%    1        0
+   2,-2   k  100%     127 .. ..      769    0    0    0 100%  497        0   1
+   4,-2   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   6,-2   t  100%     127 .. ..      769    0    0    0 100%  119        0   1
+  -3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,-1   m  100%     127 .. 5.      769    0   32    0 100%    0        0
+   1,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
+   3,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
+   5,-1   g    1%     127 .. ..      769    0    0    0 100%    1        0
+   7,-1   c   11%     127 .. ..       16    0    0    0 100%    5        0   1
+  -2,0    g    1%     127 .. ..      769    0    0    0 100%    1        0   1
+   0,0    m  100%     127 .. 5.      769   55  512    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769   55  512    0 100%    0        0
+   4,0    b  100%     127 .. ..      400    0    0    0 100%   12        0   1
+   6,0    h  100%     127 .. ..      769    0    0    0 100%  599        0   1
+   8,0    i  100%     127 .. ..      769    0    0    0 100%  599        0   1
+  -3,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,1    g    9%     127 .. ..      769    0    0    0 100%    4        0   1
+   3,1    w  100%     111 .. ..      157    0    0    0 100%  263        0   1
+29 sectors
+
+[0:558] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . . . . . .  -5  
+  -4 . o - . k . . . . - -4  
+  -3  ? o - g l . . . .  -3  
+  -2 . . g g g k j t . - -2  
+  -1  . . j m m m g c .  -1  
+   0 ? . . g m m b h i . 0   
+   1  . . j j g w . . .  1   
+   2 . . . . . . . . . . 2   
+   3  . . . . . . . . .  3   
+   4   . . - . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:558] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+a class of graduates (300.00) produced in 1,-3
+technological breakthroughs (21.94) produced in 6,-2
+  0 happiness, 300 education produced
+total pop was 14649, yielding 0.00 hap, 57.09 edu
+7.6937 technology (5.4556 + 2.2381), 1.8446 research (0.0000 + 1.8446) produced
+money delta was $-4960 for this update
+
+> BULLETIN from POGO, (#0)  dated Thu Jan  1 00:00:00 1970
+Country 1 (#1) has downgraded their relations with you to "At War"!
+Country 2 (#2) has downgraded their relations with you to "Hostile"!
+
+
+[0:558] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+  -6,-4   o   3%   599   14o 0.80 $0                                       14
+   0,-4   k 100%   599  239h 0.80 $0     600i            600i             239
+  -5,-3   o  72%   508  291o 0.80 $0                                      291
+  -1,-3   g  23%   504  115d 1.00 $0                                      115
+   1,-3   l 100%   599  300  1.00 $2700  300l            599l             599
+  -4,-2   g  28%   508  140d 1.00 $0                                      140
+  -2,-2   m  96%   474  455i 1.00 $0                                      455
+   0,-2   m 100%   474  474i 1.00 $0                                      474
+   2,-2   k 100%   599  239h 0.80 $0     600i            600i             239
+   4,-2   j 100%   599  477l 0.80 $0     599i            599i             477
+   6,-2   t 100%   599 23.05 0.77 $9000   30d 150o 300l   37d 185o 370l 28.42
+  -3,-1   j 100%   599  477l 0.80 $0     599i            599i             477
+  -1,-1   m 100%   621  621i 1.00 $0                                      621
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   m 100%   599  599i 1.00 $0                                      599
+   5,-1   g  56%   500  280d 1.00 $0                                      280
+  -2,0    g  51%   500  255d 1.00 $0                                      255
+   0,0    m 100%   965  965i 1.00 $0                                      965
+   2,0    m 100%   965  965i 1.00 $0                                      965
+   4,0    b 100%   312   60b 1.00 $600   300d            310d              62
+   8,0    i 100%   599   95s 0.48 $600   400l 200h       400l 200h         95
+  -3,1    j 100%   599  477l 0.80 $0     599i            599i             477
+  -1,1    j 100%   599  477l 0.80 $0     599i            599i             477
+   1,1    g  37%   508  185d 1.00 $0                                      185
+24 sectors
+
+[0:558] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 14 completed successfully
+Update Turn 15 starting
+
+
+       -=O=-
+You have a new announcement waiting ...
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  33  100%  30K 174  344   15    0   10K 1.2K 885    0    3    4   39K
+   500.12
+        8  29   71%  19K 110    0    0    0   13K 2.2K 359    0    0    0   24K
+   201.80
+        2  30   15% 3.7K   0    0    0    0    0  1.1K   0    0    0    0   34K
+    39.34
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   35K
+    30.60
+        3   3  100% 3.0K 110    0    0    0    0  366    0    0    0    0   35K
+    30.35
+        5   3  100% 3.0K 110    0    0    0    0  365    0    0    0    0   35K
+    30.35
+        7   3  100% 3.0K 110    0    0    0    0  342    0    0    0    0   35K
+    30.17
+        4   3  100% 3.0K 110    0    0    0    0  307    0    0    0    0   35K
+    29.89
+       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   35K
+    29.29
+        9   3  100% 3.0K 110    0    0    0    0   29    0    0    0    0   35K
+    27.69
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide 113   70%  74K 1.1K 344   15    0   23K 6.6K 1.2K   0    3    4  344K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                 44.02       10.94       33.70       11.43     5,-15 
+ 2     2                 19.79        5.47        0.00        0.00    18,8   
+ 3     3                 19.79        5.47        0.00        0.00    -4,10  
+ 4     4                 19.79        5.47        0.00        0.00   -15,1   
+ 5     5                 19.79        5.47        0.00        0.00   -30,8   
+ 6     6                 19.79        5.47        0.00        0.00     2,-2  
+ 7     7                 19.79        5.47        0.00        0.00    24,0   
+ 8     8                 29.10        5.47       38.15        0.00    30,-12 
+ 9     9                 19.79        5.47        0.00        0.00   -26,-6  
+ 10    10                19.79        5.47        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    1,-15  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    3,-15  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-15  c  100%     127 .. ..      769    0    0    0 100%  599    0   1
+  1    7,-15  +o 100%     127 .. ..      769    0    0    0 100%  599    0   1
+  1    9,-15  t  100%     127 .. ..      769    0    0    0 100%  359    0   1
+  1   11,-15  l  100%     127 .. ..      769    0    0    0 100%  299    0   1
+  8   17,-15  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   19,-15  -    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  8   23,-15  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    4,-14  b  100%     127 .. ..      769    0    0    0 100%  299    0   1
+  1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-14  m  100%     127 .. ..      769    0    0    0 100%    1    0
+  1   10,-14  h  100%     127 .. ..      739    5    0    0 100%  326    0   1
+  1   12,-14  =  100%     127 .. ..       77    0    0    0 100%   59    0   1
+  1   14,-14  =  100%     127 .. ..       77    0    0    0 100%   37    0   1
+  1   16,-14  )* 100%     127 .. 0.   8  181   21    1    0 100%  114    0   1
+  8   18,-14  o    9%     127 .. ..      769    0    0    0 100%    4    0   1
+  8   20,-14  -    6%     127 .. ..       10    0    0    0 100%    3    0   1
+  8   22,-14  g    5%     127 .. ..      769    0    0    0 100%    3    0   1
+  8   24,-14  l  100%     127 .. ..      769    0    0    0 100%  299    0   1
+  1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-13  m  100%     127 .. 5.      769    0  579    0 100%    0    0
+  1    9,-13  k  100%     127 .. 8.      769    0  716    0 100%    0    0   1
+  8   19,-13  g    9%     127 .. ..      769    0    0    0 100%    4    0   1
+  8   21,-13  gm 100%     127 .. ..      769    0    0    0 100%    0    0
+  8   23,-13  gm 100%     127 .. ..      769    0    0    0 100%    1    0
+  8   25,-13  k  100%     127 .. ..      769    0    0    0 100%  497    0   1
+  8   27,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   29,-13  t  100%     127 .. ..      769    0    0    0 100%  119    0   1
+  1    4,-12  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
+  1   10,-12  j  100%     127 .. 5.      769    0    0    0 100%    0    0   1
+  1   12,-12  d  100%     127 .. ..      769    0    0    0 100%  439    0   1
+  8   20,-12  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   22,-12  m  100%     127 .. 5.      769    0   32    0 100%    0    0
+  8   24,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
+  8   26,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
+  8   28,-12  g    1%     127 .. ..      769    0    0    0 100%    1    0
+  8   30,-12  c   11%     127 .. ..       16    0    0    0 100%    5    0   1
+ 10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  1    3,-11  i  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    9,-11  r  100%     127 .. ..      769    0    0    0 100%  439    0   1
+  1   11,-11  w  100%     127 .. ..     7301   51    0    0 100%  609    0   1
+  1   13,-11  e  100%     127 .. ..      769    1    0    0 100%  599    0   1
+  1   15,-11  !  100%     127 .. ..      769   15    0    0 100%  545    0   1
+  8   21,-11  g    1%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   23,-11  m  100%     127 .. 5.      769   55  512    0 100%    0    0
+  8   25,-11  m  100%     127 .. 5.      769   55  512    0 100%    0    0
+  8   27,-11  b  100%     127 .. ..      400    0    0    0 100%   12    0   1
+  8   29,-11  h  100%     127 .. ..      769    0    0    0 100%  599    0   1
+  8   31,-11  i  100%     127 .. ..      769    0    0    0 100%  599    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  539    0 100%  936    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  527    0 100%  929    0   1
+  1    4,-10  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    6,-10  +  100%     127 .. ..      769    0    0    0 100%  599    0   1
+  1   10,-10  p  100%     127 .. ..      769    0    0    0 100%  524    0   1
+  8   20,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   22,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   24,-10  g    9%     127 .. ..      769    0    0    0 100%    4    0   1
+  8   26,-10  w  100%     111 .. ..      157    0    0    0 100%  263    0   1
+  9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  535    0 100%  933    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  524    0 100%  926    0
+  6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  6    2,-2   c  100%     127 .. ..     1000   55  523    0 100%  926    0
+  6    4,-2   c  100%     127 .. ..     1000   55  530    0 100%  930    0
+  7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  7   24,0    c  100%     127 .. ..     1000   55  523    0 100%  926    0
+  7   26,0    c  100%     127 .. ..     1000   55  533    0 100%  933    0
+  4  -15,1    c  100%     127 .. ..     1000   55  532    0 100%  932    0
+  4  -13,1    c  100%     127 .. ..     1000   55  520    0 100%  924    0
+  5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  5  -30,8    c  100%     127 .. ..     1000   55  527    0 100%  929    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  534    0 100%  933    0
+  2   10,8    +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  2   12,8    w    0%      60 .. ..      230    0    0    0 100%    1    0   1
+  2   18,8    c    0%      60 .. ..       50    0    0    0 100%    1    0   1
+  3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  2    9,9    +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  2   11,9    g    0%      60 .. 5.      769    0    0    0 100%    1    0   1
+  2   15,9    o    0%      60 .. ..      415    0    0    0 100%    1    0   1
+  2   17,9    b  100%     127 .. ..        1    0    0    0 100%  420    0   1
+  2   19,9    g  100%      60 .. ..      555    0    0    0 100%    0    0   1
+  2   21,9    g   39%      60 .. ..      132    0    0    0 100%   40    0   1
+  2   23,9    g    0%      60 .. ..        3    0    0    0 100%    1    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  521    0 100%  925    0
+  3   -2,10   c  100%     127 .. ..     1000   55  533    0 100%  933    0
+  2   10,10   g    0%      60 .. ..        2    0    0    0 100%    1    0   1
+  2   12,10   g    0%      60 .. ..        3    0    0    0 100%    1    0   1
+  2   14,10   g    0%      60 .. ..        2    0    0    0 100%    1    0   1
+  2   16,10   gm 100%      92 .. 5.      769    0  538    0 100%  296    0
+  2   18,10   gm 100%     103 .. 5.      769    0  533    0 100%  291    0
+  2   20,10   +    0%      60 .. ..        3    0    0    0 100%    1    0   1
+  2    9,11   +    0%      60 .. ..        2    0    0    0 100%    0    0   1
+  2   11,11   +    0%      60 .. ..        3    0    0    0 100%    1    0   1
+  2   13,11   g    0%      60 .. ..        2    0    0    0 100%    1    0
+  2   15,11   g    0%      60 .. ..        3    0    0    0 100%    1    0
+  2   17,11   g    0%      60 .. ..        3    0    0    0 100%    1    0
+  2   19,11   +    0%      60 .. ..        2    0    0    0 100%    1    0   1
+  2   12,12   g    0%      60 .. ..        2    0    0    0 100%    1    0   1
+  2   14,12   g    0%      60 .. ..        3    0    0    0 100%    1    0
+  2   16,12   g    0%      60 .. ..        3    0    0    0 100%    1    0
+  2   18,12   g    0%      60 .. ..        3    0    0    0 100%    1    0   1
+  2   13,13   +    0%      60 .. ..        3    0    0    0 100%    1    0   1
+  2   15,13   +    0%      60 .. ..        2    0    0    0 100%    1    0   1
+  2   17,13   +    0%      60 .. ..        2    0    0    0 100%    1    0   1
+  2   19,13   g    0%      60 .. ..        2    0    0    0 100%    1    0   1
+113 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  j .......... ...9...0..   0   0    0  999    0   0    1    1    0   0
+  1   1,-15  k .......... ...9....0.   0   0    0  999    0   0    1    0    1   0
+  1   3,-15  j .......... ...9...0..   0   0    0  999    0   0    1    1    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-15  t .......... ....0.01..   0   0    0    0   15   0   75  150    0   0
+  1  11,-15  l .......... .......4..   0   0    0    0    0   0    0  400    0   0
+  8  17,-15  o .......... ......0.1.   0   0    0    0    0   0    1    0    0   0
+  8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-15  k .......... ...9....0.   0   0    0  999    0   0    0    0    1   0
+  1   4,-14  b .......... ....3.....   0   0    0    0  300 329    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  m .......... ...0......   0   0    0    1    0   0    0    1    0   0
+  1  10,-14  h .......... .......22.   0   0    0    1    1   0    1  188  192   0
+  1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  14,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  16,-14  ) .......... ..2....22.   0   0    0    0    0   0    0    0    0   0
+  8  18,-14  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  8  20,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  22,-14  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  24,-14  l .......... .......3..   0   0    0    0    1   0    0  300    0   0
+  1   3,-13  j .......... .......0..   0   0    0  599    0   0    0    1    0   0
+  1   5,-13  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-13  k .......... ...a....0.   0   0    0 1200    0   0    0    0    1   0
+  8  19,-13  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  21,-13  g .......... ...0......   0   0    0    0    1   0    0    0    0   0
+  8  23,-13  g .......... ...0......   0   0    0    0    1   0    0    0    0   0
+  8  25,-13  k .......... ...9....0.   0   0    0  999    1   0    0    0    1   0
+  8  27,-13  j .......... ...9......   0   0    0  999    0   0    0  380    0   0
+  8  29,-13  t .......... ....0.13..   0   0    0    0   30   0  150  300    0   0
+  1   4,-12  k .......... ........0.   0   0    0  599    0   0    0    0    1   0
+  1   6,-12  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  j .......... .......0..   0   0    0 1198    0   0    0    1    0   0
+  1  12,-12  d .......... .0....021.   0   1    0    0    0   0   20  200  100   0
+  8  20,-12  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  8  22,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  24,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  28,-12  g .......... ....0.001.   0   0    0    0    1   0    0    0    0   0
+  8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+  1   3,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  300   0
+  1   5,-11  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  m .......... ...0......   0   0    0    1    0   0    0    0    1   0
+  1   9,-11  r .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
+  1  11,-11  w .......... .......... 143   0    0 3658  897   0  735 2013 2439   0
+  1  13,-11  e .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  ! .......... 20.....22. 160   4    0    0    0   0    0  200  200   0
+  8  21,-11  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  23,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  25,-11  m .......... ...0......   0   0    0  799    0   0    0    0    0   0
+  8  27,-11  b .......... ....3.....   0   0    0    0  300 235    0    0    0   0
+  8  29,-11  h .......... .......22.   0   0    0    0    1   0    0  200  200   0
+  8  31,-11  i .......... 0......63.   0   0    0    0    0   0    0  600  205   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  p .......... .......0..   0   0    0    0    0   0    0   75    0   0
+  8  20,-10  j .......... ...9...0..   0   0    0  999    1   0    0    1    0   0
+  8  22,-10  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  8  24,-10  g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 6228 1850   0  207   56    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   29   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  342   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  307   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  365   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  10,8    + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  12,8    w .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  18,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  366   0    0    0    0   0
+  2   9,9    + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  11,9    g .......... ...90.....   0   0    0    0    1   0    0    0    0   0
+  2  15,9    o .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  2  17,9    b .......... ....3.....   0   0    0    0  986  11    0    0    0   0
+  2  19,9    g .......... ....0.....   0   0    0    0  107   0    0    0    0   0
+  2  21,9    g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  23,9    g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  10,10   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  12,10   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  14,10   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  16,10   g .......... ...00.....   0   0    0    0    1   0    0    0    0   0
+  2  18,10   g .......... ...00.....   0   0    0    0    1   0    0    0    0   0
+  2  20,10   + .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  2   9,11   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  11,11   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  13,11   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  15,11   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  17,11   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  19,11   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  12,12   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  14,12   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  16,12   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  18,12   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  13,13   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  15,13   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  17,13   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  19,13   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+113 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  j  100%    0    0   82   1    0
+  1    1,-15  k  100%    6    0   67   0    0
+  1    3,-15  j  100%   11    0   61   0    0
+  1    5,-15  c  100%   28    5   37   0    0
+  1    7,-15  +o 100%    0    0   76  47    0
+  1    9,-15  t  100%   39   14   21   0    0
+  1   11,-15  l  100%    0    0   91  72    0
+  8   17,-15  o  100%    0    0  100   3    0
+  8   19,-15  -    0%    0    0  100 100    0
+  8   23,-15  k  100%   11    0   61  21    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  m  100%   96   60    0   0   77
+  1   10,-14  h  100%   45   19   13   0    0
+  1   12,-14  =  100%    0    0   45  11    0
+  1   14,-14  =  100%    0    0   63  46    0
+  1   16,-14  )* 100%    0    0  100  98    0
+  8   18,-14  o    9%    0    0   91  72    0
+  8   20,-14  -    6%    0    0   82  58    0
+  8   22,-14  g    5%   50   23    6   0    0
+  8   24,-14  l  100%   45    1   13   0    0
+  1    3,-13  j  100%   23    1   43   0    0
+  1    5,-13  m  100%  100    0  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  8   19,-13  g    9%   56   28    0   0    5
+  8   21,-13  gm 100%   96    0    0   0   77
+  8   23,-13  gm 100%  100    0    0   0   88
+  8   25,-13  k  100%   63   33    0   0   17
+  8   27,-13  j  100%    0    0   76  47    0
+  8   29,-13  t  100%   28    0   37   0    0
+  1    4,-12  k  100%   74   42    0   0   37
+  1    6,-12  m  100%  100    0    0   0  100
+  1    8,-12  m  100%  100    0    0   0   88
+  1   10,-12  j  100%   50    0    6   0    0
+  1   12,-12  d  100%   63    0    0   0   17
+  8   20,-12  j  100%   74    0    0   0   37
+  8   22,-12  m  100%  100    0    0   0   97
+  8   24,-12  m  100%  100    0    0   0  100
+  8   26,-12  m  100%  100    0    0   0  100
+  8   28,-12  g    1%   91   56    0   0   68
+  8   30,-12  c   11%   23    1   43   0    0
+ 10  -11,-11  g  100%   78    0    0   0   45
+  1    3,-11  i  100%    0    0  100   2    0
+  1    5,-11  m  100%  100    0    0   0  100
+  1    7,-11  m  100%   91    0    0   0   68
+  1    9,-11  r  100%   85    0    0   0   57
+  1   11,-11  w  100%   78    0    0   0   45
+  1   13,-11  e  100%   67    0    0   0   25
+  1   15,-11  !  100%   56    1    0   0    5
+  8   21,-11  g    1%   85   51    0   0   57
+  8   23,-11  m  100%  100    0  100 100  100
+  8   25,-11  m  100%  100    0  100 100  100
+  8   27,-11  b  100%   39    3   21   0    0
+  8   29,-11  h  100%   34    0   28   0    0
+  8   31,-11  i  100%    0    0  100 100    0
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  o  100%    0    0  100  52    0
+  1    6,-10  +  100%    0    0  100 100    0
+  1   10,-10  p  100%    0    0  100  98    0
+  8   20,-10  j  100%   78    0    0   0   45
+  8   22,-10  j  100%    6    0   67  32    0
+  8   24,-10  g    9%   67   37    0   0   25
+  8   26,-10  w  100%   17    0   52   7    0
+  9  -25,-7   g  100%   28    0   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100    0    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100    0    0   0   97
+  4  -14,0    g  100%   96    0    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100    0    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  2   10,8    +    0%    0    0  100  87    0
+  2   12,8    w    0%   17    0   52   7    0
+  2   18,8    c    0%   23    1   43   0    0
+  3   -3,9    g  100%  100    0    0   0  100
+  2    9,9    +    0%    6    0   67  32    0
+  2   11,9    g    0%   56   28    0   0    5
+  2   15,9    o    0%    0    0  100 100    0
+  2   17,9    b  100%   34    0   28   0    0
+  2   19,9    g  100%   78   25    0   0   45
+  2   21,9    g   39%   74   42    0   0   37
+  2   23,9    g    0%   39   14   21   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   10,10   g    0%   45   19   13   0    0
+  2   12,10   g    0%   63   33    0   0   17
+  2   14,10   g    0%   91   56    0   0   68
+  2   16,10   gm 100%  100    0  100 100  100
+  2   18,10   gm 100%  100    0  100 100  100
+  2   20,10   +    0%    0    0  100 100    0
+  2    9,11   +    0%    0    0   82  58    0
+  2   11,11   +    0%   11    0   61  21    0
+  2   13,11   g    0%  100   69    0   0   97
+  2   15,11   g    0%  100   74    0   0  100
+  2   17,11   g    0%  100   80    0   0  100
+  2   19,11   +    0%    0    0  100  98    0
+  2   12,12   g    0%   67   37    0   0   25
+  2   14,12   g    0%  100   65    0   0   88
+  2   16,12   g    0%   96   60    0   0   77
+  2   18,12   g    0%   85   51    0   0   57
+  2   13,13   +    0%    0    0   91  72    0
+  2   15,13   +    0%   28    5   37   0    0
+  2   17,13   +    0%    0    0   76  47    0
+  2   19,13   g    0%   50   23    6   0    0
+113 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 15 completed successfully
+Player 01 Turn 15 starting
+
+
+       -=O=-
+You have two new telegrams waiting ...
+You have a new announcement waiting ...
+
+[0:640] Command : Sector 11,-1 is not 60% efficient.
+Sector 11,-1 is not 60% efficient.
+Sector 11,-1 is not 60% efficient.
+
+[0:639] Command : 
+[0:638] Command : 11,-1 threshold unchanged (left at 200)
+
+[0:637] Command : 
+[0:636] Command : 
+[0:635] Command : 
+[0:634] Command : 
+[0:633] Command : -1,-1 old threshold 300
+
+[0:632] Command : 1,-3 old threshold 769
+-4,-2 old threshold 769
+-2,-2 old threshold 769
+0,-2 old threshold 769
+2,-2 old threshold 769
+4,-2 old threshold 769
+6,-2 old threshold 769
+-1,-1 old threshold 769
+1,-1 old threshold 769
+3,-1 old threshold 769
+5,-1 old threshold 769
+7,-1 old threshold 77
+9,-1 old threshold 77
+11,-1 old threshold 769
+-2,0 old threshold 769
+0,0 old threshold 769
+2,0 old threshold 769
+4,0 old threshold 769
+-1,1 old threshold 769
+1,1 old threshold 769
+3,1 old threshold 769
+5,1 old threshold 769
+7,1 old threshold 769
+-2,2 old threshold 769
+0,2 old threshold 769
+2,2 old threshold 769
+4,2 old threshold 769
+6,2 old threshold 769
+8,2 old threshold 769
+10,2 old threshold 769
+-1,3 old threshold 769
+1,3 old threshold 769
+5,3 old threshold 769
+
+[0:631] Command : Leader is cav  cavalry #4
+cav  cavalry #4 stopped at 11,-1
+art  artillery #5 stopped at 11,-1
+
+[0:630] Command : od   oil derrick (#3) built in sector 5,-1
+That just cost you $300.00
+
+[0:629] Command : 200 civilians loaded onto od   oil derrick (#3) at 5,-1
+1 ship loaded
+
+[0:628] Command : ft   fishing trawler (#4) built in sector 5,-1
+
+[0:627] Command : 200 civilians loaded onto ft   fishing trawler (#4) at 5,-1
+1 ship loaded
+
+[0:626] Command :      1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+  -8                                           -8  
+  -7                                           -7  
+  -6                       . ? ? ? ? .         -6  
+  -5                      . . . . . . .        -5  
+  -4         - . . . . . . . . . . . . .       -4  
+  -3          - . . . j . . . . . . . . .      -3  
+  -2         . . k j c + t l . . o ? . ? .     -2  
+  -1          - . . b m m h = = ) o ? ? ? .    -1  
+   0         - - . j m m k . . . . ? ? ? ?     0   
+   1          - - . k m m j d . . . ? ? ?      1   
+   2         - - . i m m r w e ! . . ? ?       2   
+   3          - - . o + . p . . . . ? ?        3   
+   4           - - . . . . . . . . . .         4   
+   5                                           5   
+   6                                           6   
+   7                                           7   
+   8                                           8   
+     1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+
+[0:626] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -4,-2   k  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -2,-2   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,-2   c  100%     127 .. ..      769    0    0    0 100%  599        0   1
+   2,-2   o% 100%     127 .. ..      769    0    0    0 100%    2        0   1
+   4,-2   t  100%     127 .. ..      769    0    0    0 100%  359        0   1
+   6,-2   l  100%     127 .. ..      769    0    0    0 100%  199        0   1
+  -1,-1   b  100%     127 .. ..      769    0    0    0 100%  299        0   1
+   1,-1   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,-1   m  100%     127 .. ..      769    0    0    0 100%    1        0
+   5,-1   h  100%     127 .. ..      369    5    0    0 100%  402        0   1
+   7,-1   =  100%     127 .. ..       77    0    0    0 100%   59        0   1
+   9,-1   =  100%     127 .. ..       77    0    0    0 100%   59        0   1
+  11,-1   *   48%     127 .. 0.      769   21    1    0 100%   74        0   1
+  -2,0    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,0    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
+   4,0    k  100%     127 .. 8.      769    0  869    0 100%    1        0   1
+  -1,1    k  100%     127 .. ..      769    0    0    0 100%    1        0   1
+   1,1    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   3,1    m  100%     127 .. 5.      769    0   42    0 100%    0        0
+   5,1    j  100%     127 .. 5.      769    0    0    0 100%    0        0   1
+   7,1    d  100%     127 .. ..      769    0    0    0 100%  439        0   1
+  -2,2    i  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,2    m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,2    m  100%     127 .. ..      769    0    0    0 100%    1        0   1
+   4,2    r  100%     127 .. ..      769    0    0    0 100%  439        0   1
+   6,2    w  100%     127 .. ..     7127   74    0    0 100%  612        0   1
+   8,2    e  100%     127 .. ..      769    1    0    0 100%  599        0   1
+  10,2    !  100%     127 .. ..      769   25    0    0 100%  603        0   1
+  -1,3    o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,3    +  100%     127 .. ..      769    0    0    0 100%  599        0   1
+   5,3    p  100%     127 .. ..      769    0    0    0 100%  524        0   1
+33 sectors
+
+[0:626] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+   0 frg  frigate       13,1       100%   0  25   0   0  0  0  0  0 127    0
+   1 cs   cargo ship     5,-1      100% 300  25   0   0  0  0  0  1 127   30
+   2 tk   tanker         5,-1      100%  30   0   0   0  0  0  0  0  90   44
+   3 od   oil derrick    5,-1       20% 200   0   0   0  0  0  0  0   0   50
+   4 ft   fishing tra    5,-1       20% 200   0   0   0  0  0  0  0   0   50
+5 ships
+
+[0:626] Command :    # unit type          x,y   a   eff mil frt  mu  fd tch retr xl ln carry
+   0 cav  cavalry       5,-1     100%  20   0 124   0  30  42%  0  0    1S
+   3 cav  cavalry       5,-1     100%   1   0 124   0  30  42%  0  0
+   4 cav  cavalry      11,-1     100%   5   0  96   0  30  42%  0  0
+   5 art  artillery    11,-1     100%   5   0 -11   0  37  42%  0  0
+4 units
+
+[0:626] Command : *: No plane(s)
+command failed
+
+[0:626] Command :      --------00000000001111111
+     8765432101234567890123456
+  -4 - . . . . . . . . . .     -4  
+  -3  - . . . j . . . . . .    -3  
+  -2 . . k j c o t l . . ? ?   -2  
+  -1  - . . b m m h = = * ? ?  -1  
+   0 - - . j m m k . . . . ?   0   
+   1  - - . k m m j d . . . ?  1   
+   2 - - . i m m r w e ! . . ? 2   
+   3  - - . o + . p . . . . ?  3   
+   4   - - . . . . . . . . .   4   
+     --------00000000001111111
+     8765432101234567890123456
+
+[0:626] Command : 
+> BULLETIN from POGO, (#0)  dated Thu Jan  1 00:00:00 1970
+Country 2 (#2) has upgraded their relations with you to "Allied"!
+Country 8 (#8) has downgraded their relations with you to "At War"!
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+Sector 11,-1 is now fully yours
+technological breakthroughs (11.12) produced in 4,-2
+a class of graduates (400.00) produced in 6,-2
+medical discoveries (7.42) produced in 4,2
+happy strollers (75.00) produced in 5,3
+ 75 happiness, 400 education produced
+total pop was 30237, yielding 12.45 hap, 41.18 edu
+7.2389 technology (4.4756 + 2.7632), 3.6885 research (3.6885 + 0.0000) produced
+Army delta $-138, Navy delta $-582, Air force delta $0
+money delta was $6875 for this update
+
+
+[0:626] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   1,-3   j 100%   599  515l 0.86 $0     599i            599i             515
+  -4,-2   k 100%   599  258h 0.86 $0     600i            600i             258
+  -2,-2   j 100%   599  515l 0.86 $0     599i            599i             515
+   2,-2   % 100%   474  999p 7.56 $132   132o            132o             999
+   4,-2   t 100%   599 11.29 0.75 $4500   15d  75o 150l   37d 185o 370l 27.86
+   6,-2   l 100%   599  450  1.00 $4050  450l            599l             599
+  -1,-1   b 100%   599   60b 1.00 $600   300d            600d             120
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   m  96%   599  575i 1.00 $0                                      575
+  -2,0    j 100%   599  515l 0.86 $0     599i            599i             515
+   0,0    m 100%   599  599i 1.00 $0                                      599
+   2,0    m 100%   998  998i 1.00 $0                                      998
+   4,0    k 100%  1198  515h 0.86 $0    1198i           1198i             515
+  -1,1    k 100%   599  258h 0.86 $0     600i            600i             258
+   1,1    m 100%   599  599i 1.00 $0                                      599
+   3,1    m 100%   628  628i 1.00 $0                                      628
+   5,1    j 100%   599  515l 0.86 $0     599i            599i             515
+   7,1    d 100%   599    8g 0.76 $300    10o  50l 100h   37o 185l 370h    28
+  -2,2    i 100%   599  151s 0.76 $600   400l 200h       400l 200h        151
+   0,2    m 100%   599  599i 1.00 $0                                      599
+   2,2    m  91%   599  545i 1.00 $0                                      545
+   4,2    r 100%   599  7.53 0.75 $900    10d  50o 100l   37d 185o 370l 27.86
+   8,2    e 100%   599   33m 1.00 $99     33c             33c             498
+  -1,3    o  21%   599  108o 0.86 $0                                      108
+   5,3    p 100%   599   75  1.00 $675    75l            599l             599
+25 sectors
+
+[0:626] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 15 completed successfully
+Player 02 Turn 15 starting
+
+
+       -=O=-
+You have two new telegrams waiting ...
+
+[0:620] Command : 
+[0:619] Command : 
+[0:618] Command : 
+[0:617] Command : 5,-1 old threshold 600
+
+[0:616] Command : 
+[0:615] Command : 7,-1 old threshold 769
+
+[0:614] Command :      --------00000000001
+     8765432101234567890
+  -5                     -5  
+  -4       - . . . .     -4  
+  -3  . . . - . . . .    -3  
+  -2 . + w . . c . . .   -2  
+  -1  + g . o b g g g .  -1  
+   0 . g g g g g + . .   0   
+   1  + + g g g + . .    1   
+   2 . . g g g g . .     2   
+   3    . + + + g .      3   
+   4     . . . . .       4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:614] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-2   +    0%     120 .. ..        3    0    0    0 100%    1        0   1
+  -4,-2   w   89%      96 .. ..        1    0    0    0 100%   90        0   1
+   2,-2   c   19%     120 .. ..       50    0    0    0 100%   20        0   1
+  -7,-1   +    0%     120 .. ..        3    0    0    0 100%    1        0   1
+  -5,-1   gj 100%     119 .. 5.      769    0   73    0 100%    3        0   1
+  -1,-1   o  100%     118 .. ..      769    0    0    0 100%    0        0   1
+   1,-1   b  100%     127 .. ..      385    0    0    0 100%    0        0   1
+   3,-1   g  100%      97 .. ..      300    0    0    0 100%    0        0   1
+   5,-1   g   90%     119 .. ..      600    0    0    0 100%    0        0   1
+   7,-1   g    0%     120 .. ..      389    0    0    0 100%    1        0   1
+  -6,0    g    0%     120 .. ..        2    0    0    0 100%    1        0   1
+  -4,0    g    0%     120 .. ..        4    0    0    0 100%    1        0   1
+  -2,0    g    0%     120 .. ..        2    0    0    0 100%    1        0   1
+   0,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
+   4,0    +    0%     120 .. ..        4    0    0    0 100%    1        0   1
+  -7,1    +    0%     120 .. ..        2    0    0    0 100%    1        0   1
+  -5,1    +    0%     120 .. ..        4    0    0    0 100%    1        0   1
+  -3,1    g    0%     120 .. ..        3    0    0    0 100%    1        0
+  -1,1    g    0%     120 .. ..        4    0    0    0 100%    1        0
+   1,1    g    0%     120 .. ..        4    0    0    0 100%    1        0
+   3,1    +    0%     120 .. ..        2    0    0    0 100%    1        0   1
+  -4,2    g    0%     120 .. ..        3    0    0    0 100%    1        0   1
+  -2,2    g    0%     120 .. ..        3    0    0    0 100%    1        0
+   0,2    g    0%     120 .. ..        3    0    0    0 100%    1        0
+   2,2    g    0%     120 .. ..        4    0    0    0 100%    1        0   1
+  -3,3    +    0%     120 .. ..        4    0    0    0 100%    1        0   1
+  -1,3    +    0%     120 .. ..        2    0    0    0 100%    1        0   1
+   1,3    +    0%     120 .. ..        3    0    0    0 100%    1        0   1
+   3,3    g    0%     120 .. ..        2    0    0    0 100%    1        0   1
+30 sectors
+
+[0:614] Command :      --------00000000001
+     8765432101234567890
+  -5  . - - .            -5  
+  -4 - - - - . . . . .   -4  
+  -3  . . . - . . . . .  -3  
+  -2 . + w . . c . . . . -2  
+  -1  + g . o b g g g .  -1  
+   0 . g g g m m + . . . 0   
+   1  + + g g g + . . .  1   
+   2 . . g g g g . . .   2   
+   3    . + + + g .      3   
+   4     . . . . .       4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:614] Command : 
+> BULLETIN from POGO, (#0)  dated Thu Jan  1 00:00:00 1970
+Country 8 (#8) has downgraded their relations with you to "Hostile"!
+
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 3742, yielding 0.00 hap, 0.00 edu
+2.5005 technology (0.0000 + 2.5005), 1.8443 research (0.0000 + 1.8443) produced
+money delta was $628 for this update
+
+
+[0:614] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+  -5,-1   j 100%   524  400l 0.76 $0     524i            524i             400
+  -1,-1   o  78%   599  356o 0.76 $0                                      356
+   1,-1   b 100%   300   60b 1.00 $600   300d            300d              60
+   3,-1   g   3%   234    7d 1.00 $0                                        7
+   5,-1   g  38%   458  174d 1.00 $0                                      174
+   7,-1   g  14%   203   28d 1.00 $0                                       28
+   0,0    m 100%   998  998i 1.00 $0                                      998
+   2,0    m 100%   998  998i 1.00 $0                                      998
+8 sectors
+
+[0:614] Command : Bye-bye
+Exit: so long...
+Player 02 Turn 15 completed successfully
+Player 08 Turn 15 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:640] Command : 
+[0:639] Command : 
+[0:638] Command : 
+[0:637] Command : 
+[0:636] Command : 
+[0:635] Command : 
+[0:634] Command : 
+[0:633] Command : 
+[0:632] Command : 
+[0:631] Command : -4,-2 old threshold 1
+
+[0:630] Command : 
+[0:629] Command : 
+[0:628] Command : 
+[0:627] Command : 
+[0:626] Command : 
+[0:625] Command : -1,-3 old threshold 1
+
+[0:624] Command : 
+[0:623] Command : -2,0 old threshold 1
+
+[0:622] Command : 
+[0:621] Command : 
+[0:620] Command : 
+[0:619] Command : 
+[0:618] Command : 1,-3 old threshold 300
+
+[0:617] Command : Looking for best path to -6,-4
+Using best path 'ygyyyh', movement cost 1.000
+Total movement cost = 55
+72 mob left in 0,0
+
+[0:616] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . . . . . .  -5  
+  -4 . o - . k . . . . - -4  
+  -3  ) o - g l . . . .  -3  
+  -2 . . g g g k j t . - -2  
+  -1  . . j m m m g c .  -1  
+   0 ? . . g m m b h i . 0   
+   1  . . j j g w . . .  1   
+   2 . . . . . . . . . . 2   
+   3  . . . . . . . . .  3   
+   4   . . - . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:616] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-4   of 100%     127 .. ..      769   55    0    0 100%    0        0   1
+  -4,-4   -    1%     127 .. ..      769    0    0    0 100%    1        0   1
+   0,-4   k  100%     127 .. ..      769    0    0    0 100%    1        0   1
+  -5,-3   o  100%     127 .. ..      769    0    0    0 100%    2        0   1
+  -3,-3   -    9%     127 .. ..      769    0    0    0 100%    4        0   1
+  -1,-3   g! 100%     127 .. ..      769    0    0    0 100%    4        0   1
+   1,-3   l  100%     127 .. ..      769    0    0    0 100%  299        0   1
+  -4,-2   g* 100%     127 .. ..      769    0    0    0 100%    9        0   1
+  -2,-2   m  100%     127 .. ..      769    0    0    0 100%    1        0
+   0,-2   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,-2   k  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   4,-2   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   6,-2   t  100%     127 .. ..      769    0    0    0 100%  119        0   1
+  -3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,-1   m  100%     127 .. 5.      769    0  191    0 100%    0        0
+   1,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
+   3,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
+   5,-1   gd 100%     127 .. ..      769    0    0    0 100%    1        0
+   7,-1   c   17%     127 .. ..      769    0    0    0 100%    6        0   1
+  -2,0    gp 100%     127 .. ..      769    0    0    0 100%    0        0   1
+   0,0    m  100%      72 .. 5.      769    0  512    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769   55  512    0 100%    0        0
+   4,0    b  100%     127 .. ..      769    0    0    0 100%   12        0   1
+   6,0    h  100%     127 .. ..      769    0    0    0 100%  599        0   1
+   8,0    i  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -3,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,1    gk 100%     127 .. ..      769    0    0    0 100%    8        0   1
+   3,1    w  100%     106 .. ..     3225    0    0    0 100%  122        0   1
+29 sectors
+
+[0:616] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . . . . . .  -5  
+  -4 . o - . k . . . . - -4  
+  -3  ? o - g l . . . .  -3  
+  -2 . . g m m k j t . - -2  
+  -1  . . j m m m g c .  -1  
+   0 ? . . g m m b h i . 0   
+   1  . . j j g w . . .  1   
+   2 . . . . . . . . . . 2   
+   3  . . . . . . . . .  3   
+   4   . . - . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:616] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+a class of graduates (300.00) produced in 1,-3
+technological breakthroughs (23.05) produced in 6,-2
+  0 happiness, 300 education produced
+total pop was 19043, yielding 0.00 hap, 46.84 edu
+7.7643 technology (5.5265 + 2.2378), 1.8443 research (0.0000 + 1.8443) produced
+money delta was $-3369 for this update
+
+
+[0:616] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   0,-4   k 100%   599  247h 0.82 $0     600i            600i             247
+  -5,-3   o  35%   599  173o 0.82 $0                                      173
+   1,-3   l 100%   599  300  1.00 $2700  300l            599l             599
+  -2,-2   m  96%   599  575i 1.00 $0                                      575
+   0,-2   m 100%   599  599i 1.00 $0                                      599
+   2,-2   k 100%   599  247h 0.82 $0     600i            600i             247
+   4,-2   j 100%   599  493l 0.82 $0     599i            599i             493
+   6,-2   t 100%   599 23.37 0.78 $9000   30d 150o 300l   37d 185o 370l 28.82
+  -3,-1   j 100%   599  493l 0.82 $0     599i            599i             493
+  -1,-1   m 100%   730  730i 1.00 $0                                      730
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   m 100%   599  599i 1.00 $0                                      599
+   5,-1   d 100%   474    6g 0.62 $300    10o  50l 100h   30o 150l 300h    19
+  -2,0    p 100%   474    0  1.00 $0       0l            474l             474
+   0,0    m 100%   952  952i 1.00 $0                                      952
+   2,0    m 100%   965  965i 1.00 $0                                      965
+   4,0    b 100%   599   60b 1.00 $600   300d            600d             120
+   8,0    i 100%   599  125s 0.62 $600   400l 200h       400l 200h        125
+  -3,1    j 100%   599  493l 0.82 $0     599i            599i             493
+  -1,1    j 100%   599  493l 0.82 $0     599i            599i             493
+   1,1    k 100%   474    0h 0.82 $0       0i            474i             195
+21 sectors
+
+[0:616] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 15 completed successfully
+Update Turn 16 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  33   98%  31K 207  485   22    0   11K 898  1.2K   0    5    4   46K
+   617.11
+        8  29   91%  25K 110   96    0    0   14K 2.8K 514    0    0    0   21K
+   324.72
+        2  30   27% 4.9K   0    0    0    0  1.7K 1.4K 167    0    0    0   35K
+    54.72
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   36K
+    34.67
+        3   3  100% 3.0K 110    0    0    0    0  366    0    0    0    0   36K
+    34.39
+        5   3  100% 3.0K 110    0    0    0    0  365    0    0    0    0   36K
+    34.39
+        7   3  100% 3.0K 110    0    0    0    0  342    0    0    0    0   36K
+    34.18
+        4   3  100% 3.0K 110    0    0    0    0  307    0    0    0    0   36K
+    33.87
+       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   36K
+    33.20
+        9   3  100% 3.0K 110    0    0    0    0   29    0    0    0    0   36K
+    31.41
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide 113   78%  81K 1.1K 581   22    0   26K 7.1K 1.9K   0    5    4  355K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                 50.94       14.54       35.48       11.99     5,-15 
+ 2     2                 22.15        7.27        0.00        0.00    18,8   
+ 3     3                 22.15        7.27        0.00        0.00    -4,10  
+ 4     4                 22.15        7.27        0.00        0.00   -15,1   
+ 5     5                 22.15        7.27        0.00        0.00   -30,8   
+ 6     6                 22.15        7.27        0.00        0.00     2,-2  
+ 7     7                 22.15        7.27        0.00        0.00    24,0   
+ 8     8                 36.64        7.27       40.22        0.00    30,-12 
+ 9     9                 22.15        7.27        0.00        0.00   -26,-6  
+ 10    10                22.15        7.27        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    1,-15  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    3,-15  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-15  c  100%     127 .. ..      769    0    0    0 100%  599    0   1
+  1    7,-15  o% 100%     127 .. ..      769    0    0    0 100%    2    0   1
+  1    9,-15  t  100%     127 .. ..      769    0    0    0 100%  359    0   1
+  1   11,-15  l  100%     127 .. ..      769    0    0    0 100%  199    0   1
+  8   17,-15  of 100%     127 .. ..      769   55    0    0 100%    0    0   1
+  8   19,-15  -    1%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   23,-15  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    4,-14  b  100%     127 .. ..      769    0    0    0 100%  299    0   1
+  1    6,-14  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-14  m  100%     127 .. ..      769    0    0    0 100%    1    0
+  1   10,-14  h  100%     127 .. ..      369    5    0    0 100%  402    0   1
+  1   12,-14  =  100%     127 .. ..       77    0    0    0 100%   59    0   1
+  1   14,-14  =  100%     127 .. ..       77    0    0    0 100%   59    0   1
+  1   16,-14  *   48%     127 .. 0.      769   21    1    0 100%   74    0   1
+  8   18,-14  o  100%     127 .. ..      769    0    0    0 100%    2    0   1
+  8   20,-14  -    9%     127 .. ..      769    0    0    0 100%    4    0   1
+  8   22,-14  g! 100%     127 .. ..      769    0    0    0 100%    4    0   1
+  8   24,-14  l  100%     127 .. ..      769    0    0    0 100%  299    0   1
+  1    3,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-13  m  100%     127 .. 5.      769    0  579    0 100%    0    0
+  1    9,-13  k  100%     127 .. 8.      769    0  869    0 100%    1    0   1
+  8   19,-13  g* 100%     127 .. ..      769    0    0    0 100%    9    0   1
+  8   21,-13  m  100%     127 .. ..      769    0    0    0 100%    1    0
+  8   23,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  8   25,-13  k  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   27,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   29,-13  t  100%     127 .. ..      769    0    0    0 100%  119    0   1
+  1    4,-12  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    6,-12  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    8,-12  m  100%     127 .. 5.      769    0   42    0 100%    0    0
+  1   10,-12  j  100%     127 .. 5.      769    0    0    0 100%    0    0   1
+  1   12,-12  d  100%     127 .. ..      769    0    0    0 100%  439    0   1
+  8   20,-12  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   22,-12  m  100%     127 .. 5.      769    0  191    0 100%    0    0
+  8   24,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
+  8   26,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
+  8   28,-12  gd 100%     127 .. ..      769    0    0    0 100%    1    0
+  8   30,-12  c   17%     127 .. ..      769    0    0    0 100%    6    0   1
+ 10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  1    3,-11  i  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    5,-11  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  1    7,-11  m  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    9,-11  r  100%     127 .. ..      769    0    0    0 100%  439    0   1
+  1   11,-11  w  100%     127 .. ..     7127   74    0    0 100%  612    0   1
+  1   13,-11  e  100%     127 .. ..      769    1    0    0 100%  599    0   1
+  1   15,-11  !  100%     127 .. ..      769   25    0    0 100%  603    0   1
+  8   21,-11  gp 100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   23,-11  m  100%      72 .. 5.      769    0  512    0 100%    0    0
+  8   25,-11  m  100%     127 .. 5.      769   55  512    0 100%    0    0
+  8   27,-11  b  100%     127 .. ..      769    0    0    0 100%   12    0   1
+  8   29,-11  h  100%     127 .. ..      769    0    0    0 100%  599    0   1
+  8   31,-11  i  100%     127 .. ..      769    0    0    0 100%    0    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  620    0 100%  984    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  607    0 100%  977    0   1
+  1    4,-10  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  1    6,-10  +  100%     127 .. ..      769    0    0    0 100%  599    0   1
+  1   10,-10  p  100%     127 .. ..      769    0    0    0 100%  524    0   1
+  8   20,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   22,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   24,-10  gk 100%     127 .. ..      769    0    0    0 100%    8    0   1
+  8   26,-10  w  100%     106 .. ..     3225    0    0    0 100%  122    0   1
+  9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  616    0 100%  982    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  602    0 100%  973    0
+  6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  6    2,-2   c  100%     127 .. ..     1000   55  601    0 100%  973    0
+  6    4,-2   c  100%     127 .. ..     1000   55  610    0 100%  979    0
+  7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  7   24,0    c  100%     127 .. ..     1000   55  602    0 100%  974    0
+  7   26,0    c  100%     127 .. ..     1000   55  613    0 100%  981    0
+  4  -15,1    c  100%     127 .. ..     1000   55  612    0 100%  980    0
+  4  -13,1    c  100%     127 .. ..     1000   55  598    0 100%  971    0
+  5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  5  -30,8    c  100%     127 .. ..     1000   55  606    0 100%  976    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  614    0 100%  981    0
+  2   10,8    +    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  2   12,8    w   89%      96 .. ..        1    0    0    0 100%   90    0   1
+  2   18,8    c   19%     120 .. ..       50    0    0    0 100%   20    0   1
+  3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  2    9,9    +    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  2   11,9    gj 100%     119 .. 5.      769    0   73    0 100%    3    0   1
+  2   15,9    o  100%     118 .. ..      769    0    0    0 100%    0    0   1
+  2   17,9    b  100%     127 .. ..      385    0    0    0 100%    0    0   1
+  2   19,9    g  100%      97 .. ..      300    0    0    0 100%    0    0   1
+  2   21,9    g   90%     119 .. ..      600    0    0    0 100%    0    0   1
+  2   23,9    g    0%     120 .. ..      389    0    0    0 100%    1    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  599    0 100%  971    0
+  3   -2,10   c  100%     127 .. ..     1000   55  613    0 100%  981    0
+  2   10,10   g    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  2   12,10   g    0%     120 .. ..        4    0    0    0 100%    1    0   1
+  2   14,10   g    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  2   16,10   m  100%     127 .. 5.      769    0  579    0 100%    0    0
+  2   18,10   m  100%     127 .. 5.      769    0  579    0 100%    0    0
+  2   20,10   +    0%     120 .. ..        4    0    0    0 100%    1    0   1
+  2    9,11   +    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  2   11,11   +    0%     120 .. ..        4    0    0    0 100%    1    0   1
+  2   13,11   g    0%     120 .. ..        3    0    0    0 100%    1    0
+  2   15,11   g    0%     120 .. ..        4    0    0    0 100%    1    0
+  2   17,11   g    0%     120 .. ..        4    0    0    0 100%    1    0
+  2   19,11   +    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  2   12,12   g    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  2   14,12   g    0%     120 .. ..        3    0    0    0 100%    1    0
+  2   16,12   g    0%     120 .. ..        3    0    0    0 100%    1    0
+  2   18,12   g    0%     120 .. ..        4    0    0    0 100%    1    0   1
+  2   13,13   +    0%     120 .. ..        4    0    0    0 100%    1    0   1
+  2   15,13   +    0%     120 .. ..        2    0    0    0 100%    1    0   1
+  2   17,13   +    0%     120 .. ..        3    0    0    0 100%    1    0   1
+  2   19,13   g    0%     120 .. ..        2    0    0    0 100%    1    0   1
+113 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  j .......... ...9...0..   0   0    0  999    0   0    1    1    0   0
+  1   1,-15  k .......... ...9....0.   0   0    0  999    0   0    1    0    1   0
+  1   3,-15  j .......... ...9...0..   0   0    0  999    0   0    1    1    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  o .......... ..0.......   0   0    0    0    0   0  187    0    0   0
+  1   9,-15  t .......... ....0.01..   0   0    0    0   15   0   75  150    0   0
+  1  11,-15  l .......... .......4..   0   0    0    0    0   0    0  450    0   0
+  8  17,-15  o .......... 20....0.1.   0   0    0    0    0   0    1    0  100   0
+  8  19,-15  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  23,-15  k .......... ...9....0.   0   0    0  999    0   0    0    0    1   0
+  1   4,-14  b .......... ..........   0   0    0    0  300 389    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  m .......... ...0......   0   0    0    1    0   0    0    1    0   0
+  1  10,-14  h .......... 20.....22.   0   0    0    1    1   0    1  183  185   0
+  1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  14,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  16,-14  * .......... 2.2....22.   0   0    0    0    0   0    0  200  200   0
+  8  18,-14  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  8  20,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  22,-14  g .......... 20.....22.   0   0    0    0    1   0    0    0    0   0
+  8  24,-14  l .......... .......4..   0   0    0    0    1   0    0  300    0   0
+  1   3,-13  j .......... .......0..   0   0    0  599    0   0    0    1    0   0
+  1   5,-13  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-13  k .......... ...a....0.   0   0    0 1200    0   0    0    0    1   0
+  8  19,-13  g .......... 2......22.   0   0    0    0    1   0    0    0    0   0
+  8  21,-13  m .......... ...0......   0   0    0    1    1   0    0    0    0   0
+  8  23,-13  m .......... ...0......   0   0    0    1    1   0    0    0    0   0
+  8  25,-13  k .......... ...9....0.   0   0    0  999    1   0    0    0    1   0
+  8  27,-13  j .......... ...9......   0   0    0  999    0   0    0  857    0   0
+  8  29,-13  t .......... ....0.13..   0   0    0    0   30   0  150  300    0   0
+  1   4,-12  k .......... ........0.   0   0    0  600    0   0    0    0    1   0
+  1   6,-12  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  j .......... .......0..   0   0    0 1198    0   0    0    1    0   0
+  1  12,-12  d .......... .0....021.   0   1    0    0    0   0   20  200  100   0
+  8  20,-12  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  8  22,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  24,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  28,-12  g .......... .0..0.001.   0   0    0    0    1   0   10   50  100   0
+  8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+  1   3,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  300   0
+  1   5,-11  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  m .......... ...0......   0   0    0    1    0   0    0    0    1   0
+  1   9,-11  r .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
+  1  11,-11  w .......... .......... 244   0    0 4084  572   0  863 2548 2865   0
+  1  13,-11  e .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  ! .......... 20.....22. 200  11    0    0    0   0    0  200  200   0
+  8  21,-11  g .......... .......0..   0   0    0    0    1   0    0    0    0   0
+  8  23,-11  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  25,-11  m .......... ...0......   0   0    0 1704    0   0    0    0    0   0
+  8  27,-11  b .......... ....3.....   0   0    0    0  300 295    0    0    0   0
+  8  29,-11  h .......... .......22.   0   0    0    0    1   0    0  200  200   0
+  8  31,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  282   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  p .......... .......0..   0   0    0    0    0   0    0   75    0   0
+  8  20,-10  j .......... ...9...0..   0   0    0  999    1   0    0    1    0   0
+  8  22,-10  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  8  24,-10  g .......... ...90...0.   0   0    0    0    1   0    0    0    0   0
+  8  26,-10  w .......... ..........  95   0    0 6405 2495   0  352  437    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   29   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  342   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  307   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  365   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  10,8    + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  12,8    w .......... ..........   0   0    0  686 1059   0  165    0    0   0
+  2  18,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  366   0    0    0    0   0
+  2   9,9    + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  11,9    g .......... ...90..0..   0   0    0  999    1   0    0    0    0   0
+  2  15,9    o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  2  17,9    b .......... ....3.....   0   0    0    0  300  11    0    0    0   0
+  2  19,9    g .......... ....0..3..   0   0    0    0    1   0    0    0    0   0
+  2  21,9    g .......... ...90.....   0   0    0    0    1   0    0    0    0   0
+  2  23,9    g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  10,10   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  12,10   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  14,10   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  16,10   m .......... ...00.....   0   0    0    1    1   0    0    0    0   0
+  2  18,10   m .......... ...00.....   0   0    0    1    1   0    0    0    0   0
+  2  20,10   + .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  2   9,11   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  11,11   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  13,11   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  15,11   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  17,11   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  19,11   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  12,12   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  14,12   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  16,12   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  18,12   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  13,13   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  15,13   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  17,13   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  19,13   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+113 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  j  100%    0    0   82   1    0
+  1    1,-15  k  100%    6    0   67   0    0
+  1    3,-15  j  100%   11    0   61   0    0
+  1    5,-15  c  100%   28    5   37   0    0
+  1    7,-15  o% 100%    0    0   76  25    0
+  1    9,-15  t  100%   39   14   21   0    0
+  1   11,-15  l  100%    0    0   91  72    0
+  8   17,-15  of 100%    0    0  100   1    0
+  8   19,-15  -    1%    0    0  100 100    0
+  8   23,-15  k  100%   11    0   61  21    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  m  100%   96   60    0   0   77
+  1   10,-14  h  100%   45   19   13   0    0
+  1   12,-14  =  100%    0    0   45  11    0
+  1   14,-14  =  100%    0    0   63  46    0
+  1   16,-14  *   48%    0    0  100  98    0
+  8   18,-14  o  100%    0    0   91  35    0
+  8   20,-14  -    9%    0    0   82  58    0
+  8   22,-14  g! 100%   50    0    6   0    0
+  8   24,-14  l  100%   45    1   13   0    0
+  1    3,-13  j  100%   23    1   43   0    0
+  1    5,-13  m  100%  100    0  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  8   19,-13  g* 100%   56    0    0   0    5
+  8   21,-13  m  100%   96    0    0   0   77
+  8   23,-13  m  100%  100    0    0   0   88
+  8   25,-13  k  100%   63   33    0   0   17
+  8   27,-13  j  100%    0    0   76  47    0
+  8   29,-13  t  100%   28    0   37   0    0
+  1    4,-12  k  100%   74   42    0   0   37
+  1    6,-12  m  100%  100    0    0   0  100
+  1    8,-12  m  100%  100    0    0   0   88
+  1   10,-12  j  100%   50    0    6   0    0
+  1   12,-12  d  100%   63    0    0   0   17
+  8   20,-12  j  100%   74    0    0   0   37
+  8   22,-12  m  100%  100    0    0   0   97
+  8   24,-12  m  100%  100    0    0   0  100
+  8   26,-12  m  100%  100    0    0   0  100
+  8   28,-12  gd 100%   91    0    0   0   68
+  8   30,-12  c   17%   23    1   43   0    0
+ 10  -11,-11  g  100%   78    0    0   0   45
+  1    3,-11  i  100%    0    0  100   2    0
+  1    5,-11  m  100%  100    0    0   0  100
+  1    7,-11  m  100%   91    0    0   0   68
+  1    9,-11  r  100%   85    0    0   0   57
+  1   11,-11  w  100%   78    0    0   0   45
+  1   13,-11  e  100%   67    0    0   0   25
+  1   15,-11  !  100%   56    1    0   0    5
+  8   21,-11  gp 100%   85    0    0   0   57
+  8   23,-11  m  100%  100    0  100 100  100
+  8   25,-11  m  100%  100    0  100 100  100
+  8   27,-11  b  100%   39    3   21   0    0
+  8   29,-11  h  100%   34    0   28   0    0
+  8   31,-11  i  100%    0    0  100 100    0
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  o  100%    0    0  100  21    0
+  1    6,-10  +  100%    0    0  100 100    0
+  1   10,-10  p  100%    0    0  100  98    0
+  8   20,-10  j  100%   78    0    0   0   45
+  8   22,-10  j  100%    6    0   67  32    0
+  8   24,-10  gk 100%   67    0    0   0   25
+  8   26,-10  w  100%   17    0   52   7    0
+  9  -25,-7   g  100%   28    0   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100    0    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100    0    0   0   97
+  4  -14,0    g  100%   96    0    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100    0    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  2   10,8    +    0%    0    0  100  87    0
+  2   12,8    w   89%   17    0   52   7    0
+  2   18,8    c   19%   23    1   43   0    0
+  3   -3,9    g  100%  100    0    0   0  100
+  2    9,9    +    0%    6    0   67  32    0
+  2   11,9    gj 100%   56    0    0   0    5
+  2   15,9    o  100%    0    0  100  78    0
+  2   17,9    b  100%   34    0   28   0    0
+  2   19,9    g  100%   78    3    0   0   45
+  2   21,9    g   90%   74   38    0   0   37
+  2   23,9    g    0%   39   14   21   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   10,10   g    0%   45   19   13   0    0
+  2   12,10   g    0%   63   33    0   0   17
+  2   14,10   g    0%   91   56    0   0   68
+  2   16,10   m  100%  100    0  100 100  100
+  2   18,10   m  100%  100    0  100 100  100
+  2   20,10   +    0%    0    0  100 100    0
+  2    9,11   +    0%    0    0   82  58    0
+  2   11,11   +    0%   11    0   61  21    0
+  2   13,11   g    0%  100   69    0   0   97
+  2   15,11   g    0%  100   74    0   0  100
+  2   17,11   g    0%  100   80    0   0  100
+  2   19,11   +    0%    0    0  100  98    0
+  2   12,12   g    0%   67   37    0   0   25
+  2   14,12   g    0%  100   65    0   0   88
+  2   16,12   g    0%   96   60    0   0   77
+  2   18,12   g    0%   85   51    0   0   57
+  2   13,13   +    0%    0    0   91  72    0
+  2   15,13   +    0%   28    5   37   0    0
+  2   17,13   +    0%    0    0   76  47    0
+  2   19,13   g    0%   50   23    6   0    0
+113 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 16 completed successfully
+Player 01 Turn 16 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:640] Command : Total movement cost = 9
+118 mob left in 1,-1
+
+[0:639] Command : Total movement cost = 5
+122 mob left in 3,-1
+
+[0:638] Command : Total movement cost = 9
+118 mob left in 2,-2
+
+[0:637] Command : Total movement cost = 5
+122 mob left in 4,-2
+
+[0:636] Command : Total movement cost = 5
+122 mob left in 6,-2
+
+[0:635] Command : 790 civilians loaded onto od   oil derrick (#3) at 5,-1
+100 civilians loaded onto ft   fishing trawler (#4) at 5,-1
+2 ships loaded
+
+[0:634] Command : Flagship is od   oil derrick (#3)
+ h = 
+k . .
+ j d 
+<67.1:67.1: 6,0> od   oil derrick (#3) stopped at 6,0
+Path taken: n
+
+[0:633] Command : Flagship is od   oil derrick (#3)
+[oil:88] od   oil derrick (#3) @ 6,0 0% sea
+od   oil derrick (#3) stopped at 6,0
+
+[0:632] Command : A circular order has been accepted.
+
+[0:631] Command : Order set
+
+[0:630] Command : Flagship is ft   fishing trawler (#4)
+[fert:84] ft   fishing trawler (#4) @ 6,0 0% sea
+ft   fishing trawler (#4) stopped at 6,0
+Path taken: n
+
+[0:629] Command : A circular order has been accepted.
+
+[0:628] Command : Order Set 
+
+[0:627] Command : Order set
+
+[0:626] Command : No escorts...
+target is 11,-1
+range to target is 4
+No planes could be equipped for the mission.
+command failed
+
+[0:623] Command : No escorts...
+target sector is 14,-2
+range to target is 2
+No planes could be equipped for the mission.
+command failed
+
+[0:621] Command : No planes
+command failed
+
+[0:619] Command : range is 1.00 (1.47)
+\aKaboom!!!
+Shells hit sector 12,-2 for 35 damage.
+\a
+Defenders fire back!
+Return fire hit sector 11,-1 for 23 damage.
+       cav  cavalry #4 takes 3
+       art  artillery #5 takes 3
+
+[0:618] Command : 12,-2 is a 90% 8 fortress with approximately 50 military.
+Number of mil from airfield at 11,-1 (max 17) : cav  cavalry #4 has a base attack value of 6
+attack with cav  cavalry #4 in 11,-1 (~ 97%) [ynYNq?] No troops for attack...
+Attack aborted
+No troops for attack...
+
+[0:615] Command : 12,-2 is a 90% 8 fortress with approximately 50 military.
+Number of mil from airfield at 11,-1 (max 17) : cav  cavalry #4 has a base attack value of 6
+attack with cav  cavalry #4 in 11,-1 (~ 97%) [ynYNq?] art  artillery #5 has no offensive strength
+
+             Initial attack strength:        7
+
+               support values
+               forts   ships   units   planes
+attacker       0.00    0.00    0.17    0.00
+               Final attack strength:        8
+              Final defense strength:      192
+                          Final odds:        4%
+@@@@@@
+- Casualties -
+     Yours: 6
+    Theirs: 0
+Papershuffling ... 0.9 B.T.U
+You have been defeated!
+cav  cavalry #4 damaged from 97% to 72%
+
+[0:612] Command :      1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+  -8                                           -8  
+  -7                                           -7  
+  -6                       . ? ? ? ? .         -6  
+  -5                      . . . . . . .        -5  
+  -4         - . . . . . . . . . . . . .       -4  
+  -3          - . . . j . . . . . . . . .      -3  
+  -2         . . k j c o t l . . f ? . ? .     -2  
+  -1          - . . b m m h = = * o ? ? ? .    -1  
+   0         - - . j m m k . . . . ? ? ? ?     0   
+   1          - - . k m m j d . . . ? ? ?      1   
+   2         - - . i m m r w e ! . . ? ?       2   
+   3          - - . o + . p . . . . ? ?        3   
+   4           - - . . . . . . . . . .         4   
+   5                                           5   
+   6                                           6   
+   7                                           7   
+   8                                           8   
+     1111111---------0000000000111111111122222
+     65432109876543210123456789012345678901234
+
+[0:612] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+   1,-3   j  100%     127 .. ..     1000    0    0    0 100%    0        0   1
+  -4,-2   k  100%     127 .. ..     1000    0    0    0 100%    0        0   1
+  -2,-2   j  100%     127 .. ..     1000    0    0    0 100%    0        0   1
+   0,-2   c  100%     127 .. ..     1000    0    0    0 100%  599        0   1
+   2,-2   %  100%     118 .. ..      770    0    0    0 100%  342        0   1
+   4,-2   t  100%     122 .. ..      770    0    0    0 100%  359        0   1
+   6,-2   l  100%     122 .. ..      769    0    0    0 100%  149        0   1
+  -1,-1   b  100%     127 .. ..     1000    0    0    0 100%  299        0   1
+   1,-1   m  100%     118 .. ..      770    0    0    0 100%    0        0
+   3,-1   m  100%     122 .. ..      769    0    0    0 100%    1        0
+   5,-1   h  100%     127 .. ..      739    5    0    0 100%  188        0   1
+   7,-1   =  100%     127 .. ..      100    0    0    0 100%   59        0   1
+   9,-1   =  100%     127 .. ..      100    0    0    0 100%   59        0   1
+  11,-1   *   85%     101 .. 0.      850   17    1    0 100%  470        0   1
+  -2,0    j  100%     127 .. ..     1000    0    0    0 100%    0        0   1
+   0,0    m  100%     127 .. ..     1000    0    0    0 100%    0        0
+   2,0    m  100%     127 .. 5.      999    0  579    0 100%    0        0
+   4,0    k  100%     127 .. 8.     1000    0  869    0 100%    1        0   1
+  -1,1    k  100%     127 .. ..     1000    0    0    0 100%    1        0   1
+   1,1    m  100%     127 .. ..     1000    0    0    0 100%    0        0
+   3,1    m  100%     127 .. 5.      999    0  266    0 100%    0        0
+   5,1    j  100%     127 .. 5.     1000    0    0    0 100%    0        0   1
+   7,1    d  100%     127 .. ..     1000    0    0    0 100%  439        0   1
+  -2,2    i  100%     127 .. ..     1000    0    0    0 100%    2        0   1
+   0,2    m  100%     127 .. ..     1000    0    0    0 100%    0        0
+   2,2    m  100%     127 .. ..     1000    0    0    0 100%    1        0   1
+   4,2    r  100%     127 .. ..      999    0    0    0 100%  439        0   1
+   6,2    w  100%     127 .. ..     1000  107    0    0 100%  617        0   1
+   8,2    e  100%     127 .. ..      967    1    0    0 100%  599        0   1
+  10,2    !  100%     127 .. ..      999   25    0    0 100%  605        0   1
+  -1,3    o  100%     127 .. ..     1000    0    0    0 100%    0        0   1
+   1,3    +  100%     127 .. ..     1000    0    0    0 100%  599        0   1
+   5,3    p  100%     127 .. ..      999    0    0    0 100%  524        0   1
+33 sectors
+
+[0:612] Command : shp#     ship type       x,y   fl   eff civ mil  uw  fd pn he xl ln mob tech
+   0 frg  frigate       13,1       100%   0  25   0   0  0  0  0  0 127    0
+   1 cs   cargo ship     5,-1      100% 300  25   0   0  0  0  0  1 127   30
+   2 tk   tanker         5,-1      100%  30   0   0   0  0  0  0  0 127   44
+   3 od   oil derrick    6,0       100% 990   0   0   0  0  0  0  0  67   50
+   4 ft   fishing tra    6,0       100% 300   0   0   0  0  0  0  0  76   50
+5 ships
+
+[0:612] Command :    # unit type          x,y   a   eff mil frt  mu  fd tch retr xl ln carry
+   0 cav  cavalry       5,-1     100%  20   0 127   0  30  42%  0  0    1S
+   3 cav  cavalry       5,-1     100%   1  57 127   0  30  42%  0  0
+   4 cav  cavalry      11,-1      72%   0   0  95   0  30  42%  0  0
+   5 art  artillery    11,-1      97%   5   0  48   0  37  42%  0  0
+4 units
+
+[0:612] Command : *: No plane(s)
+command failed
+
+[0:612] Command :      --------00000000001111111
+     8765432101234567890123456
+  -4 - . . . . . . . . . . .   -4  
+  -3  - . . . j . . . . . . .  -3  
+  -2 . . k j c % t l . . ? ? . -2  
+  -1  - . . b m m h = = * ? ?  -1  
+   0 - - . j m m k . . . . ? ? 0   
+   1  - - . k m m j d . . . ?  1   
+   2 - - . i m m r w e ! . . ? 2   
+   3  - - . o + . p . . . . ?  3   
+   4   - - . . . . . . . . .   4   
+     --------00000000001111111
+     8765432101234567890123456
+
+[0:612] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+technological breakthroughs (11.29) produced in 4,-2
+a class of graduates (450.00) produced in 6,-2
+medical discoveries (7.53) produced in 4,2
+happy strollers (75.00) produced in 5,3
+ 75 happiness, 450 education produced
+total pop was 30681, yielding 12.26 hap, 44.43 edu
+7.2707 technology (4.4976 + 2.7731), 3.7097 research (3.7097 + 0.0000) produced
+Army delta $-138, Navy delta $-1650, Air force delta $0
+money delta was $5829 for this update
+
+
+[0:612] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+   1,-3   j 100%   600  523l 0.87 $0     600i            600i             523
+  -4,-2   k 100%   600  261h 0.87 $0     600i            600i             261
+  -2,-2   j 100%   600  523l 0.87 $0     600i            600i             523
+   2,-2   % 100%   600  435p 7.91 $55     55o            126o             999
+   4,-2   t 100%   600 11.48 0.77 $4500   15d  75o 150l   38d 190o 380l 29.08
+   6,-2   l 100%   599  450  1.00 $4050  450l            599l             599
+  -1,-1   b 100%   600    0b 1.00 $0       0d            600d             120
+   1,-1   m 100%   600  600i 1.00 $0                                      600
+   3,-1   m  96%   599  575i 1.00 $0                                      575
+  -2,0    j 100%   600  522l 0.87 $0     599i            600i             523
+   0,0    m 100%   600  600i 1.00 $0                                      600
+   2,0    m 100%   999  999i 1.00 $0                                      999
+   4,0    k 100%  1199  523h 0.87 $0    1200i           1200i             523
+  -1,1    k 100%   600  261h 0.87 $0     600i            600i             261
+   1,1    m 100%   600  600i 1.00 $0                                      600
+   3,1    m 100%   783  783i 1.00 $0                                      783
+   5,1    j 100%   600  523l 0.87 $0     600i            600i             523
+   7,1    d 100%   600    8g 0.79 $300    10o  50l 100h   38o 190l 380h    30
+  -2,2    i 100%   600  158s 0.79 $600   400l 200h       400l 200h        158
+   0,2    m 100%   600  600i 1.00 $0                                      600
+   2,2    m  91%   600  546i 1.00 $0                                      546
+   4,2    r 100%   600  7.65 0.77 $900    10d  50o 100l   38d 190o 380l 29.08
+   8,2    e 100%   600   33m 1.00 $99     33c             33c             499
+  -1,3    o   8%   600   42o 0.87 $0                                       42
+   5,3    p 100%   600   75  1.00 $675    75l            600l             600
+25 sectors
+
+[0:612] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 16 completed successfully
+Player 02 Turn 16 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:640] Command : 
+[0:639] Command : 3,-1 old threshold 1
+
+[0:638] Command : 
+[0:637] Command : 5,-1 old threshold 1
+
+[0:636] Command : 
+[0:635] Command : 7,-1 old threshold 400
+
+[0:634] Command : 
+[0:633] Command : 
+[0:632] Command : 
+[0:631] Command : -6,0 old threshold 1
+
+[0:630] Command : -6,0 old threshold 769
+
+[0:629] Command :      --------00000000001
+     8765432101234567890
+  -5  . - - .            -5  
+  -4 - - - - . . . . .   -4  
+  -3  . . . - . . . . .  -3  
+  -2 . + w . . c . . . . -2  
+  -1  + g . o b g g g .  -1  
+   0 . g g g m m + . . . 0   
+   1  + + g g g + . . .  1   
+   2 . . g g g g . . .   2   
+   3    . + + + g .      3   
+   4     . . . . .       4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:629] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-2   +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -4,-2   w   89%     105 .. ..        1    0    0    0 100%    0        0   1
+   2,-2   c   38%     127 .. ..       50    0    0    0 100%   20        0   1
+  -7,-1   +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -5,-1   j  100%     127 .. 5.      769    0  258    0 100%    0        0   1
+  -1,-1   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,-1   b  100%     127 .. ..      385    0    0    0 100%    0        0   1
+   3,-1   gl 100%     127 .. ..      300    0    0    0 100%    1        0   1
+   5,-1   gk 100%     127 .. ..      769    0    0    0 100%    1        0   1
+   7,-1   g  100%     127 .. ..      400    0    0    0 100%    0        0   1
+  -6,0    g    0%     127 .. ..      769    0    0    0 100%    1        0   1
+  -4,0    g    1%     127 .. ..      501    0    0    0 100%    1        0   1
+  -2,0    g    0%     127 .. ..        3    0    0    0 100%    1        0   1
+   0,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769    0  579    0 100%    0        0
+   4,0    +    1%     127 .. ..        5    0    0    0 100%    1        0   1
+  -7,1    +    0%     127 .. ..        3    0    0    0 100%    1        0   1
+  -5,1    +    1%     127 .. ..        5    0    0    0 100%    1        0   1
+  -3,1    g    0%     127 .. ..        4    0    0    0 100%    1        0
+  -1,1    g    1%     127 .. ..        6    0    0    0 100%    2        0
+   1,1    g    1%     127 .. ..        5    0    0    0 100%    1        0
+   3,1    +    0%     127 .. ..        2    0    0    0 100%    1        0   1
+  -4,2    g    0%     127 .. ..        4    0    0    0 100%    1        0   1
+  -2,2    g    0%     127 .. ..        3    0    0    0 100%    1        0
+   0,2    g    0%     127 .. ..        4    0    0    0 100%    1        0
+   2,2    g    1%     127 .. ..        5    0    0    0 100%    1        0   1
+  -3,3    +    1%     127 .. ..        5    0    0    0 100%    1        0   1
+  -1,3    +    0%     127 .. ..        2    0    0    0 100%    1        0   1
+   1,3    +    0%     127 .. ..        4    0    0    0 100%    1        0   1
+   3,3    g    0%     127 .. ..        2    0    0    0 100%    1        0   1
+30 sectors
+
+[0:629] Command :      --------00000000001
+     8765432101234567890
+  -5  . - - .            -5  
+  -4 - - - - . . . . . . -4  
+  -3  . . . - . . . . .  -3  
+  -2 . + w . . c . . . . -2  
+  -1  + j . o b g g g .  -1  
+   0 . g g g m m + . . . 0   
+   1  + + g g g + . . .  1   
+   2 . . g g g g . . . - 2   
+   3    . + + + g .      3   
+   4     . . . . .       4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:629] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+  0 happiness,   0 education produced
+total pop was 4862, yielding 0.00 hap, 0.00 edu
+2.5110 technology (0.0000 + 2.5110), 1.8549 research (0.0000 + 1.8549) produced
+money delta was $1478 for this update
+
+
+[0:629] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+  -5,-1   j 100%   777  602l 0.78 $0     777i            777i             602
+  -1,-1   o  31%   599  144o 0.78 $0                                      144
+   1,-1   b 100%   300   60b 1.00 $600   300d            300d              60
+   3,-1   l  92%   117  108  1.00 $972   108l            108l             108
+   5,-1   k 100%   474  184h 0.78 $0     474i            474i             184
+   7,-1   g   8%   312   25d 1.00 $0                                       25
+  -6,0    g  19%   499   95d 1.00 $0                                       95
+  -4,0    g  33%   291   96d 1.00 $0                                       96
+   0,0    m 100%   998  998i 1.00 $0                                      998
+   2,0    m 100%   998  998i 1.00 $0                                      998
+10 sectors
+
+[0:629] Command : Bye-bye
+Exit: so long...
+Player 02 Turn 16 completed successfully
+Player 08 Turn 16 starting
+
+
+       -=O=-
+You have two new telegrams waiting ...
+
+[0:640] Command : 
+[0:639] Command : 
+[0:638] Command : -5,-3 old threshold 1
+
+[0:637] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . . . . . .  -5  
+  -4 . o - . k . . . . - -4  
+  -3  ) o - g l . . . .  -3  
+  -2 . . g m m k j t . - -2  
+  -1  . . j m m m g c .  -1  
+   0 ? . . g m m b h i . 0   
+   1  . . j j g w . . .  1   
+   2 . . . . . . . . . . 2   
+   3  . . . . . . . . .  3   
+   4   . . - . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:637] Command : Thu Jan  1 00:00:00 1970
+CENSUS                   del dst
+  sect        eff prd mob uf uf old  civ  mil   uw food work avail ter fall coa
+  -6,-4   f   92%     117 .. ..      707   51    0    0 100%  448        0   1
+  -4,-4   -o 100%     127 .. ..      769    0    0    0 100%  500        0   1
+   0,-4   k  100%     127 .. ..      769    0    0    0 100%    1        0   1
+  -5,-3   o  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -3,-3   -  100%     127 .. ..      769    0    0    0 100%  508        0   1
+  -1,-3   !  100%     127 .. ..      769    0    0    0 100%  474        0   1
+   1,-3   l  100%     127 .. ..      769    0    0    0 100%  299        0   1
+  -4,-2   *  100%     127 .. ..      769    0    0    0 100%  474        0   1
+  -2,-2   m  100%     127 .. ..      769    0    0    0 100%    1        0
+   0,-2   m  100%     127 .. ..      769    0    0    0 100%    0        0
+   2,-2   k  100%     127 .. ..      769    0    0    0 100%    1        0   1
+   4,-2   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   6,-2   t  100%     127 .. ..      769    0    0    0 100%  119        0   1
+  -3,-1   j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,-1   m  100%     127 .. 5.      769    0  373    0 100%    0        0
+   1,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
+   3,-1   m  100%     127 .. 5.      769    0    0    0 100%    0        0
+   5,-1   d  100%     127 .. ..      769    0    0    0 100%  314        0
+   7,-1   c  100%     127 .. ..      769    0    0    0 100%  516        0   1
+  -2,0    p  100%     127 .. ..      769    0    0    0 100%  474        0   1
+   0,0    m  100%     127 .. 5.      769    0  512    0 100%    0        0
+   2,0    m  100%     127 .. 5.      769   55  512    0 100%    0        0
+   4,0    b  100%     127 .. ..      769    0    0    0 100%  299        0   1
+   6,0    h  100%     127 .. ..      769    0    0    0 100%  599        0   1
+   8,0    i  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -3,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+  -1,1    j  100%     127 .. ..      769    0    0    0 100%    0        0   1
+   1,1    k  100%     127 .. ..      769    0    0    0 100%  474        0   1
+   3,1    w  100%     119 .. ..     7457    0    0    0 100%  600        0   1
+29 sectors
+
+[0:637] Command :      --------00000000001
+     8765432101234567890
+  -5  . . . . . . . . .  -5  
+  -4 . f - . k . . . . - -4  
+  -3  ? o - ! l . . . .  -3  
+  -2 . . * m m k j t . - -2  
+  -1  . . j m m m d c .  -1  
+   0 ? . . p m m b h i . 0   
+   1  . . j j k w . . .  1   
+   2 . . . . . . . . . . 2   
+   3  . . . . . . . . .  3   
+   4   . . - . . . .     4   
+   5                     5   
+     --------00000000001
+     8765432101234567890
+
+[0:637] Command : 
+> Production Report   dated Thu Jan  1 00:00:00 1970
+a class of graduates (300.00) produced in 1,-3
+technological breakthroughs (23.37) produced in 6,-2
+  0 happiness, 300 education produced
+total pop was 24757, yielding 0.00 hap, 38.63 edu
+7.7951 technology (5.5463 + 2.2488), 1.8549 research (0.0000 + 1.8549) produced
+money delta was $830 for this update
+
+> BULLETIN from POGO, (#0)  dated Thu Jan  1 00:00:00 1970
+Country #1 shelled sector -6,-4 for 35 damage.
+Return fire hit sector -7,-3 for 23 damage.
+1 (#1) considered attacking you @-6,-4
+1 (#1) considered attacking you @-6,-4
+Scouts report attacking unit: cav  cavalry #4 (eff 95, mil 10, tech 21)
+
+Odds are good for us...support cancelled.
+
+
+               support values
+               forts   ships   units   planes
+attacker       0.00    0.00    0.17    0.00
+1 (#1) lost 6 troops attacking -6,-4
+We lost 0 troops defending
+
+
+[0:637] Command : Thu Jan  1 00:00:00 1970
+PRODUCTION SIMULATION
+   sect  des eff avail  make p.e. cost   use1 use2 use3  max1 max2 max3   max
+  -4,-4   o 100%   474  400o 0.84 $0                                      400
+   0,-4   k 100%   599  253h 0.84 $0     600i            600i             253
+  -5,-3   o  14%   599   71o 0.84 $0                                       71
+   1,-3   l 100%   599  400  1.00 $3600  400l            599l             599
+  -2,-2   m  96%   599  575i 1.00 $0                                      575
+   0,-2   m 100%   599  599i 1.00 $0                                      599
+   2,-2   k 100%   599  253h 0.84 $0     600i            600i             253
+   4,-2   j 100%   599  506l 0.84 $0     599i            599i             506
+   6,-2   t 100%   599 23.31 0.78 $9000   30d 150o 300l   37d 185o 370l 28.75
+  -3,-1   j 100%   599  506l 0.84 $0     599i            599i             506
+  -1,-1   m 100%   856  856i 1.00 $0                                      856
+   1,-1   m 100%   599  599i 1.00 $0                                      599
+   3,-1   m 100%   599  599i 1.00 $0                                      599
+   5,-1   d 100%   599    0g 0.71 $0       0o   0l   0h   37o 185l 370h    26
+  -2,0    p 100%   599   75  1.00 $675    75l            599l             599
+   0,0    m 100%   952  952i 1.00 $0                                      952
+   2,0    m 100%   965  965i 1.00 $0                                      965
+   4,0    b 100%   599   60b 1.00 $600   300d            600d             120
+   8,0    i 100%   599   58s 0.71 $246   164l  82h       400l 200h        141
+  -3,1    j 100%   599  506l 0.84 $0     599i            599i             506
+  -1,1    j 100%   599  506l 0.84 $0     599i            599i             506
+   1,1    k 100%   599  253h 0.84 $0     600i            600i             253
+22 sectors
+
+[0:637] Command : Bye-bye
+Exit: so long...
+Player 08 Turn 16 completed successfully
+Update Turn 99 starting
+
+
+       -=O=-
+
+[0:640] Command :      - = [   Empire Power Report   ] = -
+      as of Thu Jan  1 00:00:00 1970
+
+         sects  eff civ  mil  shell gun pet  iron dust oil  pln ship unit money
+        1  33  100%  31K 231  602   29  969   11K 573  1.0K   0    5    4   51K
+   740.29
+        8  29  100%  29K 106  204    6    0   16K 2.5K 527    0    0    0   22K
+   442.67
+        2  30   31% 6.3K   0    0    0    0  3.2K 1.3K 524    0    0    0   36K
+    75.58
+        6   3  100% 3.0K 110    0    0    0    0  397    0    0    0    0   37K
+    38.83
+        3   3  100% 3.0K 110    0    0    0    0  366    0    0    0    0   37K
+    38.52
+        5   3  100% 3.0K 110    0    0    0    0  365    0    0    0    0   37K
+    38.52
+        7   3  100% 3.0K 110    0    0    0    0  342    0    0    0    0   37K
+    38.29
+        4   3  100% 3.0K 110    0    0    0    0  307    0    0    0    0   37K
+    37.94
+       10   3  100% 3.0K 110    0    0    0    0  231    0    0    0    0   37K
+    37.20
+        9   3  100% 3.0K 110    0    0    0    0   29    0    0    0    0   37K
+    35.22
+          ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
+worldwide 113   82%  87K 1.1K 806   35  969   30K 6.4K 2.1K   0    5    4  370K
+
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+ #    name                tech      research   education   happiness capital
+ 0     POGO               0.00        0.00        0.00        0.00     0,0   
+ 1     1                 57.84       18.14       37.61       12.14     5,-15 
+ 2     2                 24.51        9.07        0.00        0.00    18,8   
+ 3     3                 24.51        9.07        0.00        0.00    -4,10  
+ 4     4                 24.51        9.07        0.00        0.00   -15,1   
+ 5     5                 24.51        9.07        0.00        0.00   -30,8   
+ 6     6                 24.51        9.07        0.00        0.00     2,-2  
+ 7     7                 24.51        9.07        0.00        0.00    24,0   
+ 8     8                 44.15        9.07       39.84        0.00    30,-12 
+ 9     9                 24.51        9.07        0.00        0.00   -26,-6  
+ 10    10                24.51        9.07        0.00        0.00   -12,-10 
+ 11    visitor            0.00        0.00        0.00        0.00     0,0   
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    CENSUS                   del dst
+own   sect        eff prd mob uf uf old  civ  mil   uw food work avail fall coa
+  1    6,-16  j  100%     127 .. ..     1000    0    0    0 100%    0    0   1
+  1    1,-15  k  100%     127 .. ..     1000    0    0    0 100%    0    0   1
+  1    3,-15  j  100%     127 .. ..     1000    0    0    0 100%    0    0   1
+  1    5,-15  c  100%     127 .. ..     1000    0    0    0 100%  599    0   1
+  1    7,-15  %  100%     118 .. ..      770    0    0    0 100%  342    0   1
+  1    9,-15  t  100%     122 .. ..      770    0    0    0 100%  359    0   1
+  1   11,-15  l  100%     122 .. ..      769    0    0    0 100%  149    0   1
+  8   17,-15  f   92%     117 .. ..      707   51    0    0 100%  448    0   1
+  8   19,-15  -o 100%     127 .. ..      769    0    0    0 100%  500    0   1
+  8   23,-15  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  1    4,-14  b  100%     127 .. ..     1000    0    0    0 100%  299    0   1
+  1    6,-14  m  100%     118 .. ..      770    0    0    0 100%    0    0
+  1    8,-14  m  100%     122 .. ..      769    0    0    0 100%    1    0
+  1   10,-14  h  100%     127 .. ..      739    5    0    0 100%  188    0   1
+  1   12,-14  =  100%     127 .. ..      100    0    0    0 100%   59    0   1
+  1   14,-14  =  100%     127 .. ..      100    0    0    0 100%   59    0   1
+  1   16,-14  *   85%     101 .. 0.      850   17    1    0 100%  470    0   1
+  8   18,-14  o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   20,-14  -  100%     127 .. ..      769    0    0    0 100%  508    0   1
+  8   22,-14  !  100%     127 .. ..      769    0    0    0 100%  474    0   1
+  8   24,-14  l  100%     127 .. ..      769    0    0    0 100%  299    0   1
+  1    3,-13  j  100%     127 .. ..     1000    0    0    0 100%    0    0   1
+  1    5,-13  m  100%     127 .. ..     1000    0    0    0 100%    0    0
+  1    7,-13  m  100%     127 .. 5.      999    0  579    0 100%    0    0
+  1    9,-13  k  100%     127 .. 8.     1000    0  869    0 100%    1    0   1
+  8   19,-13  *  100%     127 .. ..      769    0    0    0 100%  474    0   1
+  8   21,-13  m  100%     127 .. ..      769    0    0    0 100%    1    0
+  8   23,-13  m  100%     127 .. ..      769    0    0    0 100%    0    0
+  8   25,-13  k  100%     127 .. ..      769    0    0    0 100%    1    0   1
+  8   27,-13  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   29,-13  t  100%     127 .. ..      769    0    0    0 100%  119    0   1
+  1    4,-12  k  100%     127 .. ..     1000    0    0    0 100%    1    0   1
+  1    6,-12  m  100%     127 .. ..     1000    0    0    0 100%    0    0
+  1    8,-12  m  100%     127 .. 5.      999    0  266    0 100%    0    0
+  1   10,-12  j  100%     127 .. 5.     1000    0    0    0 100%    0    0   1
+  1   12,-12  d  100%     127 .. ..     1000    0    0    0 100%  439    0   1
+  8   20,-12  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   22,-12  m  100%     127 .. 5.      769    0  373    0 100%    0    0
+  8   24,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
+  8   26,-12  m  100%     127 .. 5.      769    0    0    0 100%    0    0
+  8   28,-12  d  100%     127 .. ..      769    0    0    0 100%  314    0
+  8   30,-12  c  100%     127 .. ..      769    0    0    0 100%  516    0   1
+ 10  -11,-11  g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  1    3,-11  i  100%     127 .. ..     1000    0    0    0 100%    2    0   1
+  1    5,-11  m  100%     127 .. ..     1000    0    0    0 100%    0    0
+  1    7,-11  m  100%     127 .. ..     1000    0    0    0 100%    1    0   1
+  1    9,-11  r  100%     127 .. ..      999    0    0    0 100%  439    0   1
+  1   11,-11  w  100%     127 .. ..     1000  107    0    0 100%  617    0   1
+  1   13,-11  e  100%     127 .. ..      967    1    0    0 100%  599    0   1
+  1   15,-11  !  100%     127 .. ..      999   25    0    0 100%  605    0   1
+  8   21,-11  p  100%     127 .. ..      769    0    0    0 100%  474    0   1
+  8   23,-11  m  100%     127 .. 5.      769    0  512    0 100%    0    0
+  8   25,-11  m  100%     127 .. 5.      769   55  512    0 100%    0    0
+  8   27,-11  b  100%     127 .. ..      769    0    0    0 100%  299    0   1
+  8   29,-11  h  100%     127 .. ..      769    0    0    0 100%  599    0   1
+  8   31,-11  i  100%     127 .. ..      769    0    0    0 100%    0    0   1
+ 10  -12,-10  c  100%     127 .. ..     1000   55  713    0 100% 1040    0
+ 10  -10,-10  c  100%     127 .. ..     1000   55  698    0 100% 1031    0   1
+  1    4,-10  o  100%     127 .. ..     1000    0    0    0 100%    0    0   1
+  1    6,-10  +  100%     127 .. ..     1000    0    0    0 100%  599    0   1
+  1   10,-10  p  100%     127 .. ..      999    0    0    0 100%  524    0   1
+  8   20,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   22,-10  j  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  8   24,-10  k  100%     127 .. ..      769    0    0    0 100%  474    0   1
+  8   26,-10  w  100%     119 .. ..     7457    0    0    0 100%  600    0   1
+  9  -25,-7   g  100%     127 .. ..     1000    0    0    0 100%  600    0   1
+  9  -26,-6   c  100%     127 .. ..     1000   55  709    0 100% 1037    0
+  9  -24,-6   c  100%     127 .. ..     1000   55  693    0 100% 1028    0
+  6    3,-3   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  6    2,-2   c  100%     127 .. ..     1000   55  691    0 100% 1027    0
+  6    4,-2   c  100%     127 .. ..     1000   55  702    0 100% 1034    0
+  7   25,-1   g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  4  -14,0    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  7   24,0    c  100%     127 .. ..     1000   55  692    0 100% 1028    0
+  7   26,0    c  100%     127 .. ..     1000   55  705    0 100% 1036    0
+  4  -15,1    c  100%     127 .. ..     1000   55  703    0 100% 1034    0
+  4  -13,1    c  100%     127 .. ..     1000   55  688    0 100% 1026    0
+  5  -29,7    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  5  -30,8    c  100%     127 .. ..     1000   55  697    0 100% 1030    0   1
+  5  -28,8    c  100%     127 .. ..     1000   55  706    0 100% 1036    0
+  2   10,8    +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  2   12,8    w   89%     105 .. ..        1    0    0    0 100%    0    0   1
+  2   18,8    c   38%     127 .. ..       50    0    0    0 100%   20    0   1
+  3   -3,9    g  100%     127 .. ..     1000    0    0    0 100%  600    0
+  2    9,9    +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  2   11,9    j  100%     127 .. 5.      769    0  258    0 100%    0    0   1
+  2   15,9    o  100%     127 .. ..      769    0    0    0 100%    0    0   1
+  2   17,9    b  100%     127 .. ..      385    0    0    0 100%    0    0   1
+  2   19,9    gl 100%     127 .. ..      300    0    0    0 100%    1    0   1
+  2   21,9    gk 100%     127 .. ..      769    0    0    0 100%    1    0   1
+  2   23,9    g  100%     127 .. ..      400    0    0    0 100%    0    0   1
+  3   -4,10   c  100%     127 .. ..     1000   55  688    0 100% 1025    0
+  3   -2,10   c  100%     127 .. ..     1000   55  705    0 100% 1036    0
+  2   10,10   g    0%     127 .. ..      769    0    0    0 100%    1    0   1
+  2   12,10   g    1%     127 .. ..      501    0    0    0 100%    1    0   1
+  2   14,10   g    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  2   16,10   m  100%     127 .. 5.      769    0  579    0 100%    0    0
+  2   18,10   m  100%     127 .. 5.      769    0  579    0 100%    0    0
+  2   20,10   +    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  2    9,11   +    0%     127 .. ..        3    0    0    0 100%    1    0   1
+  2   11,11   +    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  2   13,11   g    0%     127 .. ..        4    0    0    0 100%    1    0
+  2   15,11   g    1%     127 .. ..        6    0    0    0 100%    2    0
+  2   17,11   g    1%     127 .. ..        5    0    0    0 100%    1    0
+  2   19,11   +    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  2   12,12   g    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  2   14,12   g    0%     127 .. ..        3    0    0    0 100%    1    0
+  2   16,12   g    0%     127 .. ..        4    0    0    0 100%    1    0
+  2   18,12   g    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  2   13,13   +    1%     127 .. ..        5    0    0    0 100%    1    0   1
+  2   15,13   +    0%     127 .. ..        2    0    0    0 100%    1    0   1
+  2   17,13   +    0%     127 .. ..        4    0    0    0 100%    1    0   1
+  2   19,13   g    0%     127 .. ..        2    0    0    0 100%    1    0   1
+113 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+   COMMODITIES deliver--  distribute
+     sect      sgpidbolhr sgpidbolhr  sh gun  pet iron dust bar  oil  lcm  hcm rad
+  1   6,-16  j .......... ...9...0..   0   0    0  999    0   0    1    1    0   0
+  1   1,-15  k .......... ...9....0.   0   0    0  999    0   0    1    0    1   0
+  1   3,-15  j .......... ...9...0..   0   0    0  999    0   0    1    1    0   0
+  1   5,-15  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-15  % .......... ..0.......   0   0    1    0    0   0   55    0    0   0
+  1   9,-15  t .......... ....0.01..   0   0    0    0   15   0   75  150    0   0
+  1  11,-15  l .......... .......4..   0   0    0    0    0   0    0  450    0   0
+  8  17,-15  f .......... 20....0.1. 183   5    0    0    0   0    1    0   92   0
+  8  19,-15  - .......... ......0...   0   0    0    0    0   0    0    0    0   0
+  8  23,-15  k .......... ...9....0.   0   0    0  999    0   0    0    0    1   0
+  1   4,-14  b .......... ..........   0   0    0    0    0 449    0    0    0   0
+  1   6,-14  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-14  m .......... ...0......   0   0    0    1    0   0    0    1    0   0
+  1  10,-14  h .......... 20.....22. 200   7    0    1    1   0    1  200  200   0
+  1  12,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  14,-14  = .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  16,-14  * .......... 2.2....22. 166   0  170    0    0   0    0  170  170   0
+  8  18,-14  o .......... ..........   0   0    0    0    0   0    1    0    0   0
+  8  20,-14  - .......... ..........   0   0    0    0    0   0    0    0    0   0
+  8  22,-14  ! .......... 20.....22.  20   0    0    0    1   0    0  200  200   0
+  8  24,-14  l .......... .......4..   0   0    0    0    1   0    0  400    0   0
+  1   3,-13  j .......... .......0..   0   0    0  599    0   0    0    1    0   0
+  1   5,-13  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-13  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   9,-13  k .......... ...a....0.   0   0    0 1200    0   0    0    0    1   0
+  8  19,-13  * .......... 2......22.   0   0    0    0    1   0    0  200  192   0
+  8  21,-13  m .......... ...0......   0   0    0    1    1   0    0    0    0   0
+  8  23,-13  m .......... ...0......   0   0    0    1    1   0    0    0    0   0
+  8  25,-13  k .......... ...9....0.   0   0    0  999    1   0    0    0    1   0
+  8  27,-13  j .......... ...9......   0   0    0  999    0   0    0 1350    0   0
+  8  29,-13  t .......... ....0.13..   0   0    0    0   30   0  150  300    0   0
+  1   4,-12  k .......... ........0.   0   0    0  601    0   0    0    0    1   0
+  1   6,-12  m ...g...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   8,-12  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-12  j .......... .......0..   0   0    0 1226    0   0    0    1    0   0
+  1  12,-12  d .......... .0....021.   0   1    0    0    0   0   20  200  100   0
+  8  20,-12  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  8  22,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  24,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  26,-12  m .......... ...0......   0   0    0    1    0   0    0    0    0   0
+  8  28,-12  d .......... .0..0.001.   0   1    0    0    1   0   10   50    0   0
+  8  30,-12  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -11,-11  g .......... ..........   0   0    0    0  231   0    0    0    0   0
+  1   3,-11  i .......... 0......63.   1   0    0    0    0   0    0  600  300   0
+  1   5,-11  m ...j...... ..........   0   0    0    0    0   0    0    0    0   0
+  1   7,-11  m .......... ...0......   0   0    0    1    0   0    0    0    1   0
+  1   9,-11  r .......... ....0.01..   0   0    0    0   10   0   50  100    0   0
+  1  11,-11  w .......... ..........   0   0  798 4404  547   0  836 3299 3521   0
+  1  13,-11  e .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  15,-11  ! .......... 20.....22. 200  11    0    0    0   0    0  200  200   0
+  8  21,-11  p .......... .......0..   0   0    0    0    1   0    0   75    0   0
+  8  23,-11  m .......... ...0......   0   0    0  462    0   0    0    0    0   0
+  8  25,-11  m .......... ...0......   0   0    0 2669    0   0    0    0    0   0
+  8  27,-11  b .......... ....3.....   0   0    0    0  300 355    0    0    0   0
+  8  29,-11  h .......... .......22.   0   0    0    0    1   0    0  200  200   0
+  8  31,-11  i .......... 0......63.   1   0    0    0    0   0    0  600   82   0
+ 10 -12,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+ 10 -10,-10  c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1   4,-10  o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  1   6,-10  + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  1  10,-10  p .......... .......0..   0   0    0    0    0   0    0   75    0   0
+  8  20,-10  j .......... ...9...0..   0   0    0  999    1   0    0    1    0   0
+  8  22,-10  j .......... ...9...0..   0   0    0  999    0   0    0    1    0   0
+  8  24,-10  k .......... ...90...0.   0   0    0  999    1   0    0    0    0   0
+  8  26,-10  w .......... ..........   0   0    0 5408 2165   0  365  293    0   0
+  9 -25,-7   g .......... ..........   0   0    0    0   29   0    0    0    0   0
+  9 -26,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  9 -24,-6   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   3,-3   g .......... ..........   0   0    0    0  397   0    0    0    0   0
+  6   2,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  6   4,-2   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  25,-1   g .......... ..........   0   0    0    0  342   0    0    0    0   0
+  4 -14,0    g .......... ..........   0   0    0    0  307   0    0    0    0   0
+  7  24,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  7  26,0    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -15,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  4 -13,1    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -29,7    g .......... ..........   0   0    0    0  365   0    0    0    0   0
+  5 -30,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  5 -28,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  10,8    + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  12,8    w .......... ..........   0   0    0 1158  969   0  522  100    0   0
+  2  18,8    c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -3,9    g .......... ..........   0   0    0    0  366   0    0    0    0   0
+  2   9,9    + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  11,9    j .......... ...90..0..   0   0    0  999    1   0    0    1    0   0
+  2  15,9    o .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  2  17,9    b .......... ....3.....   0   0    0    0  300  71    0    0    0   0
+  2  19,9    g .......... .......3..   0   0    0    0    1   0    0  300    0   0
+  2  21,9    g .......... ...9....0.   0   0    0  999    1   0    0    0    0   0
+  2  23,9    g .......... ...90.....   0   0    0    0    1   0    0    0    0   0
+  3  -4,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  3  -2,10   c .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  10,10   g .......... ....0.13..   0   0    0    0    1   0    0    0    0   0
+  2  12,10   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  14,10   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  16,10   m .......... ...00.....   0   0    0    1    1   0    0    0    0   0
+  2  18,10   m .......... ...00.....   0   0    0    1    1   0    0    0    0   0
+  2  20,10   + .......... ......0...   0   0    0    0    0   0    1    0    0   0
+  2   9,11   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  11,11   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  13,11   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  15,11   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  17,11   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  19,11   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  12,12   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  14,12   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  16,12   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  18,12   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+  2  13,13   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  15,13   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  17,13   + .......... ..........   0   0    0    0    0   0    0    0    0   0
+  2  19,13   g .......... ....0.....   0   0    0    0    1   0    0    0    0   0
+113 sectors
+
+[0:630] Command : Thu Jan  1 00:00:00 1970
+    RESOURCE
+own   sect        eff  min gold fert oil uran 
+  1    6,-16  j  100%    0    0   82   1    0
+  1    1,-15  k  100%    6    0   67   0    0
+  1    3,-15  j  100%   11    0   61   0    0
+  1    5,-15  c  100%   28    5   37   0    0
+  1    7,-15  %  100%    0    0   76  25    0
+  1    9,-15  t  100%   39   14   21   0    0
+  1   11,-15  l  100%    0    0   91  72    0
+  8   17,-15  f   92%    0    0  100   1    0
+  8   19,-15  -o 100%    0    0  100 100    0
+  8   23,-15  k  100%   11    0   61  21    0
+  1    4,-14  b  100%   34    0   28   0    0
+  1    6,-14  m  100%  100   69    0   0   97
+  1    8,-14  m  100%   96   60    0   0   77
+  1   10,-14  h  100%   45   19   13   0    0
+  1   12,-14  =  100%    0    0   45  11    0
+  1   14,-14  =  100%    0    0   63  46    0
+  1   16,-14  *   85%    0    0  100  98    0
+  8   18,-14  o  100%    0    0   91  14    0
+  8   20,-14  -  100%    0    0   82  58    0
+  8   22,-14  !  100%   50    0    6   0    0
+  8   24,-14  l  100%   45    1   13   0    0
+  1    3,-13  j  100%   23    1   43   0    0
+  1    5,-13  m  100%  100    0  100 100  100
+  1    7,-13  m  100%  100  100  100 100  100
+  1    9,-13  k  100%   17    0   52   7    0
+  8   19,-13  *  100%   56    0    0   0    5
+  8   21,-13  m  100%   96    0    0   0   77
+  8   23,-13  m  100%  100    0    0   0   88
+  8   25,-13  k  100%   63   33    0   0   17
+  8   27,-13  j  100%    0    0   76  47    0
+  8   29,-13  t  100%   28    0   37   0    0
+  1    4,-12  k  100%   74   42    0   0   37
+  1    6,-12  m  100%  100    0    0   0  100
+  1    8,-12  m  100%  100    0    0   0   88
+  1   10,-12  j  100%   50    0    6   0    0
+  1   12,-12  d  100%   63    0    0   0   17
+  8   20,-12  j  100%   74    0    0   0   37
+  8   22,-12  m  100%  100    0    0   0   97
+  8   24,-12  m  100%  100    0    0   0  100
+  8   26,-12  m  100%  100    0    0   0  100
+  8   28,-12  d  100%   91    0    0   0   68
+  8   30,-12  c  100%   23    1   43   0    0
+ 10  -11,-11  g  100%   78    0    0   0   45
+  1    3,-11  i  100%    0    0  100   2    0
+  1    5,-11  m  100%  100    0    0   0  100
+  1    7,-11  m  100%   91    0    0   0   68
+  1    9,-11  r  100%   85    0    0   0   57
+  1   11,-11  w  100%   78    0    0   0   45
+  1   13,-11  e  100%   67    0    0   0   25
+  1   15,-11  !  100%   56    1    0   0    5
+  8   21,-11  p  100%   85    0    0   0   57
+  8   23,-11  m  100%  100    0  100 100  100
+  8   25,-11  m  100%  100    0  100 100  100
+  8   27,-11  b  100%   39    3   21   0    0
+  8   29,-11  h  100%   34    0   28   0    0
+  8   31,-11  i  100%    0    0  100 100    0
+ 10  -12,-10  c  100%  100  100  100 100  100
+ 10  -10,-10  c  100%  100  100  100 100  100
+  1    4,-10  o  100%    0    0  100   8    0
+  1    6,-10  +  100%    0    0  100 100    0
+  1   10,-10  p  100%    0    0  100  98    0
+  8   20,-10  j  100%   78    0    0   0   45
+  8   22,-10  j  100%    6    0   67  32    0
+  8   24,-10  k  100%   67    0    0   0   25
+  8   26,-10  w  100%   17    0   52   7    0
+  9  -25,-7   g  100%   28    0   37   0    0
+  9  -26,-6   c  100%  100  100  100 100  100
+  9  -24,-6   c  100%  100  100  100 100  100
+  6    3,-3   g  100%  100    0    0   0  100
+  6    2,-2   c  100%  100  100  100 100  100
+  6    4,-2   c  100%  100  100  100 100  100
+  7   25,-1   g  100%  100    0    0   0   97
+  4  -14,0    g  100%   96    0    0   0   77
+  7   24,0    c  100%  100  100  100 100  100
+  7   26,0    c  100%  100  100  100 100  100
+  4  -15,1    c  100%  100  100  100 100  100
+  4  -13,1    c  100%  100  100  100 100  100
+  5  -29,7    g  100%  100    0    0   0  100
+  5  -30,8    c  100%  100  100  100 100  100
+  5  -28,8    c  100%  100  100  100 100  100
+  2   10,8    +    0%    0    0  100  87    0
+  2   12,8    w   89%   17    0   52   7    0
+  2   18,8    c   38%   23    1   43   0    0
+  3   -3,9    g  100%  100    0    0   0  100
+  2    9,9    +    0%    6    0   67  32    0
+  2   11,9    j  100%   56    0    0   0    5
+  2   15,9    o  100%    0    0  100  31    0
+  2   17,9    b  100%   34    0   28   0    0
+  2   19,9    gl 100%   78    1    0   0   45
+  2   21,9    gk 100%   74    3    0   0   37
+  2   23,9    g  100%   39    8   21   0    0
+  3   -4,10   c  100%  100  100  100 100  100
+  3   -2,10   c  100%  100  100  100 100  100
+  2   10,10   g    0%   45   19   13   0    0
+  2   12,10   g    1%   63   33    0   0   17
+  2   14,10   g    0%   91   56    0   0   68
+  2   16,10   m  100%  100    0  100 100  100
+  2   18,10   m  100%  100    0  100 100  100
+  2   20,10   +    1%    0    0  100 100    0
+  2    9,11   +    0%    0    0   82  58    0
+  2   11,11   +    1%   11    0   61  21    0
+  2   13,11   g    0%  100   69    0   0   97
+  2   15,11   g    1%  100   74    0   0  100
+  2   17,11   g    1%  100   80    0   0  100
+  2   19,11   +    0%    0    0  100  98    0
+  2   12,12   g    0%   67   37    0   0   25
+  2   14,12   g    0%  100   65    0   0   88
+  2   16,12   g    0%   96   60    0   0   77
+  2   18,12   g    1%   85   51    0   0   57
+  2   13,13   +    1%    0    0   91  72    0
+  2   15,13   +    0%   28    5   37   0    0
+  2   17,13   +    0%    0    0   76  47    0
+  2   19,13   g    0%   50   23    6   0    0
+113 sectors
+
+[0:630] Command : You have a new telegram waiting ...
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Update Turn 99 completed successfully
+Player 00 Turn 99 starting
+
+
+       -=O=-
+
+[0:640] Command : XDUMP sect 0
+0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 21 75 1 4 0 0 76 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+/1
+
+[0:640] Command : XDUMP ship 0
+0 1 18 -12 6 100 127 0 0 0 0 0 0 "" 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 10 -14 1 0 ""
+1 1 10 -14 2 100 127 0 30 0 0 0 0 "" 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 300 25 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 "" 1 "" 10 -14 1 0 ""
+2 1 10 -14 15 100 127 0 44 0 0 0 0 "" 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 2 "" 10 -14 1 0 ""
+3 1 10 -14 8 100 127 0 50 0 0 0 0 "" 11 10 -13 -14 -1 -1 -1 -1 -1 -1 9 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 0 0 0 0 4 990 0 0 0 0 0 0 0 0 448 0 0 0 0 0 0 0 0 "" 3 "" 10 -14 1 0 ""
+4 1 11 -13 1 100 127 0 50 0 0 0 0 "" 10 11 -14 -13 8 -1 -1 -1 -1 -1 8 -1 -1 -1 -1 -1 30 0 0 0 0 0 30 0 0 0 0 0 4 300 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 "" 4 "" 10 -14 1 0 ""
+/5
+
+[0:640] Command : XDUMP plane 0
+/0
+
+[0:640] Command : XDUMP land 0
+0 1 10 -14 0 100 127 0 30 0 0 0 0 "" 1 0 42 0 "" 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
+3 1 10 -14 0 100 127 0 30 0 0 0 0 "" -1 117 42 0 "" 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
+4 1 16 -14 0 81 127 0 30 0 0 0 0 "" -1 28 42 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
+5 1 16 -14 11 98 108 0 37 0 0 0 0 "" -1 0 42 0 "" 0 5 35 10 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
+/4
+
+[0:640] Command : XDUMP nuke 0
+/0
+
+[0:640] Command : XDUMP news 0
+1 15 0 1 0 0
+2 15 0 1 0 0
+3 15 0 1 0 0
+4 15 0 1 0 0
+5 15 0 1 0 0
+6 15 0 1 0 0
+7 15 0 1 0 0
+8 15 0 1 0 0
+9 15 0 1 0 0
+10 15 0 1 0 0
+1 73 8 1 0 0
+8 38 1 1 0 0
+1 4 2 1 0 0
+1 28 8 1 0 0
+1 26 2 1 0 0
+2 26 1 1 0 0
+2 66 8 1 0 0
+8 28 1 1 0 0
+8 66 2 1 0 0
+1 10 8 1 0 0
+8 14 1 1 0 0
+1 58 8 1 0 0
+1 2 8 1 0 0
+/23
+
+[0:640] Command : XDUMP treaty 0
+/0
+
+[0:640] Command : XDUMP trade 0
+/0
+
+[0:640] Command : XDUMP nat 0
+0 5 "POGO" "peter" "127.0.0.1" "" "tester" 0 0 0 0 0 0 0 255 640 0 0 123456789 0 0 0 0 0.00000 0.00000 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62
+1 4 "1" "1" "127.0.0.1" "" "tester" 5 -15 5 -13 0 1 0 255 640 0 36 60242 0 0 0 0 64.7274 21.7309 39.0988 12.0882 2 2 4 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62
+2 4 "2" "2" "127.0.0.1" "" "tester" 18 8 16 10 0 1 0 255 640 0 99 37950 0 0 0 0 26.8560 10.8655 11.8503 0.00000 2 4 2 2 2 2 2 2 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62
+3 4 "3" "3" "127.0.0.1" "" "tester" -4 10 -4 10 0 17 1 255 640 0 0 38153 0 0 0 0 26.8560 10.8655 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62
+4 4 "4" "4" "127.0.0.1" "" "tester" -15 1 -15 1 0 17 1 255 640 0 0 38147 0 0 0 0 26.8560 10.8655 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62
+5 4 "5" "5" "127.0.0.1" "" "tester" -30 8 -30 8 0 17 1 255 640 0 0 38156 0 0 0 0 26.8560 10.8655 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62
+6 4 "6" "6" "127.0.0.1" "" "tester" 2 -2 2 -2 0 17 1 255 640 0 0 38152 0 0 0 0 26.8560 10.8655 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62
+7 4 "7" "7" "127.0.0.1" "" "tester" 24 0 24 0 0 17 1 255 640 0 0 38161 0 0 0 0 26.8560 10.8655 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62
+8 4 "8" "8" "127.0.0.1" "" "tester" 30 -12 23 -11 0 1 0 255 640 0 0 26692 0 0 0 0 51.6318 10.8655 40.4815 6.98864 2 0 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62
+9 4 "9" "9" "127.0.0.1" "" "tester" -26 -6 -26 -6 0 17 1 255 640 0 0 38158 0 0 0 0 26.8560 10.8655 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62
+10 4 "10" "10" "127.0.0.1" "" "tester" -12 -10 -12 -10 0 17 1 255 640 0 0 38158 0 0 0 0 26.8560 10.8655 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62
+11 2 "visitor" "visitor" "" "" "" 0 0 0 0 0 0 0 255 640 0 0 0 0 0 0 0 0.00000 0.00000 0.00000 0.00000 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62
+/12
+
+[0:640] Command : XDUMP loan 0
+/0
+
+[0:640] Command : XDUMP commodity 0
+/0
+
+[0:640] Command : XDUMP lost 0
+0 1 3 1 11 -13
+0 1 3 2 10 -14
+/2
+
+[0:640] Command : XDUMP realm 0
+0 0 0 0 0 0
+/1
+
+[0:640] Command : XDUMP game 0
+0 0 18 0 0
+/1
+
+[0:640] Command : XDUMP item 0
+0 "civilians" "c" 1 0 1 1 10 10 10 10 4
+1 "military" "m" 0 1 1 1 1 1 1 1 20
+2 "shells" "s" 5 1 1 1 1 10 1 1 80
+3 "guns" "g" 60 1 10 1 1 10 1 1 100
+4 "petrol" "p" 4 1 1 1 1 10 1 1 50
+5 "iron\040ore" "i" 2 1 1 1 1 10 1 1 100
+6 "dust\040(gold)" "d" 20 1 5 1 1 10 1 1 100
+7 "bars\040of\040gold" "b" 280 1 50 1 1 5 1 4 200
+8 "food" "f" 0 1 1 1 1 10 1 1 2
+9 "oil" "o" 8 1 1 1 1 10 1 1 50
+10 "light\040products" "l" 2 1 1 1 1 10 1 1 100
+11 "heavy\040products" "h" 4 1 1 1 1 10 1 1 100
+12 "uncompensated\040workers" "u" 1 1 2 1 1 2 1 1 2
+13 "radioactive\040materials" "r" 150 1 8 1 1 10 1 1 1000
+/14
+
+[0:640] Command : XDUMP product 0
+0 "iron\040ore" "iron" -1 -1 -1 0 0 0 5 -1 0 0 0 -1 0 0
+1 "gold\040dust" "dust" -1 -1 -1 0 0 0 6 -1 0 0 20 -1 0 0
+2 "food" "food" -1 -1 -1 0 0 0 8 -1 0 0 0 0 -10 10
+3 "oil" "oil" -1 -1 -1 0 0 0 9 -1 0 0 10 0 -10 10
+4 "radioactive\040materials" "rad" -1 -1 -1 0 0 0 13 -1 2 0 35 0 40 10
+5 "shells" "shells" 10 11 -1 2 1 0 2 -1 3 0 0 0 20 10
+6 "guns" "guns" 9 10 11 1 5 10 3 -1 30 0 0 0 20 10
+7 "petrol" "petrol" 9 -1 -1 1 0 0 4 -1 1 0 0 0 20 10
+8 "gold\040bars" "bars" 6 -1 -1 5 0 0 7 -1 10 0 0 -1 0 0
+9 "light\040construction\040materials" "lcm" 5 -1 -1 1 0 0 10 -1 0 0 0 0 -10 10
+10 "heavy\040construction\040materials" "hcm" 5 -1 -1 2 0 0 11 -1 0 0 0 0 -10 10
+11 "technological\040breakthroughs" "tech" 6 9 10 1 5 10 -1 0 300 0 0 2 5 10
+12 "medical\040discoveries" "medical" 6 9 10 1 5 10 -1 1 90 0 0 2 5 10
+13 "a\040class\040of\040graduates" "edu" 10 -1 -1 1 0 0 -1 2 9 0 0 -1 0 0
+14 "happy\040strollers" "happy" 10 -1 -1 1 0 0 -1 3 9 0 0 -1 0 0
+/15
+
+[0:640] Command : XDUMP sect-chr 0
+0 "sea" "." 0 -1 0 -1.00000 -1.00000 1 1 0.00000 0.00000 0 -1 0 0 0 0 0
+1 "mountain" "^" 1 1 75 2.40000 1.20000 0 1 1.00000 4.00000 5 -1 1 0 0 0 100
+2 "sanctuary" "s" 4 -1 0 -1.00000 -1.00000 0 1 0.00000 99.0000 127 -1 0 0 0 0 1000
+3 "wasteland" "\134" 3 -1 0 -1.00000 -1.00000 0 1 0.00000 99.0000 0 -1 0 0 0 0 0
+4 "wilderness" "-" 4 -1 0 0.400000 0.400000 0 1 1.00000 2.00000 1 0 0 0 0 0 1000
+5 "capital" "c" 4 -1 0 0.400000 0.200000 0 1 1.00000 2.00000 30 0 1 0 0 1 1000
+6 "uranium\040mine" "u" 4 4 100 0.400000 0.200000 0 1 1.00000 2.00000 15 0 1 0 0 0 1000
+7 "park" "p" 4 14 100 0.400000 0.200000 0 1 1.00000 1.50000 5 0 1 0 0 0 1000
+8 "defense\040plant" "d" 4 6 100 0.400000 0.200000 0 1 1.00000 1.50000 7 0 1 0 0 0 1000
+9 "shell\040industry" "i" 4 5 100 0.400000 0.200000 0 1 1.00000 1.50000 6 0 1 0 0 0 1000
+10 "mine" "m" 4 0 100 0.400000 0.200000 0 1 1.00000 2.00000 5 0 1 0 0 0 1000
+11 "gold\040mine" "g" 4 1 100 0.400000 0.200000 0 1 1.00000 2.00000 8 0 1 0 0 0 1000
+12 "harbor" "h" 4 -1 0 0.400000 0.200000 2 2 1.00000 1.50000 12 0 1 0 0 0 1000
+13 "warehouse" "w" 4 -1 0 0.400000 0.200000 0 2 1.00000 1.50000 7 0 1 0 0 0 1000
+14 "airfield" "*" 4 -1 0 0.400000 0.200000 0 1 1.00000 1.25000 12 0 1 0 0 0 1000
+15 "agribusiness" "a" 4 2 900 0.400000 0.200000 0 1 1.00000 1.50000 2 0 1 0 0 0 1000
+16 "oil\040field" "o" 4 3 100 0.400000 0.200000 0 1 1.00000 1.50000 5 0 1 0 0 0 1000
+17 "light\040manufacturing" "j" 4 9 100 0.400000 0.200000 0 1 1.00000 1.50000 3 0 1 0 0 0 1000
+18 "heavy\040manufacturing" "k" 4 10 100 0.400000 0.200000 0 1 1.00000 1.50000 4 0 1 0 0 0 1000
+19 "fortress" "f" 4 -1 0 0.400000 0.200000 0 1 2.00000 4.00000 10 0 5 0 1 0 1000
+20 "technical\040center" "t" 4 11 100 0.400000 0.200000 0 1 1.00000 1.50000 10 0 1 0 0 0 1000
+21 "research\040lab" "r" 4 12 100 0.400000 0.200000 0 1 1.00000 1.50000 9 0 1 0 0 0 1000
+22 "nuclear\040plant" "n" 4 -1 0 0.400000 0.200000 0 1 1.00000 2.00000 10 0 1 0 0 0 1000
+23 "library/school" "l" 4 13 100 0.400000 0.200000 0 1 1.00000 1.50000 4 0 1 0 0 0 1000
+24 "highway" "+" 4 -1 0 0.400000 0.00000 0 1 1.00000 1.00000 3 0 1 0 0 0 1000
+25 "radar\040installation" ")" 4 -1 0 0.400000 0.200000 0 1 1.00000 1.50000 4 0 1 0 0 0 1000
+26 "headquarters" "!" 4 -1 0 0.400000 0.200000 0 1 1.00000 1.50000 12 0 1 0 0 0 1000
+27 "bridge\040head" "#" 4 -1 0 0.400000 0.00000 0 1 1.00000 1.00000 3 0 1 0 0 0 1000
+28 "bridge\040span" "=" 0 -1 0 0.400000 0.00000 4 1 1.00000 1.00000 5 -1 1 0 0 0 100
+29 "bank" "b" 4 8 100 0.400000 0.200000 0 4 1.00000 2.25000 10 0 1 0 0 0 1000
+30 "refinery" "%" 4 7 1000 0.400000 0.200000 0 1 1.00000 1.50000 2 0 1 0 0 0 1000
+31 "enlistment\040center" "e" 4 -1 0 0.400000 0.200000 0 1 1.00000 2.00000 7 0 1 0 0 0 1000
+32 "plains" "~" 32 -1 0 0.400000 0.200000 0 1 1.00000 1.50000 1 -1 1 0 0 0 100
+33 "bridge\040tower" "@" 0 -1 0 0.400000 0.00000 0 1 1.00000 1.50000 4 -1 1 0 0 0 100
+/34
+
+[0:640] Command : XDUMP ship-chr 0
+0 "fb\040\040\040fishing\040boat" 300 10 0 0 0 0 0 0 900 0 0 0 15 0 25 15 10 10 15 2 0 0 0 0 0 180 524289 0 0
+1 "ft\040\040\040fishing\040trawler" 300 10 0 0 0 0 0 0 900 0 0 0 15 0 25 15 10 25 15 2 0 0 0 0 35 300 524289 0 0
+2 "cs\040\040\040cargo\040ship" 600 50 300 50 0 0 0 0 900 0 1400 900 250 0 60 40 20 25 35 3 0 0 1 0 20 500 262144 0 2
+3 "os\040\040\040ore\040ship" 30 5 0 0 0 990 990 0 200 0 0 0 45 990 60 40 20 25 35 3 0 0 1 0 20 500 0 0 0
+4 "ss\040\040\040slave\040ship" 20 80 0 0 0 0 0 0 200 0 0 0 1200 0 60 40 20 10 35 3 0 0 1 0 0 300 0 0 0
+6 "frg\040\040frigate" 0 60 10 2 0 0 0 0 60 0 0 0 0 0 30 30 50 25 25 3 1 1 1 0 0 600 16384 0 2
+7 "oe\040\040\040oil\040exploration\040boat" 10 5 0 0 0 0 0 0 100 1 0 0 0 0 25 15 10 25 15 2 0 0 0 0 40 800 524320 0 0
+8 "od\040\040\040oil\040derrick" 990 80 0 0 0 0 0 0 990 990 0 0 990 0 60 60 30 15 65 3 0 0 2 0 50 1500 32 0 0
+9 "pt\040\040\040patrol\040boat" 0 2 12 2 0 0 0 0 5 0 0 0 0 0 20 10 10 38 10 2 1 1 0 0 40 300 524290 0 0
+10 "lc\040\040\040light\040cruiser" 0 100 40 5 0 0 0 0 100 0 0 0 0 0 30 40 50 30 30 5 6 3 1 0 45 800 128 0 2
+11 "hc\040\040\040heavy\040cruiser" 0 120 100 8 0 0 0 0 200 0 0 0 0 0 40 50 70 30 30 5 8 4 1 0 50 1200 0 0 4
+12 "tt\040\040\040troop\040transport" 0 120 20 4 0 0 0 0 120 0 0 0 0 0 50 50 60 20 35 3 1 2 1 0 10 800 16384 0 2
+13 "bb\040\040\040battleship" 0 200 200 10 0 0 0 0 900 0 0 0 0 0 50 70 95 25 35 6 10 7 1 0 45 1800 0 0 2
+14 "bbc\040\040battlecruiser" 0 180 100 10 0 0 0 0 400 0 0 0 0 0 50 60 55 30 35 6 10 6 1 0 75 1500 0 0 2
+15 "tk\040\040\040tanker" 30 5 0 0 990 0 0 0 200 990 0 0 25 0 60 40 75 25 45 3 0 0 1 0 35 600 262144 0 0
+16 "ms\040\040\040minesweeper" 0 10 100 1 0 0 0 0 90 0 0 0 0 0 25 15 10 25 15 2 0 0 0 0 40 400 524672 0 0
+17 "dd\040\040\040destroyer" 0 60 40 4 0 0 0 0 80 0 0 0 0 0 30 30 45 35 20 4 6 3 1 0 70 600 196 0 1
+18 "sb\040\040\040submarine" 0 25 36 5 0 0 0 0 80 0 0 0 0 0 30 30 25 20 5 4 3 3 0 0 60 650 706 0 0
+19 "sbc\040\040cargo\040submarine" 5 10 104 20 100 0 0 0 900 0 500 300 0 0 40 40 50 30 2 3 0 0 0 0 150 1200 262720 0 0
+20 "cal\040\040light\040carrier" 0 175 250 4 300 0 0 0 180 0 0 0 0 0 50 60 60 30 40 5 2 2 4 20 80 2700 8 20 0
+21 "car\040\040aircraft\040carrier" 0 350 500 4 500 0 0 0 900 0 0 0 0 0 60 70 80 35 40 7 2 2 10 40 160 4500 8 40 0
+22 "can\040\040nuc\040carrier" 0 350 999 4 999 0 0 0 900 0 0 0 0 0 70 80 100 45 40 9 2 2 20 4 305 8000 262152 60 0
+23 "ls\040\040\040landing\040ship" 0 400 10 1 0 0 0 0 300 0 0 0 0 0 60 40 40 30 30 2 0 0 2 0 145 1000 2048 0 6
+24 "af\040\040\040asw\040frigate" 0 60 60 4 0 0 0 0 120 0 0 0 0 0 40 30 50 35 30 5 2 2 4 0 220 800 4166 0 0
+25 "na\040\040\040nuc\040attack\040sub" 0 25 60 6 0 0 0 0 500 0 0 0 0 0 30 40 45 40 3 6 5 3 0 0 260 1200 4802 0 0
+26 "ad\040\040\040asw\040destroyer" 0 100 80 6 40 0 0 0 500 0 0 0 0 0 40 40 60 40 35 6 8 3 10 2 240 1500 4166 0 0
+27 "nm\040\040\040nuc\040miss\040sub" 0 25 200 1 0 0 0 0 500 0 0 0 0 0 30 40 55 35 2 6 0 0 0 0 270 1500 592 20 0
+28 "msb\040\040missile\040sub" 0 25 100 1 0 0 0 0 500 0 0 0 0 0 30 30 35 30 3 3 0 0 0 0 230 1200 592 10 0
+29 "mb\040\040\040missile\040boat" 0 5 100 3 0 0 0 0 500 0 0 0 0 0 20 20 15 40 15 3 2 2 0 0 180 500 16 10 0
+30 "mf\040\040\040missile\040frigate" 0 60 220 4 0 0 0 0 120 0 0 0 0 0 40 30 50 35 30 5 2 2 2 0 280 1000 16 20 0
+31 "mc\040\040\040missile\040cruiser" 0 120 500 6 160 0 0 0 200 0 0 0 0 0 50 50 70 35 35 8 8 6 8 8 290 1500 1048592 40 0
+32 "aac\040\040aa\040cruiser" 0 100 100 15 0 0 0 0 200 0 0 0 0 0 50 60 80 35 30 6 1 8 1 0 130 1500 1048576 0 4
+33 "agc\040\040aegis\040cruiser" 0 200 400 25 40 0 0 0 900 0 0 0 0 0 50 60 80 35 30 6 1 16 30 2 265 4000 1048592 32 0
+34 "ncr\040\040nuc\040cruiser" 0 200 400 8 40 0 0 0 900 0 0 0 0 0 50 50 100 45 35 6 14 7 10 2 325 1800 1048592 20 0
+35 "nas\040\040nuc\040asw\040cruiser" 0 200 120 6 160 0 0 0 500 0 0 0 0 0 50 50 80 45 35 9 10 4 25 8 330 1800 4166 0 0
+36 "nsp\040\040nuc\040supply\040ship" 50 50 600 50 999 0 0 0 999 0 1500 900 0 0 60 40 40 45 35 6 0 0 10 2 360 1500 262144 0 2
+/36
+
+[0:640] Command : XDUMP plane-chr 0
+0 "f1\040\040\040Sopwith\040Camel" 8 2 400 50 90 1 1 1 4 1 1 0 22
+1 "f2\040\040\040P-51\040Mustang" 8 2 400 80 80 1 4 4 8 1 1 0 70
+2 "jf1\040\040F-4\040Phantom" 12 4 1000 125 45 1 14 14 11 2 3 0 70
+3 "jf2\040\040AV-8B\040Harrier" 12 4 1400 195 30 1 17 17 14 2 3 0 86
+4 "sf\040\040\040F-117A\040Nighthawk" 15 5 3000 325 45 3 19 19 20 2 4 80 70
+5 "es\040\040\040P-38\040Lightning" 9 3 700 90 60 1 5 5 15 1 2 0 131074
+6 "jes\040\040F-14E\040jet\040escort" 14 8 1400 160 60 1 10 10 25 2 3 0 131074
+7 "lb\040\040\040TBD-1\040Devastator" 10 3 550 60 50 2 0 3 7 1 1 0 83
+8 "jl\040\040\040A-6\040Intruder" 14 4 1000 130 25 3 0 9 11 2 3 0 67
+9 "mb\040\040\040medium\040bomber" 14 5 1000 80 45 4 0 5 14 3 3 0 3
+10 "jfb\040\040FB-111\040Aardvark\040f/b" 20 10 1800 140 30 7 8 8 20 5 5 0 3
+11 "hb\040\040\040B-26B\040Marauder" 20 6 1100 90 90 5 0 4 15 2 2 0 1
+12 "jhb\040\040B-52\040Strato-Fortress" 26 13 3200 150 80 12 0 11 35 5 6 0 1
+13 "sb\040\040\040B-2\040stealth\040bomber" 15 5 4000 325 25 8 0 15 28 2 5 80 3
+14 "as\040\040\040anti-sub\040plane" 10 3 550 100 85 2 0 3 15 2 2 0 819202
+15 "np\040\040\040naval\040plane" 20 10 1800 135 70 3 0 4 28 4 2 0 819274
+16 "nc\040\040\040AH-1\040Cobra" 8 2 800 160 55 2 0 3 11 2 2 0 573458
+17 "ac\040\040\040AH-64\040Apache" 8 2 800 200 15 1 0 9 11 2 2 40 16402
+18 "tc\040\040\040transport\040chopper" 8 2 800 135 0 5 0 3 7 2 2 40 81944
+19 "tr\040\040\040C-56\040Lodestar" 14 5 1000 85 0 7 0 2 15 3 3 0 65544
+20 "jt\040\040\040C-141\040Starlifter" 18 5 1500 160 0 16 0 9 35 3 4 0 65544
+21 "zep\040\040Zeppelin" 6 2 1000 70 60 2 0 -3 15 3 2 0 154
+22 "re\040\040\040recon" 12 4 800 130 0 0 0 4 15 2 2 20 128
+23 "sp\040\040\040E2-C\040Hawkeye" 15 5 2000 190 0 0 0 11 32 2 5 50 128
+24 "lst\040\040landsat" 20 20 2000 245 0 0 0 3 41 0 9 0 512
+25 "ss\040\040\040KH-7\040spysat" 20 20 4000 305 0 0 0 3 61 0 9 0 896
+26 "mi\040\040\040Harpoon" 8 2 300 160 50 6 0 5 6 0 0 0 1048690
+27 "sam\040\040Sea\040Sparrow" 3 1 200 180 0 0 0 18 2 0 0 0 8308
+28 "ssm\040\040V2" 15 15 800 145 60 3 0 3 4 0 0 0 50
+29 "srbm\040Atlas" 20 20 1000 200 60 6 0 5 9 0 0 0 50
+30 "irbm\040Titan" 20 20 1500 260 60 8 0 10 15 0 0 0 50
+31 "icbm\040Minuteman" 20 20 3000 310 60 10 0 15 41 0 0 0 50
+32 "slbm\040Trident" 20 20 2000 280 60 8 0 6 23 0 0 0 114
+33 "asat\040anti-sat" 20 20 2000 305 50 6 0 7 13 0 4 0 560
+34 "abm\040\040Patriot" 16 8 1500 270 50 0 0 31 12 0 0 0 2096
+/35
+
+[0:640] Command : XDUMP land-chr 0
+0 "cav\040\040cavalry" 0 20 0 0 0 0 0 0 12 0 0 0 0 0 10 5 30 500 1.20000 0.500000 80 32 18 4 3 0 0 0 0 0 0 0 80
+1 "linf\040light\040infantry" 0 25 1 0 0 0 0 0 15 0 0 0 0 0 8 4 40 300 1.00000 1.50000 60 28 15 2 1 0 0 0 1 1 0 0 272
+2 "inf\040\040infantry" 0 100 0 0 0 0 0 0 24 0 0 0 0 0 10 5 50 500 1.00000 1.50000 60 25 15 2 1 0 0 0 0 0 0 0 272
+3 "mtif\040motor\040inf" 0 100 8 0 0 0 0 0 60 0 0 0 0 0 15 10 190 400 1.20000 2.20000 60 33 17 1 3 0 0 0 2 3 0 0 16
+4 "mif\040\040mech\040inf" 0 100 8 0 0 0 0 0 60 0 0 0 0 0 15 10 190 800 1.50000 2.50000 50 33 17 1 3 0 0 0 2 3 0 0 16
+5 "mar\040\040marines" 0 100 4 0 0 0 0 0 60 0 0 0 0 0 10 5 140 1000 1.40000 2.40000 60 25 14 2 1 0 0 0 1 2 0 0 304
+6 "sup\040\040supply" 0 25 200 10 300 100 100 10 300 0 200 100 0 0 10 5 50 500 0.100000 0.200000 80 25 20 1 0 0 0 0 0 0 0 0 20
+7 "tra\040\040train" 0 990 990 200 990 500 500 100 990 990 990 990 0 150 100 50 40 3500 0.00000 0.00000 120 10 25 3 0 0 0 0 0 0 5 12 6148
+8 "spy\040\040infiltrator" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 5 40 750 0.00000 0.00000 80 32 18 4 3 0 0 0 0 0 0 0 1360
+9 "com\040\040commando" 0 0 3 0 0 0 0 0 0 0 0 0 0 0 10 5 55 1500 0.00000 0.00000 80 32 18 4 3 0 0 0 0 0 0 0 1360
+10 "aau\040\040aa\040unit" 0 20 5 0 0 0 0 0 12 0 0 0 0 0 20 10 70 500 0.500000 1.00000 60 18 20 1 1 0 0 0 1 2 0 0 528
+11 "art\040\040artillery" 0 25 40 10 0 0 0 0 24 0 0 0 0 0 20 10 35 800 0.100000 0.400000 70 18 20 1 0 8 50 5 2 1 0 0 16
+12 "lat\040\040lt\040artillery" 0 25 20 6 0 0 0 0 12 0 0 0 0 0 20 10 70 500 0.200000 0.600000 60 30 18 1 1 5 10 3 1 1 0 0 16
+13 "hat\040\040hvy\040artillery" 0 25 80 12 0 0 0 0 24 0 0 0 0 0 40 20 100 800 0.00000 0.200000 60 12 20 1 0 11 99 8 4 1 0 0 0
+14 "mat\040\040mech\040artillery" 0 25 40 10 0 0 0 0 15 0 0 0 0 0 20 10 200 1000 0.200000 0.600000 50 35 17 1 1 8 35 6 3 3 0 0 16
+15 "eng\040\040engineer" 0 20 3 0 0 0 0 0 12 0 0 0 0 0 10 5 130 3000 1.20000 2.40000 50 25 14 2 1 0 0 0 1 1 0 0 274
+16 "meng\040mech\040engineer" 0 20 4 0 0 0 0 0 15 0 0 0 0 0 10 5 260 4500 1.80000 3.50000 45 33 15 3 3 0 0 0 1 5 0 0 274
+17 "lar\040\040lt\040armor" 0 50 4 0 0 0 0 0 30 0 0 0 0 0 10 5 150 600 2.00000 1.00000 50 42 15 4 4 0 0 0 1 2 0 0 80
+18 "har\040\040hvy\040armor" 0 100 3 0 0 0 0 0 48 0 0 0 0 0 20 10 120 500 2.00000 0.800000 50 18 17 1 1 0 0 0 2 1 0 0 0
+19 "arm\040\040armor" 0 50 4 0 0 0 0 0 30 0 0 0 0 0 20 10 170 1000 3.00000 1.50000 40 33 16 2 2 0 0 0 1 2 0 0 16
+20 "sec\040\040security" 0 50 4 0 0 0 0 0 30 0 0 0 0 0 10 5 170 600 1.00000 2.00000 60 25 15 2 1 0 0 0 1 1 0 0 24
+21 "rad\040\040radar\040unit" 0 10 0 0 0 0 0 0 7 0 0 0 0 0 10 5 270 1000 0.00000 0.00000 50 33 15 3 0 0 0 0 0 2 1 0 144
+/22
+
+[0:640] Command : XDUMP nuke-chr 0
+0 "10kt\040\040fission" 50 50 25 70 3 70 10000 280 4 0
+1 "15kt\040\040fission" 50 50 25 80 3 90 15000 290 5 0
+2 "50kt\040\040fission" 60 60 30 90 3 100 25000 300 6 0
+3 "100kt\040fission" 75 75 40 120 4 125 30000 310 8 0
+4 "5kt\040\040\040fusion" 15 15 15 30 2 80 12500 315 1 0
+5 "75kt\040\040fusion" 40 40 35 50 3 90 20000 320 3 0
+6 "250kt\040fusion" 50 50 45 60 4 110 25000 330 4 0
+7 "500kt\040fusion" 60 60 50 80 5 120 35000 340 5 0
+8 "1mt\040\040\040fusion" 75 75 50 110 6 150 40000 350 5 0
+9 "60kt\040\040neutron" 60 60 30 100 3 30 30000 355 2 1
+10 "3mt\040\040\040fusion" 100 100 75 130 7 170 45000 360 6 0
+11 "5mt\040\040\040fusion" 120 120 100 150 8 190 50000 370 8 0
+12 "120kt\040neutron" 75 75 40 120 5 50 36000 375 3 1
+/13
+
+[0:640] Command : XDUMP news-chr 0
+1 "infantry\040capture\040%s\040territory" "shock\040troops\040overrun\040one\040of\040%s's\040sectors" -4 2
+2 "infantry\040beaten\040back\040by\040%s\040troops" "shock\040troops\040annihilated\040in\040failed\040attack\040on\040%s" -4 2
+3 "spy\040shot\040by\040%s\040firing\040squad" "spy\040captured\040and\040shot\040by\040%s" -1 10
+4 "sends\040a\040telegram\040to\040%s" "telexes\040%s" 1 11
+5 "diplomats\040sign\040a\040treaty\040with\040%s" "ambassador\040agrees\040to\040a\040treaty\040with\040%s" 3 1
+6 "bankers\040make\040a\040loan\040to\040%s" "Ministry\040of\040Finance\040lends\040money\040to\040%s" 2 7
+7 "repays\040a\040loan\040from\040%s" "makes\040last\040payment\040on\040loan\040from\040%s" 1 7
+8 "makes\040a\040sale\040to\040%s" "sells\040goods\040to\040%s" 0 7
+9 "violates\040%s\040airspace" "overflies\040%s\040territory" -1 4
+10 "gunners\040bombard\040%s\040territory" "artillery\040fires\040on\040%s\040sectors" -2 6
+11 "shells\040a\040ship\040owned\040by\040%s" "fires\040on\040%s\040ships" -2 3
+12 "takes\040over\040unoccupied\040land" "attacks\040unowned\040land\040for\040some\040reason" 0 2
+13 "ships\040torpedoed\040by\040enemy\040wolf-packs" "ships\040torpedoed\040by\040marauding\040U-boats" 0 3
+14 "gunners\040fire\040on\040%s\040in\040self-defense" "gunners\040decimate\040%s\040aggressors" 0 6
+15 "breaks\040sanctuary" "no\040longer\040has\040a\040sanctuary" 0 1
+16 "planes\040divebomb\040one\040of\040%s's\040sectors" "bombers\040wreak\040havoc\040on\040%s" -2 4
+17 "divebombs\040a\040ship\040flying\040the\040flag\040of\040%s" "airforce\040bombs\040%s\040ships" -2 3
+18 "seadogs\040board\040one\040of\040%s's\040ships" "pirates\040board\040%s\040ship" -2 3
+19 "is\040repelled\040by\040%s\040while\040attempting\040to\040board\040a\040ship" "pirates\040prove\040inept\040at\040boarding\040%s's\040ships" -3 3
+21 "seizes\040a\040sector\040from\040%s\040to\040collect\040on\040a\040loan" "collects\040one\040of\040%s's\040sectors\040in\040repayment\040of\040a\040loan" -2 7
+22 "considers\040an\040action\040which\040would\040violate\040a\040treaty\040with\040%s" "decides\040not\040to\040violate\040treaty\040with\040%s\040(yet)" -1 1
+23 "violates\040a\040treaty\040with\040%s" "actions\040violate\040treaty\040with\040%s" -4 1
+25 "ship\040hits\040a\040mine" "ship\040severely\040damaged\040in\040mine\040field" 0 3
+26 "announces\040an\040alliance\040with\040%s" "/\040%s\040alliance\040declared" 5 1
+28 "declares\040TOTAL\040WAR\040on\040%s" "gets\040serious\040with\040%s\040and\040declares\040WAR" -5 1
+29 "diplomats\040disavow\040former\040alliance\040with\040%s" "is\040no\040longer\040allied\040with\040%s" 0 1
+30 "is\040no\040longer\040at\040war\040with\040%s" "Foreign\040Ministry\040declares\040\042No\040more\040war\040with\040%s\042" 5 1
+31 "reports\040outbreak\040of\040the\040black\040plague" "sector\040infected\040with\040bubonic\040plague" 0 9
+32 "citizens\040die\040from\040bubonic\040plague" "sector\040reports\040plague\040deaths" 0 9
+33 "goes\040through\040a\040name\040change" "adopts\040a\040new\040country\040name" 0 1
+34 "citizens\040starve\040in\040disastrous\040famine" "loses\040citizens\040to\040mass\040starvation" 0 9
+36 "pilots\040down\040%s\040planes" "victorious\040in\040air-to-air\040combat\040against\040%s" -3 4
+37 "nuclear\040device\040devastates\040%s\040sector" "explodes\040a\040nuclear\040device\040damaging\040%s\040territory" -10 5
+38 "terrorists\040shoot\040it\040out\040with\040%s\040special\040forces" "underground\040rises\040up\040against\040%s\040occupation" 0 9
+39 "execution\040squads\040gun\040down\040helpless\040%s\040civilians" "firing\040squads\040massacre\040defenseless\040%s\040workers" -2 9
+40 "launches\040a\040satellite\040into\040orbit" "continues\040its\040conquest\040of\040space\040with\040a\040successful\040launch" 0 5
+41 "strikes\040a\040%s\040big\040bird" "rockets\040damage\040a\040%s\040satellite" -8 5
+42 "makes\040a\040contribution\040to\040%s" "helps\040out\040%s" 0 7
+43 "aids\040%s\040with\040divine\040intervention" "smiles\040upon\040%s" 0 9
+44 "hurts\040%s\040with\040divine\040intervention" "frowns\040upon\040%s" 0 9
+45 "sacrifices\040to\040%s" "makes\040divine\040payment\040to\040%s" 0 7
+46 "abms\040intercept\040a\040%s\040missile" "strategic\040defense\040systems\040destroy\040a\040%s\040missile" -10 5
+47 "missile\040fired\040at\040one\040of\040%s's\040sectors" "missile\040wreaks\040havoc\040on\040%s" -2 5
+48 "missile\040fired\040at\040a\040ship\040flying\040the\040flag\040of\040%s" "missiles\040hit\040%s\040ships" -2 5
+49 "engages\040in\040friendly\040trade\040with\040%s" "profits\040from\040a\040merchant\040venture\040with\040%s" 2 7
+50 "pirates\040dispose\040of\040%s\040booty\040in\040trade" "buccaneers\040sell\040their\040%s\040goods" 0 7
+51 "pirates\040keep\040their\040%s\040booty" "buccaneers\040laugh\040and\040bury\040their\040%s\040goods" 0 7
+52 "ships\040torpedoed\040by\040%s\040torpedo-boats" "ships\040sunk\040by\040marauding\040%s\040torpedo-boats" 0 3
+53 "planes\040bomb\040a\040skulking\040%s\040submarine" "planes\040drop\040depth-charges\040on\040a\040%s\040sub" 0 3
+55 "divebombs\040a\040brave\040%s\040unit" "airforce\040bombs\040%s\040units" -2 4
+56 "troops\040run\040afoul\040of\040a\040landmine" "troops\040severely\040damaged\040in\040mine\040field" 0 2
+57 "fortress\040gunners\040support\040troops\040attacking\040%s" "fortress\040artillery\040massacres\040%s\040defenders" -2 6
+58 "gunners\040support\040troops\040attacking\040%s" "artillery\040battery\040massacres\040%s\040defenders" -2 6
+59 "naval\040gunners\040support\040troops\040attacking\040%s" "naval\040gunfire\040massacres\040%s\040defenders" -2 6
+60 "sacks\040%s\040capital" "captures\040and\040pillages\040%s's\040capital" 10 1
+61 "announces\040friendly\040trade\040relations\040with\040%s" "upgrades\040%s's\040trade\040status\040to\040triple-A" 3 1
+62 "downgrades\040relations\040with\040%s\040to\040friendly" "cools\040relations\040with\040%s\040to\040friendly" 0 1
+63 "upgrades\040relations\040with\040%s\040to\040neutral" "Foreign\040Ministry\040declares\040\042%s\040is\040A-OK.\042" 2 1
+64 "downgrades\040relations\040with\040%s\040to\040neutral" "gives\040the\040cold\040shoulder\040to\040%s\040and\040declares\040neutral\040relations" 0 1
+65 "upgrades\040relations\040with\040%s\040to\040hostile" "forgives\040%s\040of\040past\040war\040crimes\040but\040remains\040hostile" 3 1
+66 "downgrades\040relations\040with\040%s\040to\040hostile" "is\040suspicious\040that\040%s\040has\040hostile\040intentions" 3 1
+67 "sector\040is\040struck\040by\040a\040sub-launched\040missile" "sector\040devastated\040by\040missile" 0 5
+68 "ship\040is\040hit\040by\040a\040sub-launched\040missile" "ship\040damaged\040by\040marine\040missile" 0 5
+69 "pilgrims\040settle\040on\040a\040new\040island" "discovers\040new\040land\040and\040starts\040a\040colony" 0 8
+70 "abms\040intercept\040an\040incoming\040sub-launched\040missile" "strategic\040defense\040systems\040destroy\040an\040incoming\040sub-launched\040warhead" 0 5
+71 "missile\040fired\040at\040%s\040ground\040troops" "missile\040hits\040%s\040troops" 2 5
+72 "regiment\040struck\040by\040sub-launched\040missile" "ground\040troops\040hit\040by\040missile" 0 5
+73 "navy\040secures\040a\040beachhead\040on\040%s\040territory" "sailors\040take\040a\040coastal\040sector\040from\040%s" -4 2
+74 "paratroopers\040comandeer\040a\040sector\040from\040%s" "air\040force\040parachutists\040overwhelm\040a\040%s\040sector" -4 2
+75 "parachutists\040grab\040unoccupied\040land" "paratroopers\040break\040new\040ground" 0 8
+76 "sailors\040repelled\040by\040%s\040coast-guard" "naval\040forces\040massacred\040in\040failed\040assault\040of\040%s" 4 2
+77 "paratroopers\040destroyed\040in\040failed\040air-assault\040on\040%s" "loses\040parachutists\040in\040failed\040air-assault\040of\040%s" 4 2
+80 "is\040unable\040to\040fulfill\040its\040financial\040obligations\040to\040%s" "welches\040on\040a\040deal\040with\040%s" 0 7
+81 "is\040repelled\040by\040%s\040while\040attempting\040to\040board\040a\040land\040unit" "forces\040prove\040inept\040at\040boarding\040%s's\040land\040unit" -3 2
+82 "mercenaries\040board\040one\040of\040%s's\040land\040units" "elite\040forces\040board\040%s\040land\040unit" -2 2
+/75
+
+[0:640] Command : XDUMP infrastructure 0
+"road\040network" 2 2 2 1 1
+"rail\040network" 1 1 1 1 0
+"defense\040factor" 1 1 1 1 0
+/3
+
+[0:640] Command : XDUMP updates 0
+/0
+
+[0:640] Command : XDUMP table 0
+0 "sect"
+1 "ship"
+2 "plane"
+3 "land"
+4 "nuke"
+5 "news"
+6 "treaty"
+7 "trade"
+9 "nat"
+10 "loan"
+13 "commodity"
+14 "lost"
+15 "realm"
+16 "game"
+17 "item"
+18 "product"
+19 "sect-chr"
+20 "ship-chr"
+21 "plane-chr"
+22 "land-chr"
+23 "nuke-chr"
+24 "news-chr"
+25 "infrastructure"
+26 "updates"
+27 "table"
+28 "version"
+29 "meta"
+30 "agreement-status"
+31 "land-chr-flags"
+32 "level"
+33 "meta-flags"
+34 "meta-type"
+35 "missions"
+36 "nation-flags"
+37 "nation-rejects"
+38 "nation-relationships"
+39 "nation-status"
+40 "nuke-chr-flags"
+41 "packing"
+42 "page-headings"
+43 "plague-stages"
+44 "plane-chr-flags"
+45 "plane-flags"
+46 "resources"
+47 "retreat-flags"
+48 "sector-navigation"
+49 "ship-chr-flags"
+50 "treaty-flags"
+51 "country"
+/49
+
+[0:640] Command : XDUMP version 0
+"Wolfpack\040Empire\0404.3.31" 99 "Deity\040forgot\040to\040edit\040econfig" "careless@invalid" 64 32 60 0 0 1 "" "" "" 1 0 1 0 1 1 1 0 0 0 1 0 0 0 0 1 1 0 1 1 0 1 0 0 1 0.00120000 1440 640 15 5 120 0 1.00000 96.0000 2.00000 2.00000 192.000 48.0000 600000. 600000. 1.00000 127 100 1000.00 10.0000 300 3000.00 100.000 1.00000 2.00000 127 -0.00100000 1.00000 2.00000 127 -0.00100000 1.50000 3.00000 127 -0.00100000 40 8 8 8 1.75000 5.00000 1.00000 0.300000 0.100000 0.500000 1.00000 2 0.00250000 0.00833330 -0.0833333 -0.00833330 0.00177770 0.00600000 0.250000 0.000500000 0.00130000 0.00120000 0.00500000 0 0.00600000 0.00500000 0.00000 7200 7200 1.00000 0.990000 8 14 25 0.0250000 0.0350000 0.0500000 0.200000 0.100000
+/1
+
+[0:640] Command : Usage: xdump ["meta"] <TYPE> [<RECORDS>]
+
+[0:640] Command : XDUMP sector-navigation 0
+0 "land"
+1 "sea"
+2 "harbor"
+3 "canal"
+4 "bridge"
+/5
+
+[0:640] Command : XDUMP agreement-status 0
+0 "free"
+1 "proposed"
+2 "signed"
+/3
+
+[0:640] Command : XDUMP land-chr-flags 0
+2 "engineer"
+4 "supply"
+8 "security"
+16 "light"
+32 "marine"
+64 "recon"
+128 "radar"
+256 "assault"
+512 "flak"
+1024 "spy"
+2048 "train"
+4096 "heavy"
+/12
+
+[0:640] Command : XDUMP level 0
+-1 "none"
+0 "technology"
+1 "research"
+2 "education"
+3 "happiness"
+/5
+
+[0:640] Command : XDUMP meta-flags 0
+1 "deity"
+2 "extra"
+4 "const"
+8 "bits"
+/4
+
+[0:640] Command : XDUMP meta-type 0
+1 "d"
+2 "g"
+3 "s"
+4 "d"
+5 "d"
+6 "d"
+7 "d"
+8 "d"
+9 "d"
+10 "d"
+11 "d"
+12 "d"
+13 "g"
+14 "c"
+/14
+
+[0:640] Command : XDUMP missions 0
+0 "none"
+1 "interdiction"
+2 "support"
+3 "reserve"
+4 "escort"
+6 "air\040defense"
+7 "defensive\040support"
+8 "offensive\040support"
+/8
+
+[0:640] Command : XDUMP nation-flags 0
+1 "inform"
+2 "flash"
+4 "beep"
+8 "coastwatch"
+16 "sonar"
+32 "techlists"
+64 "sacked"
+/7
+
+[0:640] Command : XDUMP nation-rejects 0
+1 "telegrams"
+2 "treaties"
+4 "announcements"
+8 "loans"
+/4
+
+[0:640] Command : XDUMP nation-relationships 0
+-1 "unknown"
+0 "at-war"
+1 "hostile"
+2 "neutral"
+3 "friendly"
+4 "allied"
+/6
+
+[0:640] Command : XDUMP nation-status 0
+0 "unused"
+1 "new"
+2 "visitor"
+3 "sanctuary"
+4 "active"
+5 "deity"
+/6
+
+[0:640] Command : XDUMP nuke-chr-flags 0
+1 "neutron"
+/1
+
+[0:640] Command : XDUMP packing 0
+0 "inefficient"
+1 "normal"
+2 "warehouse"
+3 "urban"
+4 "bank"
+/5
+
+[0:640] Command : XDUMP page-headings 0
+0 "Comics"
+1 "Foreign\040Affairs"
+2 "The\040Front\040Line"
+3 "The\040High\040Seas"
+4 "Sky\040Watch"
+5 "Guidance\040Systems"
+6 "Firestorms"
+7 "Business\040&\040Economics"
+8 "The\040Frontier"
+9 "The\040Home\040Front"
+10 "Espionage"
+11 "Telecommunications"
+/12
+
+[0:640] Command : XDUMP plague-stages 0
+0 "healthy"
+1 "dying"
+2 "infect"
+3 "incubate"
+4 "exposed"
+/5
+
+[0:640] Command : XDUMP plane-chr-flags 0
+2 "tactical"
+1 "bomber"
+4 "intercept"
+8 "cargo"
+16 "VTOL"
+32 "missile"
+64 "light"
+128 "spy"
+256 "image"
+512 "satellite"
+2048 "SDI"
+8192 "x-light"
+16384 "helo"
+32768 "ASW"
+65536 "para"
+131072 "escort"
+262144 "mine"
+524288 "sweep"
+1048576 "marine"
+/19
+
+[0:640] Command : XDUMP plane-flags 0
+1 "launched"
+2 "synchronous"
+4 "airburst"
+/3
+
+[0:640] Command : XDUMP resources 0
+0 "none"
+0 "min"
+0 "gold"
+0 "fert"
+0 "ocontent"
+0 "uran"
+/6
+
+[0:640] Command : XDUMP retreat-flags 0
+1 "group"
+2 "injured"
+4 "torped"
+8 "sonared"
+16 "helpless"
+32 "bombed"
+64 "depth-charged"
+128 "boarded"
+/8
+
+[0:640] Command : XDUMP ship-chr-flags 0
+1 "fish"
+2 "torp"
+4 "dchrg"
+8 "plane"
+16 "miss"
+32 "oil"
+64 "sonar"
+128 "mine"
+256 "sweep"
+512 "sub"
+2048 "land"
+4096 "sub-torp"
+8192 "trade"
+16384 "semi-land"
+262144 "supply"
+524288 "canal"
+1048576 "anti-missile"
+/17
+
+[0:640] Command : XDUMP treaty-flags 0
+1 "no\040attacks\040on\040any\040land\040units"
+2 "no\040attacks\040on\040any\040ships"
+4 "no\040shelling\040any\040ships"
+1024 "no\040depth-charging\040any\040subs"
+8 "no\040sector\040attacks"
+16 "no\040shelling\040any\040land"
+32 "no\040building\040ships"
+64 "no\040new\040nuclear\040weapons"
+128 "no\040building\040planes"
+256 "no\040building\040land\040units"
+512 "no\040enlistment"
+/11
+
+[0:640] Command : XDUMP country 0
+0 "127.0.0.1" "" "tester" 0 0 0 0 0 255 640 0 0 123456789 0 0 0 0 0.00000 0.00000 0.00000 0.00000 62
+/1
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Player 00 Turn 99 completed successfully
+Player 01 Turn 99 starting
+
+
+       -=O=-
+You have a new telegram waiting ...
+
+[0:640] Command : XDUMP sect 0
+1 0 0 10 100 127 0 0 0 0 0 6 2 0 100 0 10 100 0 100 100 100 1 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0
+/1
+
+[0:640] Command : XDUMP ship 0
+0 1 13 1 6 100 127 0 0 -5 13 0 0 "" -5 -5 13 13 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 0 ""
+1 1 5 -1 2 100 127 0 30 -5 13 0 0 "" -5 -5 13 13 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 300 25 0 0 0 0 0 0 0 0 100 100 0 0 0 0 "" 1 "" 0 ""
+2 1 5 -1 15 100 127 0 44 -5 13 0 0 "" -5 -5 13 13 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 2 "" 0 ""
+3 1 5 -1 8 100 127 0 50 -5 13 0 0 "" 6 5 0 -1 -1 -1 -1 -1 -1 -1 9 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 0 0 0 0 4 990 0 0 0 0 0 0 0 0 448 0 0 0 0 0 0 "" 3 "" 0 ""
+4 1 6 0 1 100 127 0 50 -5 13 0 0 "" 5 6 -1 0 8 -1 -1 -1 -1 -1 8 -1 -1 -1 -1 -1 30 0 0 0 0 0 30 0 0 0 0 0 4 300 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 "" 4 "" 0 ""
+/5
+
+[0:640] Command : XDUMP plane 0
+/0
+
+[0:640] Command : XDUMP land 0
+0 1 5 -1 0 100 127 0 30 -5 13 0 0 "" 1 0 42 0 "" 0 20 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
+3 1 5 -1 0 100 127 0 30 -5 13 0 0 "" -1 117 42 0 "" 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
+4 1 11 -1 0 81 127 0 30 -5 13 0 0 "" -1 28 42 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
+5 1 11 -1 11 98 108 0 37 -5 13 0 0 "" -1 0 42 0 "" 0 5 35 10 0 0 0 0 0 0 0 0 0 0 -1 0
+/4
+
+[0:640] Command : XDUMP nuke 0
+/0
+
+[0:640] Command : XDUMP news 0
+1 15 0 1 0 0
+2 15 0 1 0 0
+3 15 0 1 0 0
+4 15 0 1 0 0
+5 15 0 1 0 0
+6 15 0 1 0 0
+7 15 0 1 0 0
+8 15 0 1 0 0
+9 15 0 1 0 0
+10 15 0 1 0 0
+1 73 8 1 0 0
+8 38 1 1 0 0
+1 4 2 1 0 0
+1 28 8 1 0 0
+1 26 2 1 0 0
+2 26 1 1 0 0
+2 66 8 1 0 0
+8 28 1 1 0 0
+8 66 2 1 0 0
+1 10 8 1 0 0
+8 14 1 1 0 0
+1 58 8 1 0 0
+1 2 8 1 0 0
+/23
+
+[0:640] Command : XDUMP treaty 0
+/0
+
+[0:640] Command : XDUMP trade 0
+/0
+
+[0:640] Command : XDUMP nat 0
+0 5 "POGO" 2 2 2 2 2 2 2 2 2 2 2 255 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+1 4 "1" 2 2 4 2 2 2 2 2 0 2 2 255 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+2 4 "2" 2 4 2 2 2 2 2 2 1 2 2 255 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+3 4 "3" 2 2 2 2 2 2 2 2 2 2 2 255 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+4 4 "4" 2 2 2 2 2 2 2 2 2 2 2 255 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+5 4 "5" 2 2 2 2 2 2 2 2 2 2 2 255 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+6 4 "6" 2 2 2 2 2 2 2 2 2 2 2 255 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+7 4 "7" 2 2 2 2 2 2 2 2 2 2 2 255 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+8 4 "8" 2 0 1 2 2 2 2 2 2 2 2 255 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+9 4 "9" 2 2 2 2 2 2 2 2 2 2 2 255 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+10 4 "10" 2 2 2 2 2 2 2 2 2 2 2 255 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+11 2 "visitor" 2 2 2 2 2 2 2 2 2 2 2 255 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+/12
+
+[0:640] Command : XDUMP loan 0
+/0
+
+[0:640] Command : XDUMP commodity 0
+/0
+
+[0:640] Command : XDUMP lost 0
+0 1 3 1 6 0
+0 1 3 2 5 -1
+/2
+
+[0:640] Command : XDUMP realm 0
+1 0 -8 16 -4 4
+1 1 -16 24 -8 8
+1 2 -8 10 -5 5
+1 3 -8 10 -5 5
+1 4 -8 10 -5 5
+1 5 -8 10 -5 5
+1 6 -8 10 -5 5
+1 7 -8 10 -5 5
+1 8 -8 10 -5 5
+1 9 -8 10 -5 5
+1 10 -8 10 -5 5
+1 11 -8 10 -5 5
+1 12 -8 10 -5 5
+1 13 -8 10 -5 5
+1 14 -8 10 -5 5
+1 15 -8 10 -5 5
+1 16 -8 10 -5 5
+1 17 -8 10 -5 5
+1 18 -8 10 -5 5
+1 19 -8 10 -5 5
+1 20 -8 10 -5 5
+1 21 -8 10 -5 5
+1 22 -8 10 -5 5
+1 23 -8 10 -5 5
+1 24 -8 10 -5 5
+1 25 -8 10 -5 5
+1 26 -8 10 -5 5
+1 27 -8 10 -5 5
+1 28 -8 10 -5 5
+1 29 -8 10 -5 5
+1 30 -8 10 -5 5
+1 31 -8 10 -5 5
+1 32 -8 10 -5 5
+1 33 -8 10 -5 5
+1 34 -8 10 -5 5
+1 35 -8 10 -5 5
+1 36 -8 10 -5 5
+1 37 -8 10 -5 5
+1 38 -8 10 -5 5
+1 39 -8 10 -5 5
+1 40 -8 10 -5 5
+1 41 -8 10 -5 5
+1 42 -8 10 -5 5
+1 43 -8 10 -5 5
+1 44 -8 10 -5 5
+1 45 -8 10 -5 5
+1 46 -8 10 -5 5
+1 47 -8 10 -5 5
+1 48 -8 10 -5 5
+1 49 -8 10 -5 5
+/50
+
+[0:640] Command : XDUMP game 0
+0 0 18
+/1
+
+[0:640] Command : XDUMP item 0
+0 "civilians" "c" 1 0 1 1 10 10 10 10 4
+1 "military" "m" 0 1 1 1 1 1 1 1 20
+2 "shells" "s" 5 1 1 1 1 10 1 1 80
+3 "guns" "g" 60 1 10 1 1 10 1 1 100
+4 "petrol" "p" 4 1 1 1 1 10 1 1 50
+5 "iron\040ore" "i" 2 1 1 1 1 10 1 1 100
+6 "dust\040(gold)" "d" 20 1 5 1 1 10 1 1 100
+7 "bars\040of\040gold" "b" 280 1 50 1 1 5 1 4 200
+8 "food" "f" 0 1 1 1 1 10 1 1 2
+9 "oil" "o" 8 1 1 1 1 10 1 1 50
+10 "light\040products" "l" 2 1 1 1 1 10 1 1 100
+11 "heavy\040products" "h" 4 1 1 1 1 10 1 1 100
+12 "uncompensated\040workers" "u" 1 1 2 1 1 2 1 1 2
+13 "radioactive\040materials" "r" 150 1 8 1 1 10 1 1 1000
+/14
+
+[0:640] Command : XDUMP product 0
+0 "iron\040ore" "iron" -1 -1 -1 0 0 0 5 -1 0 0 0 -1 0 0
+1 "gold\040dust" "dust" -1 -1 -1 0 0 0 6 -1 0 0 20 -1 0 0
+2 "food" "food" -1 -1 -1 0 0 0 8 -1 0 0 0 0 -10 10
+3 "oil" "oil" -1 -1 -1 0 0 0 9 -1 0 0 10 0 -10 10
+4 "radioactive\040materials" "rad" -1 -1 -1 0 0 0 13 -1 2 0 35 0 40 10
+5 "shells" "shells" 10 11 -1 2 1 0 2 -1 3 0 0 0 20 10
+6 "guns" "guns" 9 10 11 1 5 10 3 -1 30 0 0 0 20 10
+7 "petrol" "petrol" 9 -1 -1 1 0 0 4 -1 1 0 0 0 20 10
+8 "gold\040bars" "bars" 6 -1 -1 5 0 0 7 -1 10 0 0 -1 0 0
+9 "light\040construction\040materials" "lcm" 5 -1 -1 1 0 0 10 -1 0 0 0 0 -10 10
+10 "heavy\040construction\040materials" "hcm" 5 -1 -1 2 0 0 11 -1 0 0 0 0 -10 10
+11 "technological\040breakthroughs" "tech" 6 9 10 1 5 10 -1 0 300 0 0 2 5 10
+12 "medical\040discoveries" "medical" 6 9 10 1 5 10 -1 1 90 0 0 2 5 10
+13 "a\040class\040of\040graduates" "edu" 10 -1 -1 1 0 0 -1 2 9 0 0 -1 0 0
+14 "happy\040strollers" "happy" 10 -1 -1 1 0 0 -1 3 9 0 0 -1 0 0
+/15
+
+[0:640] Command : XDUMP sect-chr 0
+0 "sea" "." 0 -1 0 -1.00000 -1.00000 1 1 0.00000 0.00000 0 -1 0 0 0 0 0
+1 "mountain" "^" 1 1 75 2.40000 1.20000 0 1 1.00000 4.00000 5 -1 1 0 0 0 100
+2 "sanctuary" "s" 4 -1 0 -1.00000 -1.00000 0 1 0.00000 99.0000 127 -1 0 0 0 0 1000
+3 "wasteland" "\134" 3 -1 0 -1.00000 -1.00000 0 1 0.00000 99.0000 0 -1 0 0 0 0 0
+4 "wilderness" "-" 4 -1 0 0.400000 0.400000 0 1 1.00000 2.00000 1 0 0 0 0 0 1000
+5 "capital" "c" 4 -1 0 0.400000 0.200000 0 1 1.00000 2.00000 30 0 1 0 0 1 1000
+6 "uranium\040mine" "u" 4 4 100 0.400000 0.200000 0 1 1.00000 2.00000 15 0 1 0 0 0 1000
+7 "park" "p" 4 14 100 0.400000 0.200000 0 1 1.00000 1.50000 5 0 1 0 0 0 1000
+8 "defense\040plant" "d" 4 6 100 0.400000 0.200000 0 1 1.00000 1.50000 7 0 1 0 0 0 1000
+9 "shell\040industry" "i" 4 5 100 0.400000 0.200000 0 1 1.00000 1.50000 6 0 1 0 0 0 1000
+10 "mine" "m" 4 0 100 0.400000 0.200000 0 1 1.00000 2.00000 5 0 1 0 0 0 1000
+11 "gold\040mine" "g" 4 1 100 0.400000 0.200000 0 1 1.00000 2.00000 8 0 1 0 0 0 1000
+12 "harbor" "h" 4 -1 0 0.400000 0.200000 2 2 1.00000 1.50000 12 0 1 0 0 0 1000
+13 "warehouse" "w" 4 -1 0 0.400000 0.200000 0 2 1.00000 1.50000 7 0 1 0 0 0 1000
+14 "airfield" "*" 4 -1 0 0.400000 0.200000 0 1 1.00000 1.25000 12 0 1 0 0 0 1000
+15 "agribusiness" "a" 4 2 900 0.400000 0.200000 0 1 1.00000 1.50000 2 0 1 0 0 0 1000
+16 "oil\040field" "o" 4 3 100 0.400000 0.200000 0 1 1.00000 1.50000 5 0 1 0 0 0 1000
+17 "light\040manufacturing" "j" 4 9 100 0.400000 0.200000 0 1 1.00000 1.50000 3 0 1 0 0 0 1000
+18 "heavy\040manufacturing" "k" 4 10 100 0.400000 0.200000 0 1 1.00000 1.50000 4 0 1 0 0 0 1000
+19 "fortress" "f" 4 -1 0 0.400000 0.200000 0 1 2.00000 4.00000 10 0 5 0 1 0 1000
+20 "technical\040center" "t" 4 11 100 0.400000 0.200000 0 1 1.00000 1.50000 10 0 1 0 0 0 1000
+21 "research\040lab" "r" 4 12 100 0.400000 0.200000 0 1 1.00000 1.50000 9 0 1 0 0 0 1000
+22 "nuclear\040plant" "n" 4 -1 0 0.400000 0.200000 0 1 1.00000 2.00000 10 0 1 0 0 0 1000
+23 "library/school" "l" 4 13 100 0.400000 0.200000 0 1 1.00000 1.50000 4 0 1 0 0 0 1000
+24 "highway" "+" 4 -1 0 0.400000 0.00000 0 1 1.00000 1.00000 3 0 1 0 0 0 1000
+25 "radar\040installation" ")" 4 -1 0 0.400000 0.200000 0 1 1.00000 1.50000 4 0 1 0 0 0 1000
+26 "headquarters" "!" 4 -1 0 0.400000 0.200000 0 1 1.00000 1.50000 12 0 1 0 0 0 1000
+27 "bridge\040head" "#" 4 -1 0 0.400000 0.00000 0 1 1.00000 1.00000 3 0 1 0 0 0 1000
+28 "bridge\040span" "=" 0 -1 0 0.400000 0.00000 4 1 1.00000 1.00000 5 -1 1 0 0 0 100
+29 "bank" "b" 4 8 100 0.400000 0.200000 0 4 1.00000 2.25000 10 0 1 0 0 0 1000
+30 "refinery" "%" 4 7 1000 0.400000 0.200000 0 1 1.00000 1.50000 2 0 1 0 0 0 1000
+31 "enlistment\040center" "e" 4 -1 0 0.400000 0.200000 0 1 1.00000 2.00000 7 0 1 0 0 0 1000
+32 "plains" "~" 32 -1 0 0.400000 0.200000 0 1 1.00000 1.50000 1 -1 1 0 0 0 100
+33 "bridge\040tower" "@" 0 -1 0 0.400000 0.00000 0 1 1.00000 1.50000 4 -1 1 0 0 0 100
+/34
+
+[0:640] Command : XDUMP ship-chr 0
+0 "fb\040\040\040fishing\040boat" 300 10 0 0 0 0 0 0 900 0 0 0 15 0 25 15 10 10 15 2 0 0 0 0 0 180 524289 0 0
+1 "ft\040\040\040fishing\040trawler" 300 10 0 0 0 0 0 0 900 0 0 0 15 0 25 15 10 25 15 2 0 0 0 0 35 300 524289 0 0
+2 "cs\040\040\040cargo\040ship" 600 50 300 50 0 0 0 0 900 0 1400 900 250 0 60 40 20 25 35 3 0 0 1 0 20 500 262144 0 2
+3 "os\040\040\040ore\040ship" 30 5 0 0 0 990 990 0 200 0 0 0 45 990 60 40 20 25 35 3 0 0 1 0 20 500 0 0 0
+4 "ss\040\040\040slave\040ship" 20 80 0 0 0 0 0 0 200 0 0 0 1200 0 60 40 20 10 35 3 0 0 1 0 0 300 0 0 0
+6 "frg\040\040frigate" 0 60 10 2 0 0 0 0 60 0 0 0 0 0 30 30 50 25 25 3 1 1 1 0 0 600 16384 0 2
+7 "oe\040\040\040oil\040exploration\040boat" 10 5 0 0 0 0 0 0 100 1 0 0 0 0 25 15 10 25 15 2 0 0 0 0 40 800 524320 0 0
+8 "od\040\040\040oil\040derrick" 990 80 0 0 0 0 0 0 990 990 0 0 990 0 60 60 30 15 65 3 0 0 2 0 50 1500 32 0 0
+9 "pt\040\040\040patrol\040boat" 0 2 12 2 0 0 0 0 5 0 0 0 0 0 20 10 10 38 10 2 1 1 0 0 40 300 524290 0 0
+10 "lc\040\040\040light\040cruiser" 0 100 40 5 0 0 0 0 100 0 0 0 0 0 30 40 50 30 30 5 6 3 1 0 45 800 128 0 2
+11 "hc\040\040\040heavy\040cruiser" 0 120 100 8 0 0 0 0 200 0 0 0 0 0 40 50 70 30 30 5 8 4 1 0 50 1200 0 0 4
+12 "tt\040\040\040troop\040transport" 0 120 20 4 0 0 0 0 120 0 0 0 0 0 50 50 60 20 35 3 1 2 1 0 10 800 16384 0 2
+13 "bb\040\040\040battleship" 0 200 200 10 0 0 0 0 900 0 0 0 0 0 50 70 95 25 35 6 10 7 1 0 45 1800 0 0 2
+14 "bbc\040\040battlecruiser" 0 180 100 10 0 0 0 0 400 0 0 0 0 0 50 60 55 30 35 6 10 6 1 0 75 1500 0 0 2
+15 "tk\040\040\040tanker" 30 5 0 0 990 0 0 0 200 990 0 0 25 0 60 40 75 25 45 3 0 0 1 0 35 600 262144 0 0
+16 "ms\040\040\040minesweeper" 0 10 100 1 0 0 0 0 90 0 0 0 0 0 25 15 10 25 15 2 0 0 0 0 40 400 524672 0 0
+17 "dd\040\040\040destroyer" 0 60 40 4 0 0 0 0 80 0 0 0 0 0 30 30 45 35 20 4 6 3 1 0 70 600 196 0 1
+18 "sb\040\040\040submarine" 0 25 36 5 0 0 0 0 80 0 0 0 0 0 30 30 25 20 5 4 3 3 0 0 60 650 706 0 0
+20 "cal\040\040light\040carrier" 0 175 250 4 300 0 0 0 180 0 0 0 0 0 50 60 60 30 40 5 2 2 4 20 80 2700 8 20 0
+/19
+
+[0:640] Command : XDUMP plane-chr 0
+0 "f1\040\040\040Sopwith\040Camel" 8 2 400 50 90 1 1 1 4 1 1 0 22
+1 "f2\040\040\040P-51\040Mustang" 8 2 400 80 80 1 4 4 8 1 1 0 70
+7 "lb\040\040\040TBD-1\040Devastator" 10 3 550 60 50 2 0 3 7 1 1 0 83
+9 "mb\040\040\040medium\040bomber" 14 5 1000 80 45 4 0 5 14 3 3 0 3
+21 "zep\040\040Zeppelin" 6 2 1000 70 60 2 0 -3 15 3 2 0 154
+/5
+
+[0:640] Command : XDUMP land-chr 0
+0 "cav\040\040cavalry" 0 20 0 0 0 0 0 0 12 0 0 0 0 0 10 5 30 500 1.20000 0.500000 80 32 18 4 3 0 0 0 0 0 0 0 80
+1 "linf\040light\040infantry" 0 25 1 0 0 0 0 0 15 0 0 0 0 0 8 4 40 300 1.00000 1.50000 60 28 15 2 1 0 0 0 1 1 0 0 272
+2 "inf\040\040infantry" 0 100 0 0 0 0 0 0 24 0 0 0 0 0 10 5 50 500 1.00000 1.50000 60 25 15 2 1 0 0 0 0 0 0 0 272
+6 "sup\040\040supply" 0 25 200 10 300 100 100 10 300 0 200 100 0 0 10 5 50 500 0.100000 0.200000 80 25 20 1 0 0 0 0 0 0 0 0 20
+7 "tra\040\040train" 0 990 990 200 990 500 500 100 990 990 990 990 0 150 100 50 40 3500 0.00000 0.00000 120 10 25 3 0 0 0 0 0 0 5 12 6148
+8 "spy\040\040infiltrator" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 5 40 750 0.00000 0.00000 80 32 18 4 3 0 0 0 0 0 0 0 1360
+9 "com\040\040commando" 0 0 3 0 0 0 0 0 0 0 0 0 0 0 10 5 55 1500 0.00000 0.00000 80 32 18 4 3 0 0 0 0 0 0 0 1360
+10 "aau\040\040aa\040unit" 0 20 5 0 0 0 0 0 12 0 0 0 0 0 20 10 70 500 0.500000 1.00000 60 18 20 1 1 0 0 0 1 2 0 0 528
+11 "art\040\040artillery" 0 25 40 10 0 0 0 0 24 0 0 0 0 0 20 10 35 800 0.100000 0.400000 70 18 20 1 0 8 50 5 2 1 0 0 16
+12 "lat\040\040lt\040artillery" 0 25 20 6 0 0 0 0 12 0 0 0 0 0 20 10 70 500 0.200000 0.600000 60 30 18 1 1 5 10 3 1 1 0 0 16
+/10
+
+[0:640] Command : XDUMP nuke-chr 0
+/0
+
+[0:640] Command : XDUMP news-chr 0
+1 "infantry\040capture\040%s\040territory" "shock\040troops\040overrun\040one\040of\040%s's\040sectors" -4 2
+2 "infantry\040beaten\040back\040by\040%s\040troops" "shock\040troops\040annihilated\040in\040failed\040attack\040on\040%s" -4 2
+3 "spy\040shot\040by\040%s\040firing\040squad" "spy\040captured\040and\040shot\040by\040%s" -1 10
+4 "sends\040a\040telegram\040to\040%s" "telexes\040%s" 1 11
+5 "diplomats\040sign\040a\040treaty\040with\040%s" "ambassador\040agrees\040to\040a\040treaty\040with\040%s" 3 1
+6 "bankers\040make\040a\040loan\040to\040%s" "Ministry\040of\040Finance\040lends\040money\040to\040%s" 2 7
+7 "repays\040a\040loan\040from\040%s" "makes\040last\040payment\040on\040loan\040from\040%s" 1 7
+8 "makes\040a\040sale\040to\040%s" "sells\040goods\040to\040%s" 0 7
+9 "violates\040%s\040airspace" "overflies\040%s\040territory" -1 4
+10 "gunners\040bombard\040%s\040territory" "artillery\040fires\040on\040%s\040sectors" -2 6
+11 "shells\040a\040ship\040owned\040by\040%s" "fires\040on\040%s\040ships" -2 3
+12 "takes\040over\040unoccupied\040land" "attacks\040unowned\040land\040for\040some\040reason" 0 2
+13 "ships\040torpedoed\040by\040enemy\040wolf-packs" "ships\040torpedoed\040by\040marauding\040U-boats" 0 3
+14 "gunners\040fire\040on\040%s\040in\040self-defense" "gunners\040decimate\040%s\040aggressors" 0 6
+15 "breaks\040sanctuary" "no\040longer\040has\040a\040sanctuary" 0 1
+16 "planes\040divebomb\040one\040of\040%s's\040sectors" "bombers\040wreak\040havoc\040on\040%s" -2 4
+17 "divebombs\040a\040ship\040flying\040the\040flag\040of\040%s" "airforce\040bombs\040%s\040ships" -2 3
+18 "seadogs\040board\040one\040of\040%s's\040ships" "pirates\040board\040%s\040ship" -2 3
+19 "is\040repelled\040by\040%s\040while\040attempting\040to\040board\040a\040ship" "pirates\040prove\040inept\040at\040boarding\040%s's\040ships" -3 3
+21 "seizes\040a\040sector\040from\040%s\040to\040collect\040on\040a\040loan" "collects\040one\040of\040%s's\040sectors\040in\040repayment\040of\040a\040loan" -2 7
+22 "considers\040an\040action\040which\040would\040violate\040a\040treaty\040with\040%s" "decides\040not\040to\040violate\040treaty\040with\040%s\040(yet)" -1 1
+23 "violates\040a\040treaty\040with\040%s" "actions\040violate\040treaty\040with\040%s" -4 1
+25 "ship\040hits\040a\040mine" "ship\040severely\040damaged\040in\040mine\040field" 0 3
+26 "announces\040an\040alliance\040with\040%s" "/\040%s\040alliance\040declared" 5 1
+28 "declares\040TOTAL\040WAR\040on\040%s" "gets\040serious\040with\040%s\040and\040declares\040WAR" -5 1
+29 "diplomats\040disavow\040former\040alliance\040with\040%s" "is\040no\040longer\040allied\040with\040%s" 0 1
+30 "is\040no\040longer\040at\040war\040with\040%s" "Foreign\040Ministry\040declares\040\042No\040more\040war\040with\040%s\042" 5 1
+31 "reports\040outbreak\040of\040the\040black\040plague" "sector\040infected\040with\040bubonic\040plague" 0 9
+32 "citizens\040die\040from\040bubonic\040plague" "sector\040reports\040plague\040deaths" 0 9
+33 "goes\040through\040a\040name\040change" "adopts\040a\040new\040country\040name" 0 1
+34 "citizens\040starve\040in\040disastrous\040famine" "loses\040citizens\040to\040mass\040starvation" 0 9
+36 "pilots\040down\040%s\040planes" "victorious\040in\040air-to-air\040combat\040against\040%s" -3 4
+37 "nuclear\040device\040devastates\040%s\040sector" "explodes\040a\040nuclear\040device\040damaging\040%s\040territory" -10 5
+38 "terrorists\040shoot\040it\040out\040with\040%s\040special\040forces" "underground\040rises\040up\040against\040%s\040occupation" 0 9
+39 "execution\040squads\040gun\040down\040helpless\040%s\040civilians" "firing\040squads\040massacre\040defenseless\040%s\040workers" -2 9
+40 "launches\040a\040satellite\040into\040orbit" "continues\040its\040conquest\040of\040space\040with\040a\040successful\040launch" 0 5
+41 "strikes\040a\040%s\040big\040bird" "rockets\040damage\040a\040%s\040satellite" -8 5
+42 "makes\040a\040contribution\040to\040%s" "helps\040out\040%s" 0 7
+43 "aids\040%s\040with\040divine\040intervention" "smiles\040upon\040%s" 0 9
+44 "hurts\040%s\040with\040divine\040intervention" "frowns\040upon\040%s" 0 9
+45 "sacrifices\040to\040%s" "makes\040divine\040payment\040to\040%s" 0 7
+46 "abms\040intercept\040a\040%s\040missile" "strategic\040defense\040systems\040destroy\040a\040%s\040missile" -10 5
+47 "missile\040fired\040at\040one\040of\040%s's\040sectors" "missile\040wreaks\040havoc\040on\040%s" -2 5
+48 "missile\040fired\040at\040a\040ship\040flying\040the\040flag\040of\040%s" "missiles\040hit\040%s\040ships" -2 5
+49 "engages\040in\040friendly\040trade\040with\040%s" "profits\040from\040a\040merchant\040venture\040with\040%s" 2 7
+50 "pirates\040dispose\040of\040%s\040booty\040in\040trade" "buccaneers\040sell\040their\040%s\040goods" 0 7
+51 "pirates\040keep\040their\040%s\040booty" "buccaneers\040laugh\040and\040bury\040their\040%s\040goods" 0 7
+52 "ships\040torpedoed\040by\040%s\040torpedo-boats" "ships\040sunk\040by\040marauding\040%s\040torpedo-boats" 0 3
+53 "planes\040bomb\040a\040skulking\040%s\040submarine" "planes\040drop\040depth-charges\040on\040a\040%s\040sub" 0 3
+55 "divebombs\040a\040brave\040%s\040unit" "airforce\040bombs\040%s\040units" -2 4
+56 "troops\040run\040afoul\040of\040a\040landmine" "troops\040severely\040damaged\040in\040mine\040field" 0 2
+57 "fortress\040gunners\040support\040troops\040attacking\040%s" "fortress\040artillery\040massacres\040%s\040defenders" -2 6
+58 "gunners\040support\040troops\040attacking\040%s" "artillery\040battery\040massacres\040%s\040defenders" -2 6
+59 "naval\040gunners\040support\040troops\040attacking\040%s" "naval\040gunfire\040massacres\040%s\040defenders" -2 6
+60 "sacks\040%s\040capital" "captures\040and\040pillages\040%s's\040capital" 10 1
+61 "announces\040friendly\040trade\040relations\040with\040%s" "upgrades\040%s's\040trade\040status\040to\040triple-A" 3 1
+62 "downgrades\040relations\040with\040%s\040to\040friendly" "cools\040relations\040with\040%s\040to\040friendly" 0 1
+63 "upgrades\040relations\040with\040%s\040to\040neutral" "Foreign\040Ministry\040declares\040\042%s\040is\040A-OK.\042" 2 1
+64 "downgrades\040relations\040with\040%s\040to\040neutral" "gives\040the\040cold\040shoulder\040to\040%s\040and\040declares\040neutral\040relations" 0 1
+65 "upgrades\040relations\040with\040%s\040to\040hostile" "forgives\040%s\040of\040past\040war\040crimes\040but\040remains\040hostile" 3 1
+66 "downgrades\040relations\040with\040%s\040to\040hostile" "is\040suspicious\040that\040%s\040has\040hostile\040intentions" 3 1
+67 "sector\040is\040struck\040by\040a\040sub-launched\040missile" "sector\040devastated\040by\040missile" 0 5
+68 "ship\040is\040hit\040by\040a\040sub-launched\040missile" "ship\040damaged\040by\040marine\040missile" 0 5
+69 "pilgrims\040settle\040on\040a\040new\040island" "discovers\040new\040land\040and\040starts\040a\040colony" 0 8
+70 "abms\040intercept\040an\040incoming\040sub-launched\040missile" "strategic\040defense\040systems\040destroy\040an\040incoming\040sub-launched\040warhead" 0 5
+71 "missile\040fired\040at\040%s\040ground\040troops" "missile\040hits\040%s\040troops" 2 5
+72 "regiment\040struck\040by\040sub-launched\040missile" "ground\040troops\040hit\040by\040missile" 0 5
+73 "navy\040secures\040a\040beachhead\040on\040%s\040territory" "sailors\040take\040a\040coastal\040sector\040from\040%s" -4 2
+74 "paratroopers\040comandeer\040a\040sector\040from\040%s" "air\040force\040parachutists\040overwhelm\040a\040%s\040sector" -4 2
+75 "parachutists\040grab\040unoccupied\040land" "paratroopers\040break\040new\040ground" 0 8
+76 "sailors\040repelled\040by\040%s\040coast-guard" "naval\040forces\040massacred\040in\040failed\040assault\040of\040%s" 4 2
+77 "paratroopers\040destroyed\040in\040failed\040air-assault\040on\040%s" "loses\040parachutists\040in\040failed\040air-assault\040of\040%s" 4 2
+80 "is\040unable\040to\040fulfill\040its\040financial\040obligations\040to\040%s" "welches\040on\040a\040deal\040with\040%s" 0 7
+81 "is\040repelled\040by\040%s\040while\040attempting\040to\040board\040a\040land\040unit" "forces\040prove\040inept\040at\040boarding\040%s's\040land\040unit" -3 2
+82 "mercenaries\040board\040one\040of\040%s's\040land\040units" "elite\040forces\040board\040%s\040land\040unit" -2 2
+/75
+
+[0:640] Command : XDUMP infrastructure 0
+"road\040network" 2 2 2 1 1
+"rail\040network" 1 1 1 1 0
+"defense\040factor" 1 1 1 1 0
+/3
+
+[0:640] Command : XDUMP updates 0
+/0
+
+[0:640] Command : XDUMP table 0
+0 "sect"
+1 "ship"
+2 "plane"
+3 "land"
+4 "nuke"
+5 "news"
+6 "treaty"
+7 "trade"
+9 "nat"
+10 "loan"
+13 "commodity"
+14 "lost"
+15 "realm"
+16 "game"
+17 "item"
+18 "product"
+19 "sect-chr"
+20 "ship-chr"
+21 "plane-chr"
+22 "land-chr"
+23 "nuke-chr"
+24 "news-chr"
+25 "infrastructure"
+26 "updates"
+27 "table"
+28 "version"
+29 "meta"
+30 "agreement-status"
+31 "land-chr-flags"
+32 "level"
+33 "meta-flags"
+34 "meta-type"
+35 "missions"
+36 "nation-flags"
+37 "nation-rejects"
+38 "nation-relationships"
+39 "nation-status"
+40 "nuke-chr-flags"
+41 "packing"
+42 "page-headings"
+43 "plague-stages"
+44 "plane-chr-flags"
+45 "plane-flags"
+46 "resources"
+47 "retreat-flags"
+48 "sector-navigation"
+49 "ship-chr-flags"
+50 "treaty-flags"
+51 "country"
+/49
+
+[0:640] Command : XDUMP version 0
+"Wolfpack\040Empire\0404.3.31" 99 "Deity\040forgot\040to\040edit\040econfig" "careless@invalid" 64 32 60 0 0 1 "" "" "" 1 0 1 0 1 1 1 0 0 0 1 0 0 0 0 1 1 0 1 1 0 1 0 0 1 0.00120000 1440 640 15 5 120 0 1.00000 96.0000 2.00000 2.00000 192.000 48.0000 600000. 600000. 1.00000 127 100 1000.00 10.0000 300 3000.00 100.000 1.00000 2.00000 127 -0.00100000 1.00000 2.00000 127 -0.00100000 1.50000 3.00000 127 -0.00100000 40 8 8 8 1.75000 5.00000 1.00000 0.300000 0.100000 0.500000 1.00000 2 0.00250000 0.00833330 -0.0833333 -0.00833330 0.00177770 0.00600000 0.250000 0.000500000 0.00130000 0.00120000 0.00500000 0 0.00600000 0.00500000 0.00000 7200 7200 1.00000 0.990000 8 14 25 0.0250000 0.0350000 0.0500000 0.200000 0.100000
+/1
+
+[0:640] Command : Usage: xdump ["meta"] <TYPE> [<RECORDS>]
+
+[0:640] Command : XDUMP sector-navigation 0
+0 "land"
+1 "sea"
+2 "harbor"
+3 "canal"
+4 "bridge"
+/5
+
+[0:640] Command : XDUMP agreement-status 0
+0 "free"
+1 "proposed"
+2 "signed"
+/3
+
+[0:640] Command : XDUMP land-chr-flags 0
+2 "engineer"
+4 "supply"
+8 "security"
+16 "light"
+32 "marine"
+64 "recon"
+128 "radar"
+256 "assault"
+512 "flak"
+1024 "spy"
+2048 "train"
+4096 "heavy"
+/12
+
+[0:640] Command : XDUMP level 0
+-1 "none"
+0 "technology"
+1 "research"
+2 "education"
+3 "happiness"
+/5
+
+[0:640] Command : XDUMP meta-flags 0
+1 "deity"
+2 "extra"
+4 "const"
+8 "bits"
+/4
+
+[0:640] Command : XDUMP meta-type 0
+1 "d"
+2 "g"
+3 "s"
+4 "d"
+5 "d"
+6 "d"
+7 "d"
+8 "d"
+9 "d"
+10 "d"
+11 "d"
+12 "d"
+13 "g"
+14 "c"
+/14
+
+[0:640] Command : XDUMP missions 0
+0 "none"
+1 "interdiction"
+2 "support"
+3 "reserve"
+4 "escort"
+6 "air\040defense"
+7 "defensive\040support"
+8 "offensive\040support"
+/8
+
+[0:640] Command : XDUMP nation-flags 0
+1 "inform"
+2 "flash"
+4 "beep"
+8 "coastwatch"
+16 "sonar"
+32 "techlists"
+64 "sacked"
+/7
+
+[0:640] Command : XDUMP nation-rejects 0
+1 "telegrams"
+2 "treaties"
+4 "announcements"
+8 "loans"
+/4
+
+[0:640] Command : XDUMP nation-relationships 0
+-1 "unknown"
+0 "at-war"
+1 "hostile"
+2 "neutral"
+3 "friendly"
+4 "allied"
+/6
+
+[0:640] Command : XDUMP nation-status 0
+0 "unused"
+1 "new"
+2 "visitor"
+3 "sanctuary"
+4 "active"
+5 "deity"
+/6
+
+[0:640] Command : XDUMP nuke-chr-flags 0
+1 "neutron"
+/1
+
+[0:640] Command : XDUMP packing 0
+0 "inefficient"
+1 "normal"
+2 "warehouse"
+3 "urban"
+4 "bank"
+/5
+
+[0:640] Command : XDUMP page-headings 0
+0 "Comics"
+1 "Foreign\040Affairs"
+2 "The\040Front\040Line"
+3 "The\040High\040Seas"
+4 "Sky\040Watch"
+5 "Guidance\040Systems"
+6 "Firestorms"
+7 "Business\040&\040Economics"
+8 "The\040Frontier"
+9 "The\040Home\040Front"
+10 "Espionage"
+11 "Telecommunications"
+/12
+
+[0:640] Command : XDUMP plague-stages 0
+0 "healthy"
+1 "dying"
+2 "infect"
+3 "incubate"
+4 "exposed"
+/5
+
+[0:640] Command : XDUMP plane-chr-flags 0
+2 "tactical"
+1 "bomber"
+4 "intercept"
+8 "cargo"
+16 "VTOL"
+32 "missile"
+64 "light"
+128 "spy"
+256 "image"
+512 "satellite"
+2048 "SDI"
+8192 "x-light"
+16384 "helo"
+32768 "ASW"
+65536 "para"
+131072 "escort"
+262144 "mine"
+524288 "sweep"
+1048576 "marine"
+/19
+
+[0:640] Command : XDUMP plane-flags 0
+1 "launched"
+2 "synchronous"
+4 "airburst"
+/3
+
+[0:640] Command : XDUMP resources 0
+0 "none"
+0 "min"
+0 "gold"
+0 "fert"
+0 "ocontent"
+0 "uran"
+/6
+
+[0:640] Command : XDUMP retreat-flags 0
+1 "group"
+2 "injured"
+4 "torped"
+8 "sonared"
+16 "helpless"
+32 "bombed"
+64 "depth-charged"
+128 "boarded"
+/8
+
+[0:640] Command : XDUMP ship-chr-flags 0
+1 "fish"
+2 "torp"
+4 "dchrg"
+8 "plane"
+16 "miss"
+32 "oil"
+64 "sonar"
+128 "mine"
+256 "sweep"
+512 "sub"
+2048 "land"
+4096 "sub-torp"
+8192 "trade"
+16384 "semi-land"
+262144 "supply"
+524288 "canal"
+1048576 "anti-missile"
+/17
+
+[0:640] Command : XDUMP treaty-flags 0
+1 "no\040attacks\040on\040any\040land\040units"
+2 "no\040attacks\040on\040any\040ships"
+4 "no\040shelling\040any\040ships"
+1024 "no\040depth-charging\040any\040subs"
+8 "no\040sector\040attacks"
+16 "no\040shelling\040any\040land"
+32 "no\040building\040ships"
+64 "no\040new\040nuclear\040weapons"
+128 "no\040building\040planes"
+256 "no\040building\040land\040units"
+512 "no\040enlistment"
+/11
+
+[0:640] Command : XDUMP country 0
+1 "127.0.0.1" "" "tester" 0 -2 0 0 0 255 640 0 36 60242 0 0 0 0 64.7274 21.7309 39.0988 12.0882 62
+/1
+
+[0:640] Command : Bye-bye
+Exit: so long...
+Player 01 Turn 99 completed successfully