tests: Make robust against variations in PRNG use
Tests need repeatable pseudorandom numbers to yield repeatable results. We seed the pseudorandom number generator with a fixed value (emp_server -R) to make it produce the same sequence of numbers every time. But whenever code exercised by a test is changed to consume fewer or more of them, all subsequent users get different numbers regardless. The ensuing test result changes are extremely tedious to review. To address this problem, reseed the PRNG with the count of commands right before executing a command when running_test_suite is on. This way, the effect of perturbing the PRN sequence lasts only until the next command. Note that the next command could be another player's. Doesn't matter. Adding or removing commands now upsets the PRN sequence even for commands that don't consume PRNs. The next commit will take care of that. Perturbs test results across the board. Hopefully, that'll happen much less frequently now. Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
parent
6c0a1fcb1e
commit
73f1ac8a2c
5 changed files with 2928 additions and 2921 deletions
|
@ -29,11 +29,12 @@
|
||||||
* Known contributors to this file:
|
* Known contributors to this file:
|
||||||
* Dave Pare, 1994
|
* Dave Pare, 1994
|
||||||
* Steve McClure, 1998
|
* Steve McClure, 1998
|
||||||
* Markus Armbruster, 2007-2012
|
* Markus Armbruster, 2007-2014
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
|
#include "chance.h"
|
||||||
#include "com.h"
|
#include "com.h"
|
||||||
#include "empio.h"
|
#include "empio.h"
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
|
@ -46,6 +47,12 @@
|
||||||
#include "prototypes.h"
|
#include "prototypes.h"
|
||||||
#include "server.h"
|
#include "server.h"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Last command's PRNG seed.
|
||||||
|
* Only used when running_test_suite.
|
||||||
|
*/
|
||||||
|
int test_suite_prng_seed;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Execute command named by player->argp[0].
|
* Execute command named by player->argp[0].
|
||||||
* BUF is the raw UTF-8 command line. It should have been passed to
|
* BUF is the raw UTF-8 command line. It should have been passed to
|
||||||
|
@ -71,6 +78,7 @@ dispatch(char *buf, char *redir)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
command = &player_coms[cmd];
|
command = &player_coms[cmd];
|
||||||
|
|
||||||
np = getnatp(player->cnum);
|
np = getnatp(player->cnum);
|
||||||
if (np->nat_btu < command->c_cost && command->c_cost > 0) {
|
if (np->nat_btu < command->c_cost && command->c_cost > 0) {
|
||||||
if (player->god || opt_BLITZ)
|
if (player->god || opt_BLITZ)
|
||||||
|
@ -88,6 +96,15 @@ dispatch(char *buf, char *redir)
|
||||||
? PLAYER_SLEEP_ON_INPUT : PLAYER_SLEEP_FREELY;
|
? PLAYER_SLEEP_ON_INPUT : PLAYER_SLEEP_FREELY;
|
||||||
player->command = command;
|
player->command = command;
|
||||||
empth_rwlock_rdlock(update_lock);
|
empth_rwlock_rdlock(update_lock);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* When running the test suite, reseed PRNG for each command with
|
||||||
|
* a counter, to keep results stable even when the number of PRNs
|
||||||
|
* consumed changes.
|
||||||
|
*/
|
||||||
|
if (running_test_suite)
|
||||||
|
seed_prng(++test_suite_prng_seed);
|
||||||
|
|
||||||
if (redir) {
|
if (redir) {
|
||||||
prredir(redir);
|
prredir(redir);
|
||||||
uprnf(buf);
|
uprnf(buf);
|
||||||
|
@ -109,6 +126,7 @@ dispatch(char *buf, char *redir)
|
||||||
CANT_REACH();
|
CANT_REACH();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
empth_rwlock_unlock(update_lock);
|
empth_rwlock_unlock(update_lock);
|
||||||
player->command = NULL;
|
player->command = NULL;
|
||||||
if (player->may_sleep != PLAYER_SLEEP_NEVER || !io_eof(player->iop))
|
if (player->may_sleep != PLAYER_SLEEP_NEVER || !io_eof(player->iop))
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
config sect
|
config sect
|
||||||
owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist ydist avail elev work coastal newdes min gold fert ocontent uran oldown civil milit shell gun petrol iron dust bar food oil lcm hcm uw rad c_dist m_dist s_dist g_dist p_dist i_dist d_dist b_dist f_dist o_dist l_dist h_dist u_dist r_dist c_del m_del s_del g_del p_del i_del d_del b_del f_del o_del l_del h_del u_del r_del mines pstage ptime che che_target fallout access road rail dfense
|
owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist ydist avail elev work coastal newdes min gold fert ocontent uran oldown civil milit shell gun petrol iron dust bar food oil lcm hcm uw rad c_dist m_dist s_dist g_dist p_dist i_dist d_dist b_dist f_dist o_dist l_dist h_dist u_dist r_dist c_del m_del s_del g_del p_del i_del d_del b_del f_del o_del l_del h_del u_del r_del mines pstage ptime che che_target fallout access road rail dfense
|
||||||
1 0 0 19 5 127 0 0 0 0 0 0 0 2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 15 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 0 0 19 5 127 0 0 0 0 0 0 0 2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 15 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 2 0 19 100 119 0 0 0 0 0 0 0 2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 75 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 2 0 19 100 120 0 0 0 0 0 0 0 2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 75 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 4 0 19 100 127 0 0 0 0 0 0 0 4 0 0 0 0 1 19 0 0 0 0 0 1 100 5 82 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 4 0 19 100 127 0 0 0 0 0 0 0 4 0 0 0 0 1 19 0 0 0 0 0 1 100 5 82 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 6 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 6 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 8 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 8 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -16,7 +16,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -6 0 0 0 0 0 0 0 0 0 0 0 -6 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -6 0 0 0 0 0 0 0 0 0 0 0 -6 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 -4 0 24 100 127 0 0 0 0 0 0 0 -4 0 0 0 0 1 24 0 0 0 0 0 1 100 5 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 -4 0 24 100 127 0 0 0 0 0 0 0 -4 0 0 0 0 1 24 0 0 0 0 0 1 100 5 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 -2 0 19 4 127 0 0 0 0 0 0 0 -2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 -2 0 19 4 127 0 0 0 0 0 0 0 -2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 1 1 24 100 121 0 0 0 0 0 0 0 1 1 0 0 0 0 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 1 1 24 100 122 0 0 0 0 0 0 0 1 1 0 0 0 0 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 3 1 12 100 0 0 0 0 0 0 0 0 3 1 0 0 0 1 12 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 3 1 12 100 0 0 0 0 0 0 0 0 3 1 0 0 0 1 12 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 5 1 0 0 0 0 0 0 0 0 0 0 5 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 5 1 0 0 0 0 0 0 0 0 0 0 5 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 7 1 0 0 0 0 0 0 0 0 0 0 7 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 7 1 0 0 0 0 0 0 0 0 0 0 7 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -32,9 +32,9 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -5 1 0 0 0 0 0 0 0 0 0 0 -5 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -5 1 0 0 0 0 0 0 0 0 0 0 -5 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 -3 1 24 100 127 0 0 0 0 0 0 0 -3 1 0 0 0 1 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 -3 1 24 100 127 0 0 0 0 0 0 0 -3 1 0 0 0 1 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 -1 1 24 100 127 0 0 0 0 0 0 0 -1 1 0 0 0 0 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 -1 1 24 100 127 0 0 0 0 0 0 0 -1 1 0 0 0 0 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 0 2 24 1 0 0 0 0 0 0 0 0 0 2 2 0 100 1 24 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 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 healthy 0 0 0 0 0 1 1 1
|
0 0 2 24 2 0 0 0 0 0 0 0 0 0 2 1 0 100 1 24 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 1 1 1
|
||||||
2 2 2 12 75 0 0 0 0 0 0 0 0 2 2 76 0 0 1 12 0 0 0 0 0 2 75 0 0 0 0 0 0 0 0 0 76 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 76 76 75
|
2 2 2 12 87 0 0 0 0 0 0 0 0 2 2 86 0 0 1 12 0 0 0 0 0 2 87 0 0 0 0 0 0 0 0 0 86 86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 86 86 86
|
||||||
2 4 2 28 98 125 0 0 0 0 0 0 0 4 2 98 0 0 1 28 0 0 0 0 0 2 98 0 0 0 0 0 0 0 0 0 98 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 98 98 98
|
2 4 2 28 98 124 0 0 0 0 0 0 0 4 2 98 0 0 1 28 0 0 0 0 0 2 98 0 0 0 0 0 0 0 0 0 98 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 98 98 98
|
||||||
0 6 2 0 0 0 0 0 0 0 0 0 0 6 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 6 2 0 0 0 0 0 0 0 0 0 0 6 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 8 2 0 0 0 0 0 0 0 0 0 0 8 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 8 2 0 0 0 0 0 0 0 0 0 0 8 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 10 2 0 0 0 0 0 0 0 0 0 0 10 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 10 2 0 0 0 0 0 0 0 0 0 0 10 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -48,7 +48,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -6 2 0 0 0 0 0 0 0 0 0 0 -6 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -6 2 0 0 0 0 0 0 0 0 0 0 -6 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -4 2 0 0 0 0 0 0 0 0 0 0 -4 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -4 2 0 0 0 0 0 0 0 0 0 0 -4 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
2 -2 2 24 100 127 0 0 0 0 0 0 0 -2 2 100 0 0 1 24 0 0 0 0 0 2 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 100 100 100
|
2 -2 2 24 100 127 0 0 0 0 0 0 0 -2 2 100 0 0 1 24 0 0 0 0 0 2 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 100 100 100
|
||||||
0 1 3 0 0 0 0 0 0 0 0 0 0 1 3 79 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 79 79 79
|
0 1 3 0 0 0 0 0 0 0 0 0 0 1 3 78 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 78 78 78
|
||||||
0 3 3 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 3 3 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 5 3 0 0 0 0 0 0 0 0 0 0 5 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 5 3 0 0 0 0 0 0 0 0 0 0 5 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 7 3 0 0 0 0 0 0 0 0 0 0 7 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 7 3 0 0 0 0 0 0 0 0 0 0 7 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -271,19 +271,19 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius fleet xstar
|
||||||
9 1 3 1 2 100 127 0 20 0 0 none 0 "" 0 0 0 0 0 0 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 10 10 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
9 1 3 1 2 100 127 0 20 0 0 none 0 "" 0 0 0 0 0 0 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 10 10 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
10 0 2 2 18 0 0 0 60 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 (helpless depth-charged) "n"
|
10 0 2 2 18 0 0 0 60 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 (helpless depth-charged) "n"
|
||||||
11 0 6 0 18 0 0 0 60 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 (injured helpless depth-charged) "j"
|
11 0 6 0 18 0 0 0 60 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 (injured helpless depth-charged) "j"
|
||||||
12 2 3 3 18 71 66 0 60 0 0 none 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
12 2 3 3 18 68 62 0 60 0 0 none 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
13 2 8 0 18 68 61 0 60 0 0 none 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
13 2 8 0 18 72 67 0 60 0 0 none 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
14 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
14 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
15 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
15 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
16 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
16 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
17 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
17 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
18 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
18 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
19 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
19 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
20 0 2 2 2 0 0 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 70 70 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
20 0 2 2 2 0 0 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78 78 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
21 0 6 0 2 0 0 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 60 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
21 0 6 0 2 0 0 0 20 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 80 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
22 2 2 2 2 60 77 0 20 0 0 none 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 60 60 0 0 healthy 0 0 0 "" 0 "" 0 0 0 (helpless depth-charged) "n"
|
22 2 2 2 2 58 74 0 20 0 0 none 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 59 58 0 0 healthy 0 0 0 "" 0 "" 0 0 0 (helpless depth-charged) "n"
|
||||||
23 2 8 0 2 65 74 0 20 0 0 none 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 66 66 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
23 2 8 0 2 78 88 0 20 0 0 none 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 78 78 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
24 2 6 0 2 24 30 0 20 0 0 none 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 23 23 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
24 2 6 0 2 32 40 0 20 0 0 none 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 32 32 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
25 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
25 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
26 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
26 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
27 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
27 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 "" 0 "" 0 0 0 () ""
|
||||||
|
@ -312,8 +312,8 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius fleet xstar
|
||||||
/config
|
/config
|
||||||
config plane
|
config plane
|
||||||
uid owner xloc yloc type effic mobil off tech opx opy mission radius wing range harden ship land flags access theta
|
uid owner xloc yloc type effic mobil off tech opx opy mission radius wing range harden ship land flags access theta
|
||||||
0 2 2 2 27 99 126 0 180 0 0 none 0 "" 2 0 -1 -1 () 0 0.00000
|
0 2 2 2 27 100 127 0 180 0 0 none 0 "" 2 0 -1 -1 () 0 0.00000
|
||||||
1 2 2 2 12 99 126 0 150 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
1 2 2 2 12 100 127 0 150 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
||||||
2 0 1 3 12 0 127 0 150 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
2 0 1 3 12 0 127 0 150 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
||||||
3 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
3 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
||||||
4 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
4 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
||||||
|
@ -344,8 +344,8 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius wing range
|
||||||
29 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
29 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
||||||
30 0 1 3 27 0 127 0 180 0 0 none 0 "" 2 0 -1 -1 () 0 0.00000
|
30 0 1 3 27 0 127 0 180 0 0 none 0 "" 2 0 -1 -1 () 0 0.00000
|
||||||
31 0 1 3 27 0 127 0 180 0 0 none 0 "" 2 0 -1 -1 () 0 0.00000
|
31 0 1 3 27 0 127 0 180 0 0 none 0 "" 2 0 -1 -1 () 0 0.00000
|
||||||
32 2 2 2 27 99 126 0 180 0 0 none 0 "" 2 0 -1 32 () 0 0.00000
|
32 2 2 2 27 100 127 0 180 0 0 none 0 "" 2 0 -1 32 () 0 0.00000
|
||||||
33 2 2 2 27 99 126 0 180 0 0 none 0 "" 2 0 -1 33 () 0 0.00000
|
33 2 2 2 27 100 127 0 180 0 0 none 0 "" 2 0 -1 33 () 0 0.00000
|
||||||
34 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
34 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
||||||
35 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
35 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
||||||
36 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
36 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
||||||
|
@ -385,9 +385,9 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius army ship h
|
||||||
17 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
17 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
18 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
18 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
19 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
19 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
20 0 2 2 21 0 121 0 270 2 2 none 0 "" -1 0 0 () "" 0 9 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
20 0 2 2 21 0 122 0 270 2 2 none 0 "" -1 0 0 () "" 0 9 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
21 0 6 0 21 0 127 0 270 6 0 none 0 "" -1 0 0 () "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
21 0 6 0 21 0 127 0 270 6 0 none 0 "" -1 0 0 () "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
22 2 2 2 21 95 121 0 270 2 2 none 0 "" 22 0 0 () "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
22 2 2 2 21 97 124 0 270 2 2 none 0 "" 22 0 0 () "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
23 2 8 0 21 100 127 0 270 8 0 none 0 "" 23 0 0 () "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
23 2 8 0 21 100 127 0 270 8 0 none 0 "" 23 0 0 () "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
24 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
24 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
25 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
25 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
|
@ -397,8 +397,8 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius army ship h
|
||||||
29 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
29 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
30 0 1 3 7 0 127 0 40 0 0 none 0 "" -1 0 0 () "" 0 10 0 0 0 0 0 0 0 0 100 100 0 0 healthy 0 -1 0
|
30 0 1 3 7 0 127 0 40 0 0 none 0 "" -1 0 0 () "" 0 10 0 0 0 0 0 0 0 0 100 100 0 0 healthy 0 -1 0
|
||||||
31 0 1 3 21 0 127 0 270 1 3 none 0 "" -1 0 0 () "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
31 0 1 3 21 0 127 0 270 1 3 none 0 "" -1 0 0 () "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
32 2 2 2 7 90 114 0 40 0 0 none 0 "" -1 0 0 () "" 0 9 0 0 0 0 0 0 0 0 89 89 0 0 healthy 0 -1 0
|
32 2 2 2 7 94 120 0 40 0 0 none 0 "" -1 0 0 () "" 0 10 0 0 0 0 0 0 0 0 94 94 0 0 healthy 0 -1 0
|
||||||
33 2 2 2 21 95 121 0 270 2 2 none 0 "" -1 0 0 () "" 0 9 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 32 0
|
33 2 2 2 21 97 123 0 270 2 2 none 0 "" -1 0 0 () "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 32 0
|
||||||
34 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
34 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
35 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
35 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
36 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
36 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
|
@ -471,11 +471,11 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius stockpile p
|
||||||
/config
|
/config
|
||||||
config news
|
config news
|
||||||
actor action victim times duration time
|
actor action victim times duration time
|
||||||
1 10 0 5 0 0
|
1 10 0 4 0 0
|
||||||
1 10 1 6 0 0
|
1 10 1 6 0 0
|
||||||
1 10 2 23 0 0
|
1 10 2 22 0 0
|
||||||
1 11 1 1 0 0
|
1 11 1 1 0 0
|
||||||
1 11 2 12 0 0
|
1 11 2 11 0 0
|
||||||
/config
|
/config
|
||||||
config treaty
|
config treaty
|
||||||
uid cna cnb status acond bcond exp
|
uid cna cnb status acond bcond exp
|
||||||
|
|
|
@ -98,8 +98,8 @@
|
||||||
Play#1 output Play#1 6 0 629
|
Play#1 output Play#1 6 0 629
|
||||||
Play#1 input move g 1,1 1 yh
|
Play#1 input move g 1,1 1 yh
|
||||||
Play#1 command move
|
Play#1 command move
|
||||||
Play#1 output Play#1 1 Total movement cost = 4
|
Play#1 output Play#1 1 Total movement cost = 3
|
||||||
Play#1 output Play#1 1 122 mob left in 1,1
|
Play#1 output Play#1 1 123 mob left in 1,1
|
||||||
Play#1 output Play#1 6 0 628
|
Play#1 output Play#1 6 0 628
|
||||||
Play#1 input move s 0,0 1 nh
|
Play#1 input move s 0,0 1 nh
|
||||||
Play#1 command move
|
Play#1 command move
|
||||||
|
@ -113,7 +113,7 @@
|
||||||
Play#1 input move s 1,1 1 yh
|
Play#1 input move s 1,1 1 yh
|
||||||
Play#1 command move
|
Play#1 command move
|
||||||
Play#1 output Play#1 1 Total movement cost = 1
|
Play#1 output Play#1 1 Total movement cost = 1
|
||||||
Play#1 output Play#1 1 121 mob left in 1,1
|
Play#1 output Play#1 1 122 mob left in 1,1
|
||||||
Play#1 output Play#1 6 0 625
|
Play#1 output Play#1 6 0 625
|
||||||
Play#1 input fire se 4,0 -12,0
|
Play#1 input fire se 4,0 -12,0
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
|
@ -140,7 +140,7 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1
|
Play#1 output Play#1 1
|
||||||
Play#1 output Play#1 1 Sector 4,0 firing
|
Play#1 output Play#1 1 Sector 4,0 firing
|
||||||
Play#1 output Play#1 1 range is 5.00 (4.50)
|
Play#1 output Play#1 1 range is 4.00 (4.50)
|
||||||
Play#1 output Play#1 1 Target out of range.
|
Play#1 output Play#1 1 Target out of range.
|
||||||
Play#1 output Play#1 6 0 621
|
Play#1 output Play#1 6 0 621
|
||||||
Play#1 input fire se 4,0 14,0
|
Play#1 input fire se 4,0 14,0
|
||||||
|
@ -154,24 +154,23 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1
|
Play#1 output Play#1 1
|
||||||
Play#1 output Play#1 1 Sector 4,0 firing
|
Play#1 output Play#1 1 Sector 4,0 firing
|
||||||
|
Play#1 output Play#1 1 range is 4.00 (4.50)
|
||||||
|
Play#1 output Play#1 1 Target out of range.
|
||||||
|
Play#1 output Play#1 6 0 619
|
||||||
|
Play#1 input fire se 4,0 14,0
|
||||||
|
Play#1 command fire
|
||||||
|
Play#1 output Play#1 1
|
||||||
|
Play#1 output Play#1 1 Sector 4,0 firing
|
||||||
Play#1 output Play#1 1 range is 5.00 (4.50)
|
Play#1 output Play#1 1 range is 5.00 (4.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 14,0 for 40 damage.
|
Play#1 output Play#1 1 Shells hit sector 14,0 for 22 damage.
|
||||||
Play#1 output Play#1 6 0 619
|
Play#1 output Play#1 6 0 618
|
||||||
Play#1 input fire se 4,0 14,0
|
Play#1 input fire se 4,0 14,0
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1
|
Play#1 output Play#1 1
|
||||||
Play#1 output Play#1 1 Sector 4,0 firing
|
Play#1 output Play#1 1 Sector 4,0 firing
|
||||||
Play#1 output Play#1 1 range is 4.00 (4.50)
|
Play#1 output Play#1 1 range is 4.00 (4.50)
|
||||||
Play#1 output Play#1 1 Target out of range.
|
Play#1 output Play#1 1 Target out of range.
|
||||||
Play#1 output Play#1 6 0 618
|
|
||||||
Play#1 input fire se 4,0 14,0
|
|
||||||
Play#1 command fire
|
|
||||||
Play#1 output Play#1 1
|
|
||||||
Play#1 output Play#1 1 Sector 4,0 firing
|
|
||||||
Play#1 output Play#1 1 range is 5.00 (4.50)
|
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
|
||||||
Play#1 output Play#1 1 Shells hit sector 14,0 for 48 damage.
|
|
||||||
Play#1 output Play#1 6 0 617
|
Play#1 output Play#1 6 0 617
|
||||||
Play#1 input fire se 4,0 14,0
|
Play#1 input fire se 4,0 14,0
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
|
@ -186,20 +185,20 @@
|
||||||
Play#1 output Play#1 1 Sector 4,0 firing
|
Play#1 output Play#1 1 Sector 4,0 firing
|
||||||
Play#1 output Play#1 1 range is 5.00 (4.50)
|
Play#1 output Play#1 1 range is 5.00 (4.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 14,0 for 24 damage.
|
Play#1 output Play#1 1 Shells hit sector 14,0 for 39 damage.
|
||||||
Play#1 output Play#1 6 0 615
|
Play#1 output Play#1 6 0 615
|
||||||
Play#1 input fire se 4,0 2,-2
|
Play#1 input fire se 4,0 2,-2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1
|
Play#1 output Play#1 1
|
||||||
Play#1 output Play#1 1 Sector 4,0 firing
|
Play#1 output Play#1 1 Sector 4,0 firing
|
||||||
Play#1 output Play#1 1 range is 4.00 (4.50)
|
Play#1 output Play#1 1 range is 5.00 (4.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 2,-2 for 43 damage.
|
Play#1 output Play#1 1 Shells hit sector 2,-2 for 21 damage.
|
||||||
Play#1 output Play#1 6 0 614
|
Play#1 output Play#1 6 0 614
|
||||||
Play#1 input move s 2,0 20 gh
|
Play#1 input move s 2,0 20 gh
|
||||||
Play#1 command move
|
Play#1 command move
|
||||||
Play#1 output Play#1 1 Total movement cost = 8
|
Play#1 output Play#1 1 Total movement cost = 7
|
||||||
Play#1 output Play#1 1 119 mob left in 2,0
|
Play#1 output Play#1 1 120 mob left in 2,0
|
||||||
Play#1 output Play#1 6 0 613
|
Play#1 output Play#1 6 0 613
|
||||||
Play#1 input fire se 0,0 -2,-2
|
Play#1 input fire se 0,0 -2,-2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
|
@ -213,23 +212,23 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1
|
Play#1 output Play#1 1
|
||||||
Play#1 output Play#1 1 Sector 2,0 firing
|
Play#1 output Play#1 1 Sector 2,0 firing
|
||||||
Play#1 output Play#1 1 range is 4.00 (4.50)
|
Play#1 output Play#1 1 range is 5.00 (4.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector -2,-2 for 4 damage.
|
Play#1 output Play#1 1 Shells hit sector -2,-2 for 5 damage.
|
||||||
Play#1 output Play#1 6 0 611
|
Play#1 output Play#1 6 0 611
|
||||||
Play#1 input fire se 4,0 -2,-2
|
Play#1 input fire se 4,0 -2,-2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1
|
Play#1 output Play#1 1
|
||||||
Play#1 output Play#1 1 Sector 4,0 firing
|
Play#1 output Play#1 1 Sector 4,0 firing
|
||||||
Play#1 output Play#1 1 range is 4.00 (4.50)
|
Play#1 output Play#1 1 range is 5.00 (4.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector -2,-2 for 45 damage.
|
Play#1 output Play#1 1 Shells hit sector -2,-2 for 43 damage.
|
||||||
Play#1 output Play#1 6 0 610
|
Play#1 output Play#1 6 0 610
|
||||||
Play#1 input fire se 0,0 4,2
|
Play#1 input fire se 0,0 4,2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1
|
Play#1 output Play#1 1
|
||||||
Play#1 output Play#1 1 Sector 0,0 firing
|
Play#1 output Play#1 1 Sector 0,0 firing
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.50)
|
Play#1 output Play#1 1 range is 3.00 (3.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 4,2 for 0 damage.
|
Play#1 output Play#1 1 Shells hit sector 4,2 for 0 damage.
|
||||||
Play#1 output Play#1 6 0 609
|
Play#1 output Play#1 6 0 609
|
||||||
|
@ -245,15 +244,15 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1
|
Play#1 output Play#1 1
|
||||||
Play#1 output Play#1 1 Sector 4,0 firing
|
Play#1 output Play#1 1 Sector 4,0 firing
|
||||||
Play#1 output Play#1 1 range is 4.00 (4.50)
|
Play#1 output Play#1 1 range is 5.00 (4.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 1,3 for 27 damage.
|
Play#1 output Play#1 1 Shells hit sector 1,3 for 29 damage.
|
||||||
Play#1 output Play#1 6 0 607
|
Play#1 output Play#1 6 0 607
|
||||||
Play#1 input fire se 0,0 2,2
|
Play#1 input fire se 0,0 2,2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1
|
Play#1 output Play#1 1
|
||||||
Play#1 output Play#1 1 Sector 0,0 firing
|
Play#1 output Play#1 1 Sector 0,0 firing
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.50)
|
Play#1 output Play#1 1 range is 4.00 (3.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 2,2 for 0 damage.
|
Play#1 output Play#1 1 Shells hit sector 2,2 for 0 damage.
|
||||||
Play#1 output Play#1 6 0 606
|
Play#1 output Play#1 6 0 606
|
||||||
|
@ -271,7 +270,7 @@
|
||||||
Play#1 output Play#1 1 Sector 4,0 firing
|
Play#1 output Play#1 1 Sector 4,0 firing
|
||||||
Play#1 output Play#1 1 range is 4.00 (4.50)
|
Play#1 output Play#1 1 range is 4.00 (4.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 2,2 for 44 damage.
|
Play#1 output Play#1 1 Shells hit sector 2,2 for 21 damage.
|
||||||
Play#1 output Play#1 6 0 604
|
Play#1 output Play#1 6 0 604
|
||||||
Play#1 input fire se 0,0 9
|
Play#1 input fire se 0,0 9
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
|
@ -296,7 +295,7 @@
|
||||||
Play#1 output Play#1 1 Sector 2,0 firing
|
Play#1 output Play#1 1 Sector 2,0 firing
|
||||||
Play#1 output Play#1 1 range is 4.00 (4.50)
|
Play#1 output Play#1 1 range is 4.00 (4.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit cs cargo ship (#23) in 6,0 for 3 damage.
|
Play#1 output Play#1 1 Shells hit cs cargo ship (#23) in 6,0 for 2 damage.
|
||||||
Play#1 output Play#1 6 0 601
|
Play#1 output Play#1 6 0 601
|
||||||
Play#1 input fire se 4,0 23
|
Play#1 input fire se 4,0 23
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
|
@ -304,7 +303,7 @@
|
||||||
Play#1 output Play#1 1 Sector 4,0 firing
|
Play#1 output Play#1 1 Sector 4,0 firing
|
||||||
Play#1 output Play#1 1 range is 4.00 (4.50)
|
Play#1 output Play#1 1 range is 4.00 (4.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit cs cargo ship (#23) in 8,0 for 40 damage.
|
Play#1 output Play#1 1 Shells hit cs cargo ship (#23) in 8,0 for 26 damage.
|
||||||
Play#1 output Play#1 6 0 600
|
Play#1 output Play#1 6 0 600
|
||||||
Play#1 input fire se 4,0 21
|
Play#1 input fire se 4,0 21
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
|
@ -312,14 +311,14 @@
|
||||||
Play#1 output Play#1 1 Sector 4,0 firing
|
Play#1 output Play#1 1 Sector 4,0 firing
|
||||||
Play#1 output Play#1 1 range is 5.00 (4.50)
|
Play#1 output Play#1 1 range is 5.00 (4.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit cs cargo ship (#21) in 6,0 for 48 damage.
|
Play#1 output Play#1 1 Shells hit cs cargo ship (#21) in 6,0 for 24 damage.
|
||||||
Play#1 output Play#1 1 cs cargo ship (#21) sunk!
|
Play#1 output Play#1 1 cs cargo ship (#21) sunk!
|
||||||
Play#1 output Play#1 6 0 599
|
Play#1 output Play#1 6 0 599
|
||||||
Play#1 input fire se 0,0 22
|
Play#1 input fire se 0,0 22
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1
|
Play#1 output Play#1 1
|
||||||
Play#1 output Play#1 1 Sector 0,0 firing
|
Play#1 output Play#1 1 Sector 0,0 firing
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.50)
|
Play#1 output Play#1 1 range is 4.00 (3.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit cs cargo ship (#22) in 2,2 for 0 damage.
|
Play#1 output Play#1 1 Shells hit cs cargo ship (#22) in 2,2 for 0 damage.
|
||||||
Play#1 output Play#1 6 0 598
|
Play#1 output Play#1 6 0 598
|
||||||
|
@ -327,7 +326,7 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1
|
Play#1 output Play#1 1
|
||||||
Play#1 output Play#1 1 Sector 2,0 firing
|
Play#1 output Play#1 1 Sector 2,0 firing
|
||||||
Play#1 output Play#1 1 range is 4.00 (4.50)
|
Play#1 output Play#1 1 range is 5.00 (4.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit cs cargo ship (#22) in 2,2 for 4 damage.
|
Play#1 output Play#1 1 Shells hit cs cargo ship (#22) in 2,2 for 4 damage.
|
||||||
Play#1 output Play#1 6 0 597
|
Play#1 output Play#1 6 0 597
|
||||||
|
@ -337,15 +336,15 @@
|
||||||
Play#1 output Play#1 1 Sector 4,0 firing
|
Play#1 output Play#1 1 Sector 4,0 firing
|
||||||
Play#1 output Play#1 1 range is 5.00 (4.50)
|
Play#1 output Play#1 1 range is 5.00 (4.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit cs cargo ship (#22) in 2,2 for 46 damage.
|
Play#1 output Play#1 1 Shells hit cs cargo ship (#22) in 2,2 for 49 damage.
|
||||||
Play#1 output Play#1 6 0 596
|
Play#1 output Play#1 6 0 596
|
||||||
Play#1 input fire se 4,0 20
|
Play#1 input fire se 4,0 20
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1
|
Play#1 output Play#1 1
|
||||||
Play#1 output Play#1 1 Sector 4,0 firing
|
Play#1 output Play#1 1 Sector 4,0 firing
|
||||||
Play#1 output Play#1 1 range is 5.00 (4.50)
|
Play#1 output Play#1 1 range is 4.00 (4.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit cs cargo ship (#20) in 2,2 for 36 damage.
|
Play#1 output Play#1 1 Shells hit cs cargo ship (#20) in 2,2 for 27 damage.
|
||||||
Play#1 output Play#1 1 cs cargo ship (#20) sunk!
|
Play#1 output Play#1 1 cs cargo ship (#20) sunk!
|
||||||
Play#1 output Play#1 6 0 595
|
Play#1 output Play#1 6 0 595
|
||||||
Play#1 input comm * ?shell>0
|
Play#1 input comm * ?shell>0
|
||||||
|
@ -382,17 +381,17 @@
|
||||||
Play#0 command xdump
|
Play#0 command xdump
|
||||||
Play#0 output Play#0 1 XDUMP sect 0
|
Play#0 output Play#0 1 XDUMP sect 0
|
||||||
Play#0 output Play#0 1 1 0 0 19 5 127 0 0 0 0 0 0 0 2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 15 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 0 0 19 5 127 0 0 0 0 0 0 0 2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 15 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 2 0 19 100 119 0 0 0 0 0 0 0 2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 75 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 2 0 19 100 120 0 0 0 0 0 0 0 2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 75 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 4 0 19 100 127 0 0 0 0 0 0 0 4 0 0 0 0 1 19 0 0 0 0 0 1 100 5 82 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 4 0 19 100 127 0 0 0 0 0 0 0 4 0 0 0 0 1 19 0 0 0 0 0 1 100 5 82 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 -4 0 24 100 127 0 0 0 0 0 0 0 -4 0 0 0 0 1 24 0 0 0 0 0 1 100 5 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 -4 0 24 100 127 0 0 0 0 0 0 0 -4 0 0 0 0 1 24 0 0 0 0 0 1 100 5 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 -2 0 19 4 127 0 0 0 0 0 0 0 -2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 -2 0 19 4 127 0 0 0 0 0 0 0 -2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 1 1 24 100 121 0 0 0 0 0 0 0 1 1 0 0 0 0 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 1 1 24 100 122 0 0 0 0 0 0 0 1 1 0 0 0 0 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 3 1 12 100 0 0 0 0 0 0 0 0 3 1 0 0 0 1 12 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 3 1 12 100 0 0 0 0 0 0 0 0 3 1 0 0 0 1 12 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 -3 1 24 100 127 0 0 0 0 0 0 0 -3 1 0 0 0 1 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 -3 1 24 100 127 0 0 0 0 0 0 0 -3 1 0 0 0 1 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 -1 1 24 100 127 0 0 0 0 0 0 0 -1 1 0 0 0 0 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 -1 1 24 100 127 0 0 0 0 0 0 0 -1 1 0 0 0 0 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 2 0 2 24 100 127 0 0 0 0 0 0 0 0 2 100 0 0 1 24 0 0 0 0 0 2 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100
|
Play#0 output Play#0 1 2 0 2 24 100 127 0 0 0 0 0 0 0 0 2 100 0 0 1 24 0 0 0 0 0 2 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100
|
||||||
Play#0 output Play#0 1 2 2 2 12 75 0 0 0 0 0 0 0 0 2 2 76 0 0 1 12 0 0 0 0 0 2 75 0 0 0 0 0 0 0 0 0 76 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 76 76 75
|
Play#0 output Play#0 1 2 2 2 12 87 0 0 0 0 0 0 0 0 2 2 86 0 0 1 12 0 0 0 0 0 2 87 0 0 0 0 0 0 0 0 0 86 86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86 86 86
|
||||||
Play#0 output Play#0 1 2 4 2 28 98 125 0 0 0 0 0 0 0 4 2 98 0 0 1 28 0 0 0 0 0 2 98 0 0 0 0 0 0 0 0 0 98 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 98 98 98
|
Play#0 output Play#0 1 2 4 2 28 98 124 0 0 0 0 0 0 0 4 2 98 0 0 1 28 0 0 0 0 0 2 98 0 0 0 0 0 0 0 0 0 98 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 98 98 98
|
||||||
Play#0 output Play#0 1 2 -2 2 24 100 127 0 0 0 0 0 0 0 -2 2 100 0 0 1 24 0 0 0 0 0 2 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100
|
Play#0 output Play#0 1 2 -2 2 24 100 127 0 0 0 0 0 0 0 -2 2 100 0 0 1 24 0 0 0 0 0 2 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100
|
||||||
Play#0 output Play#0 1 1 0 -2 24 100 127 0 0 0 0 0 0 0 0 -2 0 0 0 1 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 0 -2 24 100 127 0 0 0 0 0 0 0 0 -2 0 0 0 1 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 2 -2 2 100 127 0 0 0 0 0 0 0 2 -2 0 0 0 1 2 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 2 -2 2 100 127 0 0 0 0 0 0 0 2 -2 0 0 0 1 2 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
|
@ -417,20 +416,20 @@
|
||||||
Play#0 output Play#0 1 11 2 6 0 18 20 0 0 60 0 0 0 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 0 0 0 82 "j"
|
Play#0 output Play#0 1 11 2 6 0 18 20 0 0 60 0 0 0 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 0 0 0 82 "j"
|
||||||
Play#0 output Play#0 1 12 2 2 2 18 100 127 0 60 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 "" 0 "" 0 0 0 80 "n"
|
Play#0 output Play#0 1 12 2 2 2 18 100 127 0 60 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 "" 0 "" 0 0 0 80 "n"
|
||||||
Play#0 output Play#0 1 13 2 6 0 18 100 127 0 60 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 "" 0 "" 0 0 0 82 "j"
|
Play#0 output Play#0 1 13 2 6 0 18 100 127 0 60 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 "" 0 "" 0 0 0 82 "j"
|
||||||
Play#0 output Play#0 1 22 2 2 2 2 60 77 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 60 60 0 0 0 0 0 0 "" 0 "" 0 0 0 80 "n"
|
Play#0 output Play#0 1 22 2 2 2 2 58 74 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 59 58 0 0 0 0 0 0 "" 0 "" 0 0 0 80 "n"
|
||||||
Play#0 output Play#0 1 23 2 8 0 2 65 74 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 66 66 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
Play#0 output Play#0 1 23 2 8 0 2 78 88 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 78 78 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
||||||
Play#0 output Play#0 1 24 2 6 0 2 100 127 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 100 100 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
Play#0 output Play#0 1 24 2 6 0 2 100 127 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 100 100 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
||||||
Play#0 output Play#0 1 /14
|
Play#0 output Play#0 1 /14
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input xdump plane *
|
Play#0 input xdump plane *
|
||||||
Play#0 command xdump
|
Play#0 command xdump
|
||||||
Play#0 output Play#0 1 XDUMP plane 0
|
Play#0 output Play#0 1 XDUMP plane 0
|
||||||
Play#0 output Play#0 1 0 2 2 2 27 99 126 0 180 0 0 0 0 "" 2 0 -1 -1 0 0 0.00000
|
Play#0 output Play#0 1 0 2 2 2 27 100 127 0 180 0 0 0 0 "" 2 0 -1 -1 0 0 0.00000
|
||||||
Play#0 output Play#0 1 1 2 2 2 12 99 126 0 150 0 0 0 0 "" 0 0 -1 -1 0 0 0.00000
|
Play#0 output Play#0 1 1 2 2 2 12 100 127 0 150 0 0 0 0 "" 0 0 -1 -1 0 0 0.00000
|
||||||
Play#0 output Play#0 1 22 2 2 2 27 100 127 0 180 0 0 0 0 "" 2 0 22 -1 0 0 0.00000
|
Play#0 output Play#0 1 22 2 2 2 27 100 127 0 180 0 0 0 0 "" 2 0 22 -1 0 0 0.00000
|
||||||
Play#0 output Play#0 1 23 2 8 0 27 100 127 0 180 0 0 0 0 "" 2 0 23 -1 0 0 0.00000
|
Play#0 output Play#0 1 23 2 8 0 27 100 127 0 180 0 0 0 0 "" 2 0 23 -1 0 0 0.00000
|
||||||
Play#0 output Play#0 1 32 2 2 2 27 99 126 0 180 0 0 0 0 "" 2 0 -1 32 0 0 0.00000
|
Play#0 output Play#0 1 32 2 2 2 27 100 127 0 180 0 0 0 0 "" 2 0 -1 32 0 0 0.00000
|
||||||
Play#0 output Play#0 1 33 2 2 2 27 99 126 0 180 0 0 0 0 "" 2 0 -1 33 0 0 0.00000
|
Play#0 output Play#0 1 33 2 2 2 27 100 127 0 180 0 0 0 0 "" 2 0 -1 33 0 0 0.00000
|
||||||
Play#0 output Play#0 1 /6
|
Play#0 output Play#0 1 /6
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input xdump land *
|
Play#0 input xdump land *
|
||||||
|
@ -442,10 +441,10 @@
|
||||||
Play#0 output Play#0 1 9 1 3 1 7 100 0 0 40 0 0 0 0 "" -1 0 0 0 "" 0 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
Play#0 output Play#0 1 9 1 3 1 7 100 0 0 40 0 0 0 0 "" -1 0 0 0 "" 0 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
||||||
Play#0 output Play#0 1 11 2 6 0 8 100 127 0 40 0 0 0 0 "" 11 0 42 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
Play#0 output Play#0 1 11 2 6 0 8 100 127 0 40 0 0 0 0 "" 11 0 42 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
||||||
Play#0 output Play#0 1 13 2 6 0 8 100 127 0 40 0 0 0 0 "" 13 0 42 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
Play#0 output Play#0 1 13 2 6 0 8 100 127 0 40 0 0 0 0 "" 13 0 42 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
||||||
Play#0 output Play#0 1 22 2 2 2 21 95 121 0 270 2 2 0 0 "" 22 0 0 0 "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
Play#0 output Play#0 1 22 2 2 2 21 97 124 0 270 2 2 0 0 "" 22 0 0 0 "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
||||||
Play#0 output Play#0 1 23 2 8 0 21 100 127 0 270 8 0 0 0 "" 23 0 0 0 "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
Play#0 output Play#0 1 23 2 8 0 21 100 127 0 270 8 0 0 0 "" 23 0 0 0 "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
||||||
Play#0 output Play#0 1 32 2 2 2 7 90 114 0 40 0 0 0 0 "" -1 0 0 0 "" 0 9 0 0 0 0 0 0 0 0 89 89 0 0 0 0 -1 0
|
Play#0 output Play#0 1 32 2 2 2 7 94 120 0 40 0 0 0 0 "" -1 0 0 0 "" 0 10 0 0 0 0 0 0 0 0 94 94 0 0 0 0 -1 0
|
||||||
Play#0 output Play#0 1 33 2 2 2 21 95 121 0 270 2 2 0 0 "" -1 0 0 0 "" 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
|
Play#0 output Play#0 1 33 2 2 2 21 97 123 0 270 2 2 0 0 "" -1 0 0 0 "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
|
||||||
Play#0 output Play#0 1 /10
|
Play#0 output Play#0 1 /10
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input xdump nuke *
|
Play#0 input xdump nuke *
|
||||||
|
@ -458,7 +457,7 @@
|
||||||
Play#0 input xdump news *
|
Play#0 input xdump news *
|
||||||
Play#0 command xdump
|
Play#0 command xdump
|
||||||
Play#0 output Play#0 1 XDUMP news 0
|
Play#0 output Play#0 1 XDUMP news 0
|
||||||
Play#0 output Play#0 1 1 10 0 3 0 0
|
Play#0 output Play#0 1 1 10 0 2 0 0
|
||||||
Play#0 output Play#0 1 1 10 1 4 0 0
|
Play#0 output Play#0 1 1 10 1 4 0 0
|
||||||
Play#0 output Play#0 1 1 10 2 6 0 0
|
Play#0 output Play#0 1 1 10 2 6 0 0
|
||||||
Play#0 output Play#0 1 1 11 1 1 0 0
|
Play#0 output Play#0 1 1 11 1 1 0 0
|
||||||
|
@ -587,25 +586,25 @@
|
||||||
Play#1 output Play#1 6 0 623
|
Play#1 output Play#1 6 0 623
|
||||||
Play#1 input fire sh 3 13
|
Play#1 input fire sh 3 13
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.71)
|
Play#1 output Play#1 1 range is 4.00 (3.71)
|
||||||
Play#1 output Play#1 1 Target out of range.
|
Play#1 output Play#1 1 Target out of range.
|
||||||
Play#1 output Play#1 6 0 622
|
Play#1 output Play#1 6 0 622
|
||||||
Play#1 input fire sh 3 12
|
Play#1 input fire sh 3 12
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.71)
|
Play#1 output Play#1 1 range is 4.00 (3.71)
|
||||||
Play#1 output Play#1 1 Target out of range.
|
Play#1 output Play#1 1 Target out of range.
|
||||||
Play#1 output Play#1 6 0 621
|
Play#1 output Play#1 6 0 621
|
||||||
Play#1 input fire sh 3 6,0
|
Play#1 input fire sh 3 6,0
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.71)
|
Play#1 output Play#1 1 range is 3.00 (3.71)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 6,0 for 92 damage.
|
Play#1 output Play#1 1 Shells hit sector 6,0 for 87 damage.
|
||||||
Play#1 output Play#1 6 0 620
|
Play#1 output Play#1 6 0 620
|
||||||
Play#1 input fire sh 3 2,-2
|
Play#1 input fire sh 3 2,-2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.71)
|
Play#1 output Play#1 1 range is 4.00 (3.71)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 2,-2 for 91 damage.
|
Play#1 output Play#1 1 Shells hit sector 2,-2 for 87 damage.
|
||||||
Play#1 output Play#1 6 0 619
|
Play#1 output Play#1 6 0 619
|
||||||
Play#1 input unload g 3 -1
|
Play#1 input unload g 3 -1
|
||||||
Play#1 command unload
|
Play#1 command unload
|
||||||
|
@ -616,7 +615,7 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.71)
|
Play#1 output Play#1 1 range is 4.00 (3.71)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 13 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 14 damage.
|
||||||
Play#1 output Play#1 6 0 617
|
Play#1 output Play#1 6 0 617
|
||||||
Play#1 input load g 3 1
|
Play#1 input load g 3 1
|
||||||
Play#1 command load
|
Play#1 command load
|
||||||
|
@ -627,7 +626,7 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.71)
|
Play#1 output Play#1 1 range is 4.00 (3.71)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 28 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 25 damage.
|
||||||
Play#1 output Play#1 6 0 615
|
Play#1 output Play#1 6 0 615
|
||||||
Play#1 input load g 3 1
|
Play#1 input load g 3 1
|
||||||
Play#1 command load
|
Play#1 command load
|
||||||
|
@ -638,7 +637,7 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.71)
|
Play#1 output Play#1 1 range is 4.00 (3.71)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 31 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 32 damage.
|
||||||
Play#1 output Play#1 6 0 613
|
Play#1 output Play#1 6 0 613
|
||||||
Play#1 input load g 3 7
|
Play#1 input load g 3 7
|
||||||
Play#1 command load
|
Play#1 command load
|
||||||
|
@ -660,7 +659,7 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.71)
|
Play#1 output Play#1 1 range is 4.00 (3.71)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 22 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 21 damage.
|
||||||
Play#1 output Play#1 6 0 609
|
Play#1 output Play#1 6 0 609
|
||||||
Play#1 input navi 3 gh
|
Play#1 input navi 3 gh
|
||||||
Play#1 command navigate
|
Play#1 command navigate
|
||||||
|
@ -681,9 +680,9 @@
|
||||||
Play#1 output Play#1 6 0 606
|
Play#1 output Play#1 6 0 606
|
||||||
Play#1 input fire sh 3 0,2
|
Play#1 input fire sh 3 0,2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.71)
|
Play#1 output Play#1 1 range is 3.00 (3.71)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 52 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 50 damage.
|
||||||
Play#1 output Play#1 6 0 605
|
Play#1 output Play#1 6 0 605
|
||||||
Play#1 input navi 3 gh
|
Play#1 input navi 3 gh
|
||||||
Play#1 command navigate
|
Play#1 command navigate
|
||||||
|
@ -703,9 +702,9 @@
|
||||||
Play#1 output Play#1 6 0 602
|
Play#1 output Play#1 6 0 602
|
||||||
Play#1 input fire sh 3 0,2
|
Play#1 input fire sh 3 0,2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.71)
|
Play#1 output Play#1 1 range is 4.00 (3.71)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 10 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 12 damage.
|
||||||
Play#1 output Play#1 6 0 601
|
Play#1 output Play#1 6 0 601
|
||||||
Play#1 input load m 3 1
|
Play#1 input load m 3 1
|
||||||
Play#1 command load
|
Play#1 command load
|
||||||
|
@ -714,7 +713,7 @@
|
||||||
Play#1 output Play#1 6 0 600
|
Play#1 output Play#1 6 0 600
|
||||||
Play#1 input fire sh 3 0,2
|
Play#1 input fire sh 3 0,2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.71)
|
Play#1 output Play#1 1 range is 3.00 (3.71)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 12 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 12 damage.
|
||||||
Play#1 output Play#1 6 0 599
|
Play#1 output Play#1 6 0 599
|
||||||
|
@ -727,7 +726,7 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.71)
|
Play#1 output Play#1 1 range is 4.00 (3.71)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 24 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 23 damage.
|
||||||
Play#1 output Play#1 6 0 597
|
Play#1 output Play#1 6 0 597
|
||||||
Play#1 input load m 3 10
|
Play#1 input load m 3 10
|
||||||
Play#1 command load
|
Play#1 command load
|
||||||
|
@ -738,38 +737,38 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.71)
|
Play#1 output Play#1 1 range is 4.00 (3.71)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 48 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 49 damage.
|
||||||
Play#1 output Play#1 6 0 595
|
Play#1 output Play#1 6 0 595
|
||||||
Play#1 input fire sh 3 0,2
|
Play#1 input fire sh 3 0,2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.71)
|
Play#1 output Play#1 1 range is 4.00 (3.71)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 94 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 88 damage.
|
||||||
Play#1 output Play#1 6 0 594
|
Play#1 output Play#1 6 0 594
|
||||||
Play#1 input fire sh 5 13
|
Play#1 input fire sh 5 13
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 2.00 (1.50)
|
Play#1 output Play#1 1 range is 2.00 (1.50)
|
||||||
Play#1 output Play#1 1 \007Kawhomp!!!
|
Play#1 output Play#1 1 \007Kawhomp!!!
|
||||||
Play#1 output Play#1 1 Shells hit sub in 6,0 for 40 damage.
|
Play#1 output Play#1 1 Shells hit sub in 6,0 for 35 damage.
|
||||||
Play#1 output Play#1 6 0 593
|
Play#1 output Play#1 6 0 593
|
||||||
Play#1 input fire sh 6 12
|
Play#1 input fire sh 6 12
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 1.00 (1.50)
|
Play#1 output Play#1 1 range is 2.00 (1.50)
|
||||||
Play#1 output Play#1 1 \007Kawhomp!!!
|
Play#1 output Play#1 1 \007Kawhomp!!!
|
||||||
Play#1 output Play#1 1 Shells hit sub in 2,2 for 37 damage.
|
Play#1 output Play#1 1 Shells hit sub in 2,2 for 40 damage.
|
||||||
Play#1 output Play#1 6 0 592
|
Play#1 output Play#1 6 0 592
|
||||||
Play#1 input fire sh 5 11
|
Play#1 input fire sh 5 11
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 1.00 (1.50)
|
Play#1 output Play#1 1 range is 2.00 (1.50)
|
||||||
Play#1 output Play#1 1 \007Kawhomp!!!
|
Play#1 output Play#1 1 \007Kawhomp!!!
|
||||||
Play#1 output Play#1 1 Shells hit sub in 6,0 for 37 damage.
|
Play#1 output Play#1 1 Shells hit sub in 6,0 for 37 damage.
|
||||||
Play#1 output Play#1 1 sub sunk!
|
Play#1 output Play#1 1 sub sunk!
|
||||||
Play#1 output Play#1 6 0 591
|
Play#1 output Play#1 6 0 591
|
||||||
Play#1 input fire sh 6 10
|
Play#1 input fire sh 6 10
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 1.00 (1.50)
|
Play#1 output Play#1 1 range is 2.00 (1.50)
|
||||||
Play#1 output Play#1 1 \007Kawhomp!!!
|
Play#1 output Play#1 1 \007Kawhomp!!!
|
||||||
Play#1 output Play#1 1 Shells hit sub in 2,2 for 40 damage.
|
Play#1 output Play#1 1 Shells hit sub in 2,2 for 34 damage.
|
||||||
Play#1 output Play#1 1 sub sunk!
|
Play#1 output Play#1 1 sub sunk!
|
||||||
Play#1 output Play#1 6 0 590
|
Play#1 output Play#1 6 0 590
|
||||||
Play#1 input navi 5 jh
|
Play#1 input navi 5 jh
|
||||||
|
@ -785,32 +784,31 @@
|
||||||
Play#1 output Play#1 6 0 588
|
Play#1 output Play#1 6 0 588
|
||||||
Play#1 input fire sh 5 24
|
Play#1 input fire sh 5 24
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 1.00 (1.50)
|
Play#1 output Play#1 1 range is 2.00 (1.50)
|
||||||
Play#1 output Play#1 1 Target out of range.
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
|
Play#1 output Play#1 1 Shells hit cs cargo ship (#24) in 6,0 for 43 damage.
|
||||||
Play#1 output Play#1 6 0 587
|
Play#1 output Play#1 6 0 587
|
||||||
Play#1 input fire sh 5 24
|
Play#1 input fire sh 5 24
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 2.00 (1.50)
|
Play#1 output Play#1 1 range is 1.00 (1.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 Target out of range.
|
||||||
Play#1 output Play#1 1 Shells hit cs cargo ship (#24) in 6,0 for 34 damage.
|
|
||||||
Play#1 output Play#1 6 0 586
|
Play#1 output Play#1 6 0 586
|
||||||
Play#1 input fire sh 5 24
|
Play#1 input fire sh 5 24
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 2.00 (1.50)
|
Play#1 output Play#1 1 range is 2.00 (1.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit cs cargo ship (#24) in 6,0 for 39 damage.
|
Play#1 output Play#1 1 Shells hit cs cargo ship (#24) in 6,0 for 35 damage.
|
||||||
Play#1 output Play#1 6 0 585
|
Play#1 output Play#1 6 0 585
|
||||||
Play#1 input fire sh 5 24
|
Play#1 input fire sh 5 24
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 2.00 (1.50)
|
Play#1 output Play#1 1 range is 1.00 (1.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 Target out of range.
|
||||||
Play#1 output Play#1 1 Shells hit cs cargo ship (#24) in 6,0 for 37 damage.
|
|
||||||
Play#1 output Play#1 6 0 584
|
Play#1 output Play#1 6 0 584
|
||||||
Play#1 input fire sh 5 24
|
Play#1 input fire sh 5 24
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 2.00 (1.50)
|
Play#1 output Play#1 1 range is 2.00 (1.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit cs cargo ship (#24) in 6,0 for 40 damage.
|
Play#1 output Play#1 1 Shells hit cs cargo ship (#24) in 6,0 for 38 damage.
|
||||||
Play#1 output Play#1 6 0 583
|
Play#1 output Play#1 6 0 583
|
||||||
Play#1 input carg * ?shell>0
|
Play#1 input carg * ?shell>0
|
||||||
Play#1 command cargo
|
Play#1 command cargo
|
||||||
|
@ -845,17 +843,17 @@
|
||||||
Play#0 command xdump
|
Play#0 command xdump
|
||||||
Play#0 output Play#0 1 XDUMP sect 0
|
Play#0 output Play#0 1 XDUMP sect 0
|
||||||
Play#0 output Play#0 1 1 0 0 19 5 127 0 0 0 0 0 0 0 2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 15 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 0 0 19 5 127 0 0 0 0 0 0 0 2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 15 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 2 0 19 100 119 0 0 0 0 0 0 0 2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 75 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 2 0 19 100 120 0 0 0 0 0 0 0 2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 75 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 4 0 19 100 127 0 0 0 0 0 0 0 4 0 0 0 0 1 19 0 0 0 0 0 1 100 5 82 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 4 0 19 100 127 0 0 0 0 0 0 0 4 0 0 0 0 1 19 0 0 0 0 0 1 100 5 82 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 -4 0 24 100 127 0 0 0 0 0 0 0 -4 0 0 0 0 1 24 0 0 0 0 0 1 100 5 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 -4 0 24 100 127 0 0 0 0 0 0 0 -4 0 0 0 0 1 24 0 0 0 0 0 1 100 5 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 -2 0 19 4 127 0 0 0 0 0 0 0 -2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 -2 0 19 4 127 0 0 0 0 0 0 0 -2 0 0 0 0 0 19 0 0 0 0 0 1 100 5 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 1 1 24 100 121 0 0 0 0 0 0 0 1 1 0 0 0 0 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 1 1 24 100 122 0 0 0 0 0 0 0 1 1 0 0 0 0 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 3 1 12 100 0 0 0 0 0 0 0 0 3 1 0 0 0 1 12 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 3 1 12 100 0 0 0 0 0 0 0 0 3 1 0 0 0 1 12 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 -3 1 24 100 127 0 0 0 0 0 0 0 -3 1 0 0 0 1 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 -3 1 24 100 127 0 0 0 0 0 0 0 -3 1 0 0 0 1 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 -1 1 24 100 127 0 0 0 0 0 0 0 -1 1 0 0 0 0 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 -1 1 24 100 127 0 0 0 0 0 0 0 -1 1 0 0 0 0 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 2 0 2 24 6 9 0 0 0 0 0 0 0 0 2 7 0 0 1 24 0 0 0 0 0 2 7 0 0 0 0 0 0 0 0 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 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 8 7
|
Play#0 output Play#0 1 2 0 2 24 7 8 0 0 0 0 0 0 0 0 2 7 0 0 1 24 0 0 0 0 0 2 6 0 0 0 0 0 0 0 0 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 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 8 7
|
||||||
Play#0 output Play#0 1 2 2 2 12 75 0 0 0 0 0 0 0 0 2 2 76 0 0 1 12 0 0 0 0 0 2 75 0 0 0 0 0 0 0 0 0 76 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 76 76 75
|
Play#0 output Play#0 1 2 2 2 12 87 0 0 0 0 0 0 0 0 2 2 86 0 0 1 12 0 0 0 0 0 2 87 0 0 0 0 0 0 0 0 0 86 86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86 86 86
|
||||||
Play#0 output Play#0 1 2 4 2 28 98 125 0 0 0 0 0 0 0 4 2 98 0 0 1 28 0 0 0 0 0 2 98 0 0 0 0 0 0 0 0 0 98 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 98 98 98
|
Play#0 output Play#0 1 2 4 2 28 98 124 0 0 0 0 0 0 0 4 2 98 0 0 1 28 0 0 0 0 0 2 98 0 0 0 0 0 0 0 0 0 98 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 98 98 98
|
||||||
Play#0 output Play#0 1 2 -2 2 24 100 127 0 0 0 0 0 0 0 -2 2 100 0 0 1 24 0 0 0 0 0 2 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100
|
Play#0 output Play#0 1 2 -2 2 24 100 127 0 0 0 0 0 0 0 -2 2 100 0 0 1 24 0 0 0 0 0 2 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100
|
||||||
Play#0 output Play#0 1 1 0 -2 24 100 127 0 0 0 0 0 0 0 0 -2 0 0 0 1 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 0 -2 24 100 127 0 0 0 0 0 0 0 0 -2 0 0 0 1 24 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
Play#0 output Play#0 1 1 2 -2 2 100 127 0 0 0 0 0 0 0 2 -2 0 0 0 1 2 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
Play#0 output Play#0 1 1 2 -2 2 100 127 0 0 0 0 0 0 0 2 -2 0 0 0 1 2 0 0 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||||
|
@ -876,22 +874,22 @@
|
||||||
Play#0 output Play#0 1 5 1 10 0 17 100 117 0 100 0 0 0 0 "" 0 0 0 0 0 0 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 24 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
Play#0 output Play#0 1 5 1 10 0 17 100 117 0 100 0 0 0 0 "" 0 0 0 0 0 0 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 24 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
||||||
Play#0 output Play#0 1 6 1 3 3 17 100 127 0 100 0 0 0 0 "" 0 0 0 0 0 0 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 36 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
Play#0 output Play#0 1 6 1 3 3 17 100 127 0 100 0 0 0 0 "" 0 0 0 0 0 0 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 36 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
||||||
Play#0 output Play#0 1 9 1 3 1 2 100 127 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
Play#0 output Play#0 1 9 1 3 1 2 100 127 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
||||||
Play#0 output Play#0 1 12 2 3 3 18 71 66 0 60 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
Play#0 output Play#0 1 12 2 3 3 18 68 62 0 60 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
||||||
Play#0 output Play#0 1 13 2 8 0 18 68 61 0 60 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
Play#0 output Play#0 1 13 2 8 0 18 72 67 0 60 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
||||||
Play#0 output Play#0 1 22 2 2 2 2 60 77 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 60 60 0 0 0 0 0 0 "" 0 "" 0 0 0 80 "n"
|
Play#0 output Play#0 1 22 2 2 2 2 58 74 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 59 58 0 0 0 0 0 0 "" 0 "" 0 0 0 80 "n"
|
||||||
Play#0 output Play#0 1 23 2 8 0 2 65 74 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 66 66 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
Play#0 output Play#0 1 23 2 8 0 2 78 88 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 78 78 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
||||||
Play#0 output Play#0 1 24 2 6 0 2 24 30 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 23 23 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
Play#0 output Play#0 1 24 2 6 0 2 32 40 0 20 0 0 0 0 "" 0 0 0 0 0 0 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 0 0 0 0 0 0 0 32 32 0 0 0 0 0 0 "" 0 "" 0 0 0 0 ""
|
||||||
Play#0 output Play#0 1 /12
|
Play#0 output Play#0 1 /12
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input xdump plane *
|
Play#0 input xdump plane *
|
||||||
Play#0 command xdump
|
Play#0 command xdump
|
||||||
Play#0 output Play#0 1 XDUMP plane 0
|
Play#0 output Play#0 1 XDUMP plane 0
|
||||||
Play#0 output Play#0 1 0 2 2 2 27 99 126 0 180 0 0 0 0 "" 2 0 -1 -1 0 0 0.00000
|
Play#0 output Play#0 1 0 2 2 2 27 100 127 0 180 0 0 0 0 "" 2 0 -1 -1 0 0 0.00000
|
||||||
Play#0 output Play#0 1 1 2 2 2 12 99 126 0 150 0 0 0 0 "" 0 0 -1 -1 0 0 0.00000
|
Play#0 output Play#0 1 1 2 2 2 12 100 127 0 150 0 0 0 0 "" 0 0 -1 -1 0 0 0.00000
|
||||||
Play#0 output Play#0 1 22 2 2 2 27 100 127 0 180 0 0 0 0 "" 2 0 22 -1 0 0 0.00000
|
Play#0 output Play#0 1 22 2 2 2 27 100 127 0 180 0 0 0 0 "" 2 0 22 -1 0 0 0.00000
|
||||||
Play#0 output Play#0 1 23 2 8 0 27 100 127 0 180 0 0 0 0 "" 2 0 23 -1 0 0 0.00000
|
Play#0 output Play#0 1 23 2 8 0 27 100 127 0 180 0 0 0 0 "" 2 0 23 -1 0 0 0.00000
|
||||||
Play#0 output Play#0 1 32 2 2 2 27 99 126 0 180 0 0 0 0 "" 2 0 -1 32 0 0 0.00000
|
Play#0 output Play#0 1 32 2 2 2 27 100 127 0 180 0 0 0 0 "" 2 0 -1 32 0 0 0.00000
|
||||||
Play#0 output Play#0 1 33 2 2 2 27 99 126 0 180 0 0 0 0 "" 2 0 -1 33 0 0 0.00000
|
Play#0 output Play#0 1 33 2 2 2 27 100 127 0 180 0 0 0 0 "" 2 0 -1 33 0 0 0.00000
|
||||||
Play#0 output Play#0 1 /6
|
Play#0 output Play#0 1 /6
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input xdump land *
|
Play#0 input xdump land *
|
||||||
|
@ -902,10 +900,10 @@
|
||||||
Play#0 output Play#0 1 3 1 3 1 13 100 127 0 160 0 0 0 0 "" -1 0 0 0 "" 0 10 80 12 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
Play#0 output Play#0 1 3 1 3 1 13 100 127 0 160 0 0 0 0 "" -1 0 0 0 "" 0 10 80 12 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
||||||
Play#0 output Play#0 1 9 1 3 1 7 100 0 0 40 0 0 0 0 "" -1 0 0 0 "" 0 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
Play#0 output Play#0 1 9 1 3 1 7 100 0 0 40 0 0 0 0 "" -1 0 0 0 "" 0 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
||||||
Play#0 output Play#0 1 13 2 8 0 8 100 127 0 40 0 0 0 0 "" 13 0 42 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
Play#0 output Play#0 1 13 2 8 0 8 100 127 0 40 0 0 0 0 "" 13 0 42 0 "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
||||||
Play#0 output Play#0 1 22 2 2 2 21 95 121 0 270 2 2 0 0 "" 22 0 0 0 "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
Play#0 output Play#0 1 22 2 2 2 21 97 124 0 270 2 2 0 0 "" 22 0 0 0 "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
||||||
Play#0 output Play#0 1 23 2 8 0 21 100 127 0 270 8 0 0 0 "" 23 0 0 0 "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
Play#0 output Play#0 1 23 2 8 0 21 100 127 0 270 8 0 0 0 "" 23 0 0 0 "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 0
|
||||||
Play#0 output Play#0 1 32 2 2 2 7 90 114 0 40 0 0 0 0 "" -1 0 0 0 "" 0 9 0 0 0 0 0 0 0 0 89 89 0 0 0 0 -1 0
|
Play#0 output Play#0 1 32 2 2 2 7 94 120 0 40 0 0 0 0 "" -1 0 0 0 "" 0 10 0 0 0 0 0 0 0 0 94 94 0 0 0 0 -1 0
|
||||||
Play#0 output Play#0 1 33 2 2 2 21 95 121 0 270 2 2 0 0 "" -1 0 0 0 "" 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
|
Play#0 output Play#0 1 33 2 2 2 21 97 123 0 270 2 2 0 0 "" -1 0 0 0 "" 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
|
||||||
Play#0 output Play#0 1 /9
|
Play#0 output Play#0 1 /9
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input xdump nuke *
|
Play#0 input xdump nuke *
|
||||||
|
@ -918,11 +916,11 @@
|
||||||
Play#0 input xdump news *
|
Play#0 input xdump news *
|
||||||
Play#0 command xdump
|
Play#0 command xdump
|
||||||
Play#0 output Play#0 1 XDUMP news 0
|
Play#0 output Play#0 1 XDUMP news 0
|
||||||
Play#0 output Play#0 1 1 10 0 4 0 0
|
Play#0 output Play#0 1 1 10 0 3 0 0
|
||||||
Play#0 output Play#0 1 1 10 1 5 0 0
|
Play#0 output Play#0 1 1 10 1 5 0 0
|
||||||
Play#0 output Play#0 1 1 10 2 16 0 0
|
Play#0 output Play#0 1 1 10 2 16 0 0
|
||||||
Play#0 output Play#0 1 1 11 1 1 0 0
|
Play#0 output Play#0 1 1 11 1 1 0 0
|
||||||
Play#0 output Play#0 1 1 11 2 12 0 0
|
Play#0 output Play#0 1 1 11 2 11 0 0
|
||||||
Play#0 output Play#0 1 /5
|
Play#0 output Play#0 1 /5
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input edit c 1 b 640
|
Play#0 input edit c 1 b 640
|
||||||
|
@ -1061,12 +1059,12 @@
|
||||||
Play#1 output Play#1 6 0 619
|
Play#1 output Play#1 6 0 619
|
||||||
Play#1 input fire la 3 -12,0
|
Play#1 input fire la 3 -12,0
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.50)
|
Play#1 output Play#1 1 range is 4.00 (3.50)
|
||||||
Play#1 output Play#1 1 Target out of range.
|
Play#1 output Play#1 1 Target out of range.
|
||||||
Play#1 output Play#1 6 0 618
|
Play#1 output Play#1 6 0 618
|
||||||
Play#1 input fire la 3 0
|
Play#1 input fire la 3 0
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.50)
|
Play#1 output Play#1 1 range is 4.00 (3.50)
|
||||||
Play#1 output Play#1 1 Target out of range.
|
Play#1 output Play#1 1 Target out of range.
|
||||||
Play#1 output Play#1 6 0 617
|
Play#1 output Play#1 6 0 617
|
||||||
Play#1 input fire la 3 13
|
Play#1 input fire la 3 13
|
||||||
|
@ -1083,13 +1081,13 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.50)
|
Play#1 output Play#1 1 range is 3.00 (3.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 6,0 for 53 damage.
|
Play#1 output Play#1 1 Shells hit sector 6,0 for 61 damage.
|
||||||
Play#1 output Play#1 6 0 614
|
Play#1 output Play#1 6 0 614
|
||||||
Play#1 input fire la 3 2,-2
|
Play#1 input fire la 3 2,-2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.50)
|
Play#1 output Play#1 1 range is 3.00 (3.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 2,-2 for 63 damage.
|
Play#1 output Play#1 1 Shells hit sector 2,-2 for 66 damage.
|
||||||
Play#1 output Play#1 6 0 613
|
Play#1 output Play#1 6 0 613
|
||||||
Play#1 input lunload g 3 -1
|
Play#1 input lunload g 3 -1
|
||||||
Play#1 command lunload
|
Play#1 command lunload
|
||||||
|
@ -1100,7 +1098,7 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.50)
|
Play#1 output Play#1 1 range is 4.00 (3.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 7 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 9 damage.
|
||||||
Play#1 output Play#1 6 0 611
|
Play#1 output Play#1 6 0 611
|
||||||
Play#1 input lload g 3 11
|
Play#1 input lload g 3 11
|
||||||
Play#1 command lload
|
Play#1 command lload
|
||||||
|
@ -1119,9 +1117,9 @@
|
||||||
Play#1 output Play#1 6 0 608
|
Play#1 output Play#1 6 0 608
|
||||||
Play#1 input fire la 3 0,2
|
Play#1 input fire la 3 0,2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.50)
|
Play#1 output Play#1 1 range is 3.00 (3.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 14 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 15 damage.
|
||||||
Play#1 output Play#1 6 0 607
|
Play#1 output Play#1 6 0 607
|
||||||
Play#1 input march 3 jh
|
Play#1 input march 3 jh
|
||||||
Play#1 command march
|
Play#1 command march
|
||||||
|
@ -1137,13 +1135,13 @@
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.50)
|
Play#1 output Play#1 1 range is 3.00 (3.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 22 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 20 damage.
|
||||||
Play#1 output Play#1 6 0 604
|
Play#1 output Play#1 6 0 604
|
||||||
Play#1 input fire la 3 0,2
|
Play#1 input fire la 3 0,2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.50)
|
Play#1 output Play#1 1 range is 3.00 (3.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 56 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 60 damage.
|
||||||
Play#1 output Play#1 6 0 603
|
Play#1 output Play#1 6 0 603
|
||||||
Play#1 input march 3 yyyh
|
Play#1 input march 3 yyyh
|
||||||
Play#1 command march
|
Play#1 command march
|
||||||
|
@ -1152,31 +1150,30 @@
|
||||||
Play#1 output Play#1 6 0 602
|
Play#1 output Play#1 6 0 602
|
||||||
Play#1 input fire la 3 0,2
|
Play#1 input fire la 3 0,2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.50)
|
Play#1 output Play#1 1 range is 3.00 (3.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 Target out of range.
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 53 damage.
|
|
||||||
Play#1 output Play#1 6 0 601
|
Play#1 output Play#1 6 0 601
|
||||||
Play#1 input fire la 3 0,2
|
Play#1 input fire la 3 0,2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.50)
|
Play#1 output Play#1 1 range is 4.00 (3.50)
|
||||||
Play#1 output Play#1 1 Target out of range.
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 52 damage.
|
||||||
Play#1 output Play#1 6 0 600
|
Play#1 output Play#1 6 0 600
|
||||||
Play#1 input fire la 3 0,2
|
Play#1 input fire la 3 0,2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
|
Play#1 output Play#1 1 range is 3.00 (3.50)
|
||||||
|
Play#1 output Play#1 1 Target out of range.
|
||||||
|
Play#1 output Play#1 6 0 599
|
||||||
|
Play#1 input fire la 3 0,2
|
||||||
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.50)
|
Play#1 output Play#1 1 range is 4.00 (3.50)
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
Play#1 output Play#1 1 \007Kaboom!!!
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 58 damage.
|
Play#1 output Play#1 1 Shells hit sector 0,2 for 62 damage.
|
||||||
Play#1 output Play#1 6 0 599
|
Play#1 output Play#1 6 0 598
|
||||||
Play#1 input fire la 3 0,2
|
Play#1 input fire la 3 0,2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
Play#1 output Play#1 1 range is 3.00 (3.50)
|
Play#1 output Play#1 1 range is 3.00 (3.50)
|
||||||
Play#1 output Play#1 1 Target out of range.
|
Play#1 output Play#1 1 Target out of range.
|
||||||
Play#1 output Play#1 6 0 598
|
|
||||||
Play#1 input fire la 3 0,2
|
|
||||||
Play#1 command fire
|
|
||||||
Play#1 output Play#1 1 range is 4.00 (3.50)
|
|
||||||
Play#1 output Play#1 1 \007Kaboom!!!
|
|
||||||
Play#1 output Play#1 1 Shells hit sector 0,2 for 60 damage.
|
|
||||||
Play#1 output Play#1 6 0 597
|
Play#1 output Play#1 6 0 597
|
||||||
Play#1 input fire la 3 0,2
|
Play#1 input fire la 3 0,2
|
||||||
Play#1 command fire
|
Play#1 command fire
|
||||||
|
@ -1228,7 +1225,7 @@
|
||||||
Play#0 output Play#0 1 > BULLETIN from POGO, (#0) dated Thu Jan 1 00:00:00 1970
|
Play#0 output Play#0 1 > BULLETIN from POGO, (#0) dated Thu Jan 1 00:00:00 1970
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 4,2 for 0 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 4,2 for 0 damage.
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 4,2 for 3 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 4,2 for 3 damage.
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 1,3 for 27 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 1,3 for 29 damage.
|
||||||
Play#0 output Play#0 1 Crumble... SCREEEECH! Splash! Bridge falls at 1,3!
|
Play#0 output Play#0 1 Crumble... SCREEEECH! Splash! Bridge falls at 1,3!
|
||||||
Play#0 output Play#0 1 AARGH! tra train #30 tumbles to its doom!
|
Play#0 output Play#0 1 AARGH! tra train #30 tumbles to its doom!
|
||||||
Play#0 output Play#0 1 sam Sea Sparrow #30 lost!
|
Play#0 output Play#0 1 sam Sea Sparrow #30 lost!
|
||||||
|
@ -1245,23 +1242,19 @@
|
||||||
Play#0 output Play#0 1 rad radar unit #22 takes 1
|
Play#0 output Play#0 1 rad radar unit #22 takes 1
|
||||||
Play#0 output Play#0 1 tra train #32 takes 1
|
Play#0 output Play#0 1 tra train #32 takes 1
|
||||||
Play#0 output Play#0 1 rad radar unit #33 takes 1
|
Play#0 output Play#0 1 rad radar unit #33 takes 1
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 2,2 for 44 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 2,2 for 21 damage.
|
||||||
Play#0 output Play#0 1 rad radar unit #20 takes 4
|
Play#0 output Play#0 1 rad radar unit #20 takes 2
|
||||||
Play#0 output Play#0 1 rad radar unit #22 takes 4
|
Play#0 output Play#0 1 rad radar unit #22 takes 2
|
||||||
Play#0 output Play#0 1 tra train #32 takes 10
|
Play#0 output Play#0 1 tra train #32 takes 5
|
||||||
Play#0 output Play#0 1 rad radar unit #33 takes 4
|
Play#0 output Play#0 1 rad radar unit #33 takes 2
|
||||||
Play#0 output Play#0 1 sam Sea Sparrow #0 takes 1
|
|
||||||
Play#0 output Play#0 1 jhb B-52 Strato-Fortress #1 takes 1
|
|
||||||
Play#0 output Play#0 1 sam Sea Sparrow #32 takes 1
|
|
||||||
Play#0 output Play#0 1 sam Sea Sparrow #33 takes 1
|
|
||||||
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#23) in 6,0 for 0 damage.
|
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#23) in 6,0 for 0 damage.
|
||||||
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#23) in 6,0 for 3 damage.
|
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#23) in 6,0 for 2 damage.
|
||||||
Play#0 output Play#0 1 cs cargo ship (#23) takes 2
|
Play#0 output Play#0 1 cs cargo ship (#23) takes 1
|
||||||
Play#0 output Play#0 1 cs cargo ship (#23) was damaged, and retreated to 8,0
|
Play#0 output Play#0 1 cs cargo ship (#23) was damaged, and retreated to 8,0
|
||||||
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#23) in 8,0 for 40 damage.
|
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#23) in 8,0 for 26 damage.
|
||||||
Play#0 output Play#0 1 cs cargo ship (#23) takes 33
|
Play#0 output Play#0 1 cs cargo ship (#23) takes 21
|
||||||
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#21) in 6,0 for 48 damage.
|
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#21) in 6,0 for 24 damage.
|
||||||
Play#0 output Play#0 1 cs cargo ship (#21) takes 40
|
Play#0 output Play#0 1 cs cargo ship (#21) takes 20
|
||||||
Play#0 output Play#0 1 cs cargo ship (#21) sunk!
|
Play#0 output Play#0 1 cs cargo ship (#21) sunk!
|
||||||
Play#0 output Play#0 1 sam Sea Sparrow #21 lost!
|
Play#0 output Play#0 1 sam Sea Sparrow #21 lost!
|
||||||
Play#0 output Play#0 1 rad radar unit #21 lost!
|
Play#0 output Play#0 1 rad radar unit #21 lost!
|
||||||
|
@ -1270,33 +1263,33 @@
|
||||||
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#22) in 2,2 for 4 damage.
|
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#22) in 2,2 for 4 damage.
|
||||||
Play#0 output Play#0 1 cs cargo ship (#22) takes 3
|
Play#0 output Play#0 1 cs cargo ship (#22) takes 3
|
||||||
Play#0 output Play#0 1 cs cargo ship (#22) was fired upon with no one able to defend it, and retreated to 3,3
|
Play#0 output Play#0 1 cs cargo ship (#22) was fired upon with no one able to defend it, and retreated to 3,3
|
||||||
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#22) in 2,2 for 46 damage.
|
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#22) in 2,2 for 49 damage.
|
||||||
Play#0 output Play#0 1 cs cargo ship (#22) takes 38
|
Play#0 output Play#0 1 cs cargo ship (#22) takes 40
|
||||||
Play#0 output Play#0 1 cs cargo ship (#22) was fired upon with no one able to defend it, and retreated to 3,3
|
Play#0 output Play#0 1 cs cargo ship (#22) was fired upon with no one able to defend it, and retreated to 3,3
|
||||||
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#20) in 2,2 for 36 damage.
|
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#20) in 2,2 for 27 damage.
|
||||||
Play#0 output Play#0 1 cs cargo ship (#20) takes 30
|
Play#0 output Play#0 1 cs cargo ship (#20) takes 22
|
||||||
Play#0 output Play#0 1 cs cargo ship (#20) sunk!
|
Play#0 output Play#0 1 cs cargo ship (#20) sunk!
|
||||||
Play#0 output Play#0 1 sam Sea Sparrow #20 lost!
|
Play#0 output Play#0 1 sam Sea Sparrow #20 lost!
|
||||||
Play#0 output Play#0 1 rad radar unit #20 lost!
|
Play#0 output Play#0 1 rad radar unit #20 lost!
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 13 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 14 damage.
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 28 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 25 damage.
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 31 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 32 damage.
|
||||||
Play#0 output Play#0 1 1 bb battleship (#3) sighted at 5,1
|
Play#0 output Play#0 1 1 bb battleship (#3) sighted at 5,1
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 22 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 21 damage.
|
||||||
Play#0 output Play#0 1 1 bb battleship (#3) sighted at 3,1
|
Play#0 output Play#0 1 1 bb battleship (#3) sighted at 3,1
|
||||||
Play#0 output Play#0 1 1 bb battleship (#3) sighted at 5,1
|
Play#0 output Play#0 1 1 bb battleship (#3) sighted at 5,1
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 52 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 50 damage.
|
||||||
Play#0 output Play#0 1 1 bb battleship (#3) sighted at 3,1
|
Play#0 output Play#0 1 1 bb battleship (#3) sighted at 3,1
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 10 damage.
|
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 12 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 12 damage.
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 24 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 12 damage.
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 48 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 23 damage.
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 94 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 49 damage.
|
||||||
Play#0 output Play#0 1 Country #1 shelled sb submarine (#13) in 6,0 for 40 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 88 damage.
|
||||||
Play#0 output Play#0 1 sb submarine (#13) takes 32
|
Play#0 output Play#0 1 Country #1 shelled sb submarine (#13) in 6,0 for 35 damage.
|
||||||
|
Play#0 output Play#0 1 sb submarine (#13) takes 28
|
||||||
Play#0 output Play#0 1 sb submarine (#13) was damaged, and retreated to 8,0
|
Play#0 output Play#0 1 sb submarine (#13) was damaged, and retreated to 8,0
|
||||||
Play#0 output Play#0 1 Country #1 shelled sb submarine (#12) in 2,2 for 37 damage.
|
Play#0 output Play#0 1 Country #1 shelled sb submarine (#12) in 2,2 for 40 damage.
|
||||||
Play#0 output Play#0 1 sb submarine (#12) takes 29
|
Play#0 output Play#0 1 sb submarine (#12) takes 32
|
||||||
Play#0 output Play#0 1 sb submarine (#12) was depth-charged, and retreated to 3,3
|
Play#0 output Play#0 1 sb submarine (#12) was depth-charged, and retreated to 3,3
|
||||||
Play#0 output Play#0 1 Country #1 shelled sb submarine (#11) in 6,0 for 37 damage.
|
Play#0 output Play#0 1 Country #1 shelled sb submarine (#11) in 6,0 for 37 damage.
|
||||||
Play#0 output Play#0 1 sb submarine (#11) takes 29
|
Play#0 output Play#0 1 sb submarine (#11) takes 29
|
||||||
|
@ -1304,24 +1297,21 @@
|
||||||
Play#0 output Play#0 1 but it died in the attack, and so couldn't retreat!
|
Play#0 output Play#0 1 but it died in the attack, and so couldn't retreat!
|
||||||
Play#0 output Play#0 1 sb submarine (#11) sunk!
|
Play#0 output Play#0 1 sb submarine (#11) sunk!
|
||||||
Play#0 output Play#0 1 spy infiltrator #11 lost!
|
Play#0 output Play#0 1 spy infiltrator #11 lost!
|
||||||
Play#0 output Play#0 1 Country #1 shelled sb submarine (#10) in 2,2 for 40 damage.
|
Play#0 output Play#0 1 Country #1 shelled sb submarine (#10) in 2,2 for 34 damage.
|
||||||
Play#0 output Play#0 1 sb submarine (#10) takes 32
|
Play#0 output Play#0 1 sb submarine (#10) takes 27
|
||||||
Play#0 output Play#0 1 sb submarine (#10) sunk!
|
Play#0 output Play#0 1 sb submarine (#10) sunk!
|
||||||
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#24) in 6,0 for 34 damage.
|
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#24) in 6,0 for 43 damage.
|
||||||
Play#0 output Play#0 1 cs cargo ship (#24) takes 28
|
Play#0 output Play#0 1 cs cargo ship (#24) takes 35
|
||||||
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#24) in 6,0 for 39 damage.
|
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#24) in 6,0 for 35 damage.
|
||||||
Play#0 output Play#0 1 cs cargo ship (#24) takes 32
|
Play#0 output Play#0 1 cs cargo ship (#24) takes 29
|
||||||
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#24) in 6,0 for 37 damage.
|
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#24) in 6,0 for 38 damage.
|
||||||
Play#0 output Play#0 1 cs cargo ship (#24) takes 30
|
Play#0 output Play#0 1 cs cargo ship (#24) takes 31
|
||||||
Play#0 output Play#0 1 Country #1 shelled cs cargo ship (#24) in 6,0 for 40 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 9 damage.
|
||||||
Play#0 output Play#0 1 cs cargo ship (#24) takes 33
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 15 damage.
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 7 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 20 damage.
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 14 damage.
|
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 22 damage.
|
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 56 damage.
|
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 53 damage.
|
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 58 damage.
|
|
||||||
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 60 damage.
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 60 damage.
|
||||||
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 52 damage.
|
||||||
|
Play#0 output Play#0 1 Country #1 shelled sector 0,2 for 62 damage.
|
||||||
Play#0 output Play#0 6 0 640
|
Play#0 output Play#0 6 0 640
|
||||||
Play#0 input read 3
|
Play#0 input read 3
|
||||||
Play#0 command read
|
Play#0 command read
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
config sect
|
config sect
|
||||||
owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist ydist avail elev work coastal newdes min gold fert ocontent uran oldown civil milit shell gun petrol iron dust bar food oil lcm hcm uw rad c_dist m_dist s_dist g_dist p_dist i_dist d_dist b_dist f_dist o_dist l_dist h_dist u_dist r_dist c_del m_del s_del g_del p_del i_del d_del b_del f_del o_del l_del h_del u_del r_del mines pstage ptime che che_target fallout access road rail dfense
|
owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist ydist avail elev work coastal newdes min gold fert ocontent uran oldown civil milit shell gun petrol iron dust bar food oil lcm hcm uw rad c_dist m_dist s_dist g_dist p_dist i_dist d_dist b_dist f_dist o_dist l_dist h_dist u_dist r_dist c_del m_del s_del g_del p_del i_del d_del b_del f_del o_del l_del h_del u_del r_del mines pstage ptime che che_target fallout access road rail dfense
|
||||||
0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 21 83 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 healthy 0 0 0 0 0 0 0 0
|
0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 21 70 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 healthy 0 0 0 0 0 0 0 0
|
||||||
0 2 0 4 0 0 0 0 0 0 0 0 0 2 0 0 43 0 1 4 34 10 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 2 0 4 0 0 0 0 0 0 0 0 0 2 0 0 43 0 1 4 34 10 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 4 0 4 0 0 0 0 0 0 0 0 0 4 0 0 64 0 1 4 67 37 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 4 0 4 0 0 0 0 0 0 0 0 0 4 0 0 64 0 1 4 67 37 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 6 0 4 0 0 0 0 0 0 0 0 0 6 0 0 25 0 1 4 6 0 67 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 6 0 4 0 0 0 0 0 0 0 0 0 6 0 0 25 0 1 4 6 0 67 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -12,8 +12,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 18 0 0 0 0 0 0 0 0 0 0 0 18 0 0 -19 0 1 0 0 0 60 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 18 0 0 0 0 0 0 0 0 0 0 0 18 0 0 -19 0 1 0 0 0 60 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 20 0 4 0 0 0 0 0 0 0 0 0 20 0 0 7 0 1 4 0 0 100 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 20 0 4 0 0 0 0 0 0 0 0 0 20 0 0 7 0 1 4 0 0 100 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 22 0 4 0 0 0 0 0 0 0 0 0 22 0 0 75 0 0 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 22 0 4 0 0 0 0 0 0 0 0 0 22 0 0 75 0 0 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
7 24 0 5 100 127 0 0 0 0 0 0 0 24 0 1154 36 100 0 5 100 100 100 100 100 7 1000 55 0 0 0 0 0 0 0 0 0 0 819 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
7 24 0 5 100 127 0 0 0 0 0 0 0 24 0 1145 36 100 0 5 100 100 100 100 100 7 1000 55 0 0 0 0 0 0 0 0 0 0 803 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
7 26 0 5 100 127 0 0 0 0 0 0 0 26 0 1142 36 100 0 5 100 100 100 100 100 7 1000 55 0 0 0 0 0 0 0 0 0 0 799 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
7 26 0 5 100 127 0 0 0 0 0 0 0 26 0 1148 36 100 0 5 100 100 100 100 100 7 1000 55 0 0 0 0 0 0 0 0 0 0 810 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 28 0 4 0 0 0 0 0 0 0 0 0 28 0 0 50 0 1 4 45 19 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 28 0 4 0 0 0 0 0 0 0 0 0 28 0 0 50 0 1 4 45 19 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 30 0 4 0 0 0 0 0 0 0 0 0 30 0 0 28 0 1 4 11 0 61 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 30 0 4 0 0 0 0 0 0 0 0 0 30 0 0 28 0 1 4 11 0 61 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -32 0 0 0 0 0 0 0 0 0 0 0 -32 0 0 -36 0 1 0 0 0 77 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -32 0 0 0 0 0 0 0 0 0 0 0 -32 0 0 -36 0 1 0 0 0 77 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -25,7 +25,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -20 0 0 0 0 0 0 0 0 0 0 0 -20 0 0 -20 0 1 0 0 0 61 42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -20 0 0 0 0 0 0 0 0 0 0 0 -20 0 0 -20 0 1 0 0 0 61 42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -18 0 0 0 0 0 0 0 0 0 0 0 -18 0 0 -14 0 1 0 0 0 55 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -18 0 0 0 0 0 0 0 0 0 0 0 -18 0 0 -14 0 1 0 0 0 55 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -16 0 4 0 0 0 0 0 0 0 0 0 -16 0 0 50 0 1 4 45 19 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -16 0 4 0 0 0 0 0 0 0 0 0 -16 0 0 50 0 1 4 45 19 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
4 -14 0 11 100 127 0 0 0 0 0 0 0 -14 0 650 82 100 0 11 96 0 0 0 77 4 1000 0 0 0 0 0 294 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 4 0 0 0 0 0
|
4 -14 0 11 100 127 0 0 0 0 0 0 0 -14 0 650 82 100 0 11 96 0 0 0 77 4 1000 0 0 0 0 0 306 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 4 0 0 0 0 0
|
||||||
0 -12 0 4 0 0 0 0 0 0 0 0 0 -12 0 0 97 0 0 4 100 80 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -12 0 4 0 0 0 0 0 0 0 0 0 -12 0 0 97 0 0 4 100 80 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -10 0 4 0 0 0 0 0 0 0 0 0 -10 0 0 86 0 0 4 100 65 0 0 88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -10 0 4 0 0 0 0 0 0 0 0 0 -10 0 0 86 0 0 4 100 65 0 0 88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -8 0 4 0 0 0 0 0 0 0 0 0 -8 0 0 32 0 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -8 0 4 0 0 0 0 0 0 0 0 0 -8 0 0 32 0 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -56,8 +56,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -21 1 0 0 0 0 0 0 0 0 0 0 -21 1 0 -50 0 1 0 0 0 91 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -21 1 0 0 0 0 0 0 0 0 0 0 -21 1 0 -50 0 1 0 0 0 91 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -19 1 0 0 0 0 0 0 0 0 0 0 -19 1 0 -10 0 1 0 0 0 51 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -19 1 0 0 0 0 0 0 0 0 0 0 -19 1 0 -10 0 1 0 0 0 51 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -17 1 4 0 0 0 0 0 0 0 0 0 -17 1 0 39 0 1 4 28 5 37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -17 1 4 0 0 0 0 0 0 0 0 0 -17 1 0 39 0 1 4 28 5 37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
4 -15 1 5 100 127 0 0 0 0 0 0 0 -15 1 1148 36 100 0 5 100 100 100 100 100 4 1000 55 0 0 0 0 0 0 0 0 0 0 809 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
4 -15 1 5 100 127 0 0 0 0 0 0 0 -15 1 1138 36 100 0 5 100 100 100 100 100 4 1000 55 0 0 0 0 0 0 0 0 0 0 793 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
4 -13 1 5 100 127 0 0 0 0 0 0 0 -13 1 1147 36 100 0 5 100 100 100 100 100 4 1000 55 0 0 0 0 0 0 0 0 0 0 807 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
4 -13 1 5 100 127 0 0 0 0 0 0 0 -13 1 1146 36 100 0 5 100 100 100 100 100 4 1000 55 0 0 0 0 0 0 0 0 0 0 805 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -11 1 4 0 0 0 0 0 0 0 0 0 -11 1 0 93 0 0 4 100 74 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -11 1 4 0 0 0 0 0 0 0 0 0 -11 1 0 93 0 0 4 100 74 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -9 1 4 0 0 0 0 0 0 0 0 0 -9 1 0 75 0 0 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -9 1 4 0 0 0 0 0 0 0 0 0 -9 1 0 75 0 0 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -7 1 4 0 0 0 0 0 0 0 0 0 -7 1 0 10 0 1 4 0 0 100 87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -7 1 4 0 0 0 0 0 0 0 0 0 -7 1 0 10 0 1 4 0 0 100 87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -241,7 +241,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 29 7 0 0 0 0 0 0 0 0 0 0 29 7 0 -37 0 1 0 0 0 78 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 29 7 0 0 0 0 0 0 0 0 0 0 29 7 0 -37 0 1 0 0 0 78 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 31 7 4 0 0 0 0 0 0 0 0 0 31 7 0 14 0 1 4 0 0 91 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 31 7 4 0 0 0 0 0 0 0 0 0 31 7 0 14 0 1 4 0 0 91 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -31 7 4 0 0 0 0 0 0 0 0 0 -31 7 0 61 0 1 4 63 33 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -31 7 4 0 0 0 0 0 0 0 0 0 -31 7 0 61 0 1 4 63 33 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
5 -29 7 11 100 127 0 0 0 0 0 0 0 -29 7 650 93 100 0 11 100 0 0 0 100 5 1000 0 0 0 0 0 369 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 5 0 0 0 0 0
|
5 -29 7 11 100 127 0 0 0 0 0 0 0 -29 7 650 93 100 0 11 100 0 0 0 100 5 1000 0 0 0 0 0 361 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 5 0 0 0 0 0
|
||||||
0 -27 7 4 0 0 0 0 0 0 0 0 0 -27 7 0 89 0 0 4 100 69 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -27 7 4 0 0 0 0 0 0 0 0 0 -27 7 0 89 0 0 4 100 69 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -25 7 4 0 0 0 0 0 0 0 0 0 -25 7 0 79 0 0 4 91 56 0 0 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -25 7 4 0 0 0 0 0 0 0 0 0 -25 7 0 79 0 0 4 91 56 0 0 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -23 7 4 0 0 0 0 0 0 0 0 0 -23 7 0 32 0 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -23 7 4 0 0 0 0 0 0 0 0 0 -23 7 0 32 0 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -261,8 +261,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 4 8 0 0 0 0 0 0 0 0 0 0 4 8 0 -39 0 1 0 0 0 80 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 4 8 0 0 0 0 0 0 0 0 0 0 4 8 0 -39 0 1 0 0 0 80 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 6 8 0 0 0 0 0 0 0 0 0 0 6 8 0 -12 0 1 0 0 0 53 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 6 8 0 0 0 0 0 0 0 0 0 0 6 8 0 -12 0 1 0 0 0 53 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 8 8 0 0 0 0 0 0 0 0 0 0 8 8 0 -15 0 1 0 0 0 56 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 8 8 0 0 0 0 0 0 0 0 0 0 8 8 0 -15 0 1 0 0 0 56 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
2 10 8 24 1 127 0 0 0 0 0 0 0 12 8 1 10 100 1 24 0 0 100 87 0 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 10 8 24 0 127 0 0 0 0 0 0 0 12 8 0 10 100 1 24 0 0 100 87 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 12 8 13 100 101 0 0 0 0 0 0 0 12 8 40 32 100 1 13 17 0 52 7 0 2 1 0 0 0 0 916 814 0 0 519 282 184 0 0 230 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 12 8 13 100 101 0 0 0 0 0 0 0 12 8 40 32 100 1 13 17 0 52 7 0 2 1 0 0 0 0 920 820 0 0 514 276 183 0 0 230 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
0 14 8 0 0 0 0 0 0 0 0 0 0 14 8 0 -39 0 1 0 0 0 80 81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 14 8 0 0 0 0 0 0 0 0 0 0 14 8 0 -39 0 1 0 0 0 80 81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 16 8 0 0 0 0 0 0 0 0 0 0 16 8 0 -18 0 1 0 0 0 59 39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 16 8 0 0 0 0 0 0 0 0 0 0 16 8 0 -18 0 1 0 0 0 59 39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
2 18 8 5 83 127 0 0 0 0 0 0 0 12 8 35 36 100 1 5 23 1 43 0 0 2 50 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 18 8 5 83 127 0 0 0 0 0 0 0 12 8 35 36 100 1 5 23 1 43 0 0 2 50 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
|
@ -273,8 +273,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 28 8 0 0 0 0 0 0 0 0 0 0 28 8 0 -25 0 1 0 0 0 66 52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 28 8 0 0 0 0 0 0 0 0 0 0 28 8 0 -25 0 1 0 0 0 66 52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 30 8 0 0 0 0 0 0 0 0 0 0 30 8 0 -1 0 1 0 0 0 42 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 30 8 0 0 0 0 0 0 0 0 0 0 30 8 0 -1 0 1 0 0 0 42 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -32 8 0 0 0 0 0 0 0 0 0 0 -32 8 0 -36 0 1 0 0 0 77 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -32 8 0 0 0 0 0 0 0 0 0 0 -32 8 0 -36 0 1 0 0 0 77 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
5 -30 8 5 100 127 0 0 0 0 0 0 0 -30 8 1146 36 100 1 5 100 100 100 100 100 5 1000 55 0 0 0 0 0 0 0 0 0 0 805 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
5 -30 8 5 100 127 0 0 0 0 0 0 0 -30 8 1153 36 100 1 5 100 100 100 100 100 5 1000 55 0 0 0 0 0 0 0 0 0 0 818 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
5 -28 8 5 100 127 0 0 0 0 0 0 0 -28 8 1143 36 100 0 5 100 100 100 100 100 5 1000 55 0 0 0 0 0 0 0 0 0 0 801 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
5 -28 8 5 100 127 0 0 0 0 0 0 0 -28 8 1141 36 100 0 5 100 100 100 100 100 5 1000 55 0 0 0 0 0 0 0 0 0 0 798 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -26 8 4 0 0 0 0 0 0 0 0 0 -26 8 0 97 0 0 4 100 80 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -26 8 4 0 0 0 0 0 0 0 0 0 -26 8 0 97 0 0 4 100 80 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -24 8 4 0 0 0 0 0 0 0 0 0 -24 8 0 75 0 0 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -24 8 4 0 0 0 0 0 0 0 0 0 -24 8 0 75 0 0 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -22 8 4 0 0 0 0 0 0 0 0 0 -22 8 0 46 0 1 4 39 14 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -22 8 4 0 0 0 0 0 0 0 0 0 -22 8 0 46 0 1 4 39 14 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -292,13 +292,13 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 3 9 0 0 0 0 0 0 0 0 0 0 3 9 0 -16 0 1 0 0 0 57 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 3 9 0 0 0 0 0 0 0 0 0 0 3 9 0 -16 0 1 0 0 0 57 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 5 9 0 0 0 0 0 0 0 0 0 0 5 9 0 -33 0 1 0 0 0 74 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 5 9 0 0 0 0 0 0 0 0 0 0 5 9 0 -33 0 1 0 0 0 74 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 7 9 0 0 0 0 0 0 0 0 0 0 7 9 0 -28 0 1 0 0 0 69 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 7 9 0 0 0 0 0 0 0 0 0 0 7 9 0 -28 0 1 0 0 0 69 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
2 9 9 24 0 127 0 0 0 0 0 0 0 12 8 0 25 100 1 24 6 0 67 32 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 9 9 24 1 127 0 0 0 0 0 0 0 12 8 1 25 100 1 24 6 0 67 32 0 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 11 9 17 100 127 0 0 0 0 0 0 0 12 8 0 57 100 1 17 56 0 0 0 5 2 769 0 0 0 0 999 1 0 0 0 1 0 452 0 769 0 0 0 0 999 1 0 0 0 1 0 579 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 11 9 17 100 127 0 0 0 0 0 0 0 12 8 0 57 100 1 17 56 0 0 0 5 2 769 0 0 0 0 999 1 0 0 0 1 0 446 0 769 0 0 0 0 999 1 0 0 0 1 0 579 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
0 13 9 0 0 0 0 0 0 0 0 0 0 13 9 0 -19 0 1 0 0 0 60 41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 13 9 0 0 0 0 0 0 0 0 0 0 13 9 0 -19 0 1 0 0 0 60 41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
2 15 9 16 100 127 0 0 0 0 0 0 0 12 8 2 1 100 1 16 0 0 100 12 0 2 769 0 0 0 0 0 0 0 0 1 0 0 0 0 769 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 15 9 16 100 127 0 0 0 0 0 0 0 12 8 2 1 100 1 16 0 0 100 13 0 2 769 0 0 0 0 0 0 0 0 1 0 0 0 0 769 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 17 9 29 100 127 0 0 0 0 0 0 0 12 8 0 43 100 1 29 34 0 28 0 0 2 385 0 0 0 0 0 300 140 0 0 0 0 0 0 385 0 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 17 9 29 100 127 0 0 0 0 0 0 0 12 8 0 43 100 1 29 34 0 28 0 0 2 385 0 0 0 0 0 300 140 0 0 0 0 0 0 385 0 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 19 9 23 92 127 0 0 0 0 0 0 0 12 8 1 71 100 1 23 78 1 0 0 45 2 300 0 0 0 0 0 1 0 0 0 300 0 0 0 300 0 0 0 0 0 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 19 9 23 92 127 0 0 0 0 0 0 0 12 8 1 71 100 1 23 78 2 0 0 45 2 300 0 0 0 0 0 1 0 0 0 300 0 0 0 300 0 0 0 0 0 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 21 9 18 100 127 0 0 0 0 0 0 0 12 8 0 68 100 1 18 74 2 0 0 37 2 769 0 0 0 0 999 1 0 0 0 0 1 0 0 769 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 21 9 18 100 127 0 0 0 0 0 0 0 12 8 0 68 100 1 18 74 3 0 0 37 2 769 0 0 0 0 999 1 0 0 0 0 1 0 0 769 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 23 9 11 100 127 0 0 0 0 0 0 0 12 8 7 46 100 1 11 39 3 21 0 0 2 769 0 0 0 0 999 1 0 0 0 0 0 0 0 769 0 0 0 0 999 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 23 9 11 100 127 0 0 0 0 0 0 0 12 8 7 46 100 1 11 39 3 21 0 0 2 769 0 0 0 0 999 1 0 0 0 0 0 0 0 769 0 0 0 0 999 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
0 25 9 0 0 0 0 0 0 0 0 0 0 25 9 0 -41 0 1 0 0 0 82 84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 25 9 0 0 0 0 0 0 0 0 0 0 25 9 0 -41 0 1 0 0 0 82 84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 27 9 0 0 0 0 0 0 0 0 0 0 27 9 0 -59 0 1 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 27 9 0 0 0 0 0 0 0 0 0 0 27 9 0 -59 0 1 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -318,7 +318,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -9 9 0 0 0 0 0 0 0 0 0 0 -9 9 0 -13 0 1 0 0 0 54 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -9 9 0 0 0 0 0 0 0 0 0 0 -9 9 0 -13 0 1 0 0 0 54 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -7 9 0 0 0 0 0 0 0 0 0 0 -7 9 0 -33 0 1 0 0 0 74 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -7 9 0 0 0 0 0 0 0 0 0 0 -7 9 0 -33 0 1 0 0 0 74 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -5 9 4 0 0 0 0 0 0 0 0 0 -5 9 0 53 0 1 4 50 23 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -5 9 4 0 0 0 0 0 0 0 0 0 -5 9 0 53 0 1 4 50 23 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
3 -3 9 11 100 127 0 0 0 0 0 0 0 -3 9 650 93 100 0 11 100 0 0 0 100 3 1000 0 0 0 0 0 378 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 3 0 0 0 0 0
|
3 -3 9 11 100 127 0 0 0 0 0 0 0 -3 9 650 93 100 0 11 100 0 0 0 100 3 1000 0 0 0 0 0 376 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 3 0 0 0 0 0
|
||||||
0 -1 9 4 0 0 0 0 0 0 0 0 0 -1 9 0 89 0 0 4 100 69 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -1 9 4 0 0 0 0 0 0 0 0 0 -1 9 0 89 0 0 4 100 69 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 0 10 4 0 0 0 0 0 0 0 0 0 0 10 0 79 0 0 4 91 56 0 0 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 0 10 4 0 0 0 0 0 0 0 0 0 0 10 0 79 0 0 4 91 56 0 0 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 2 10 4 0 0 0 0 0 0 0 0 0 2 10 0 46 0 1 4 39 14 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 2 10 4 0 0 0 0 0 0 0 0 0 2 10 0 46 0 1 4 39 14 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -326,11 +326,11 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 6 10 0 0 0 0 0 0 0 0 0 0 6 10 0 -46 0 1 0 0 0 87 94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 6 10 0 0 0 0 0 0 0 0 0 0 6 10 0 -46 0 1 0 0 0 87 94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 8 10 0 0 0 0 0 0 0 0 0 0 8 10 0 -3 0 1 0 0 0 44 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 8 10 0 0 0 0 0 0 0 0 0 0 8 10 0 -3 0 1 0 0 0 44 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
2 10 10 11 100 127 0 0 0 0 0 0 0 12 8 3 50 100 1 11 45 0 13 0 0 2 400 0 0 0 0 0 30 0 0 150 300 0 0 0 400 0 0 0 0 0 30 0 0 150 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 10 10 11 100 127 0 0 0 0 0 0 0 12 8 3 50 100 1 11 45 0 13 0 0 2 400 0 0 0 0 0 30 0 0 150 300 0 0 0 400 0 0 0 0 0 30 0 0 150 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 12 10 11 100 127 0 0 0 0 0 0 0 12 8 2 61 100 1 11 63 14 0 0 17 2 769 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 12 10 11 100 127 0 0 0 0 0 0 0 12 8 1 61 100 1 11 63 14 0 0 17 2 769 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 14 10 11 4 127 0 0 0 0 0 0 0 12 8 3 79 100 1 11 91 56 0 0 68 2 769 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 14 10 11 3 127 0 0 0 0 0 0 0 12 8 2 79 100 1 11 91 56 0 0 68 2 769 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 16 10 10 100 127 0 0 0 0 0 0 0 12 8 0 36 100 0 10 100 0 100 100 100 2 769 0 0 0 0 1 1 0 0 0 0 0 579 0 769 0 0 0 0 1 1 0 0 0 0 0 579 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
2 16 10 10 100 127 0 0 0 0 0 0 0 12 8 0 36 100 0 10 100 0 100 100 100 2 769 0 0 0 0 1 1 0 0 0 0 0 579 0 769 0 0 0 0 1 1 0 0 0 0 0 579 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
2 18 10 10 100 127 0 0 0 0 0 0 0 12 8 0 36 100 0 10 100 0 100 100 100 2 769 0 0 0 0 1 1 0 0 0 0 0 579 0 769 0 0 0 0 1 1 0 0 0 0 0 579 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
2 18 10 10 100 127 0 0 0 0 0 0 0 12 8 0 36 100 0 10 100 0 100 100 100 2 769 0 0 0 0 1 1 0 0 0 0 0 579 0 769 0 0 0 0 1 1 0 0 0 0 0 579 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
2 20 10 24 3 127 0 0 0 0 0 0 0 12 8 1 3 100 1 24 0 0 100 100 0 2 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 20 10 24 5 127 0 0 0 0 0 0 0 12 8 3 3 100 1 24 0 0 100 100 0 2 7 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
0 22 10 0 0 0 0 0 0 0 0 0 0 22 10 0 -42 0 1 0 0 0 83 86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 22 10 0 0 0 0 0 0 0 0 0 0 22 10 0 -42 0 1 0 0 0 83 86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 24 10 0 0 0 0 0 0 0 0 0 0 24 10 0 -35 0 1 0 0 0 76 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 24 10 0 0 0 0 0 0 0 0 0 0 24 10 0 -35 0 1 0 0 0 76 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 26 10 0 0 0 0 0 0 0 0 0 0 26 10 0 -17 0 1 0 0 0 58 36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 26 10 0 0 0 0 0 0 0 0 0 0 26 10 0 -17 0 1 0 0 0 58 36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -350,17 +350,17 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -10 10 0 0 0 0 0 0 0 0 0 0 -10 10 0 -21 0 1 0 0 0 62 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -10 10 0 0 0 0 0 0 0 0 0 0 -10 10 0 -21 0 1 0 0 0 62 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -8 10 0 0 0 0 0 0 0 0 0 0 -8 10 0 -1 0 1 0 0 0 42 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -8 10 0 0 0 0 0 0 0 0 0 0 -8 10 0 -1 0 1 0 0 0 42 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -6 10 4 0 0 0 0 0 0 0 0 0 -6 10 0 43 0 1 4 34 10 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -6 10 4 0 0 0 0 0 0 0 0 0 -6 10 0 43 0 1 4 34 10 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
3 -4 10 5 100 127 0 0 0 0 0 0 0 -4 10 1150 36 100 0 5 100 100 100 100 100 3 1000 55 0 0 0 0 0 0 0 0 0 0 813 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
3 -4 10 5 100 127 0 0 0 0 0 0 0 -4 10 1146 36 100 0 5 100 100 100 100 100 3 1000 55 0 0 0 0 0 0 0 0 0 0 806 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
3 -2 10 5 100 127 0 0 0 0 0 0 0 -2 10 1147 36 100 0 5 100 100 100 100 100 3 1000 55 0 0 0 0 0 0 0 0 0 0 807 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
3 -2 10 5 100 127 0 0 0 0 0 0 0 -2 10 1148 36 100 0 5 100 100 100 100 100 3 1000 55 0 0 0 0 0 0 0 0 0 0 808 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 1 11 4 0 0 0 0 0 0 0 0 0 1 11 0 75 0 1 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 1 11 4 0 0 0 0 0 0 0 0 0 1 11 0 75 0 1 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 3 11 0 0 0 0 0 0 0 0 0 0 3 11 0 -5 0 1 0 0 0 46 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 3 11 0 0 0 0 0 0 0 0 0 0 3 11 0 -5 0 1 0 0 0 46 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 5 11 0 0 0 0 0 0 0 0 0 0 5 11 0 -12 0 1 0 0 0 53 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 5 11 0 0 0 0 0 0 0 0 0 0 5 11 0 -12 0 1 0 0 0 53 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 7 11 0 0 0 0 0 0 0 0 0 0 7 11 0 -40 0 1 0 0 0 81 83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 7 11 0 0 0 0 0 0 0 0 0 0 7 11 0 -40 0 1 0 0 0 81 83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
2 9 11 24 3 127 0 0 0 0 0 0 0 12 8 2 18 100 1 24 0 0 82 58 0 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 9 11 24 0 127 0 0 0 0 0 0 0 12 8 1 18 100 1 24 0 0 82 58 0 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 healthy 0 0 2 0 0 0 0 0
|
||||||
2 11 11 24 5 127 0 0 0 0 0 0 0 12 8 3 28 100 1 24 11 0 61 21 0 2 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 11 11 24 5 127 0 0 0 0 0 0 0 12 8 3 28 100 1 24 11 0 61 21 0 2 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 13 11 11 3 127 0 0 0 0 0 0 0 12 8 2 89 100 0 11 100 69 0 0 97 2 769 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 13 11 11 3 127 0 0 0 0 0 0 0 12 8 1 89 100 0 11 100 69 0 0 97 2 769 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 15 11 11 4 127 0 0 0 0 0 0 0 12 8 3 93 100 0 11 100 74 0 0 100 2 90 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 15 11 11 4 127 0 0 0 0 0 0 0 12 8 3 93 100 0 11 100 74 0 0 100 2 85 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 17 11 11 3 127 0 0 0 0 0 0 0 12 8 1 97 100 0 11 100 80 0 0 100 2 4 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 17 11 11 5 127 0 0 0 0 0 0 0 12 8 3 97 100 0 11 100 80 0 0 100 2 7 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 19 11 24 6 127 0 0 0 0 0 0 0 12 8 3 7 100 1 24 0 0 100 98 0 2 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 19 11 24 6 127 0 0 0 0 0 0 0 12 8 3 7 100 1 24 0 0 100 98 0 2 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
0 21 11 0 0 0 0 0 0 0 0 0 0 21 11 0 -11 0 1 0 0 0 52 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 21 11 0 0 0 0 0 0 0 0 0 0 21 11 0 -11 0 1 0 0 0 52 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 23 11 0 0 0 0 0 0 0 0 0 0 23 11 0 -21 0 1 0 0 0 62 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 23 11 0 0 0 0 0 0 0 0 0 0 23 11 0 -21 0 1 0 0 0 62 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -390,10 +390,10 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 6 12 0 0 0 0 0 0 0 0 0 0 6 12 0 -63 0 1 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 6 12 0 0 0 0 0 0 0 0 0 0 6 12 0 -63 0 1 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 8 12 0 0 0 0 0 0 0 0 0 0 8 12 0 -41 0 1 0 0 0 82 84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 8 12 0 0 0 0 0 0 0 0 0 0 8 12 0 -41 0 1 0 0 0 82 84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 10 12 0 0 0 0 0 0 0 0 0 0 10 12 0 -33 0 1 0 0 0 74 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 10 12 0 0 0 0 0 0 0 0 0 0 10 12 0 -33 0 1 0 0 0 74 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
2 12 12 11 5 127 0 0 0 0 0 0 0 12 8 3 64 100 1 11 67 37 0 0 25 2 7 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 12 12 11 3 127 0 0 0 0 0 0 0 12 8 2 64 100 1 11 67 37 0 0 25 2 5 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 14 12 11 5 127 0 0 0 0 0 0 0 12 8 3 86 100 0 11 100 65 0 0 88 2 7 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 14 12 11 5 127 0 0 0 0 0 0 0 12 8 3 86 100 0 11 100 65 0 0 88 2 7 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 16 12 11 3 127 0 0 0 0 0 0 0 12 8 2 82 100 0 11 96 60 0 0 77 2 5 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 16 12 11 3 127 0 0 0 0 0 0 0 12 8 1 82 100 0 11 96 60 0 0 77 2 4 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 18 12 11 5 127 0 0 0 0 0 0 0 12 8 3 75 100 1 11 85 51 0 0 57 2 7 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 18 12 11 6 127 0 0 0 0 0 0 0 12 8 3 75 100 1 11 85 51 0 0 57 2 8 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
0 20 12 0 0 0 0 0 0 0 0 0 0 20 12 0 -37 0 1 0 0 0 78 76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 20 12 0 0 0 0 0 0 0 0 0 0 20 12 0 -37 0 1 0 0 0 78 76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 22 12 0 0 0 0 0 0 0 0 0 0 22 12 0 -10 0 1 0 0 0 51 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 22 12 0 0 0 0 0 0 0 0 0 0 22 12 0 -10 0 1 0 0 0 51 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 24 12 0 0 0 0 0 0 0 0 0 0 24 12 0 -8 0 1 0 0 0 49 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 24 12 0 0 0 0 0 0 0 0 0 0 24 12 0 -8 0 1 0 0 0 49 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -422,10 +422,10 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 7 13 0 0 0 0 0 0 0 0 0 0 7 13 0 -6 0 1 0 0 0 47 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 7 13 0 0 0 0 0 0 0 0 0 0 7 13 0 -6 0 1 0 0 0 47 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 9 13 0 0 0 0 0 0 0 0 0 0 9 13 0 -32 0 1 0 0 0 73 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 9 13 0 0 0 0 0 0 0 0 0 0 9 13 0 -32 0 1 0 0 0 73 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 11 13 0 0 0 0 0 0 0 0 0 0 11 13 0 -4 0 1 0 0 0 45 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 11 13 0 0 0 0 0 0 0 0 0 0 11 13 0 -4 0 1 0 0 0 45 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
2 13 13 24 3 127 0 0 0 0 0 0 0 12 8 2 14 100 1 24 0 0 91 72 0 2 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 13 13 24 4 127 0 0 0 0 0 0 0 12 8 3 14 100 1 24 0 0 91 72 0 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 15 13 24 4 127 0 0 0 0 0 0 0 12 8 3 39 100 1 24 28 5 37 0 0 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 15 13 24 4 127 0 0 0 0 0 0 0 12 8 2 39 100 1 24 28 5 37 0 0 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 17 13 24 3 127 0 0 0 0 0 0 0 12 8 1 21 100 1 24 0 0 76 47 0 2 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 17 13 24 4 127 0 0 0 0 0 0 0 12 8 2 21 100 1 24 0 0 76 47 0 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
2 19 13 11 4 127 0 0 0 0 0 0 0 12 8 3 53 100 1 11 50 23 6 0 0 2 6 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
2 19 13 11 3 127 0 0 0 0 0 0 0 12 8 2 53 100 1 11 50 23 6 0 0 2 5 0 0 0 0 0 1 0 0 0 0 0 0 0 769 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 2 0 0 0 0 0
|
||||||
0 21 13 0 0 0 0 0 0 0 0 0 0 21 13 0 -28 0 1 0 0 0 69 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 21 13 0 0 0 0 0 0 0 0 0 0 21 13 0 -28 0 1 0 0 0 69 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 23 13 4 0 0 0 0 0 0 0 0 0 23 13 0 36 0 1 4 23 1 43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 23 13 4 0 0 0 0 0 0 0 0 0 23 13 0 36 0 1 4 23 1 43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 25 13 4 0 0 0 0 0 0 0 0 0 25 13 0 44 0 1 4 36 11 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 25 13 4 0 0 0 0 0 0 0 0 0 25 13 0 44 0 1 4 36 11 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -547,15 +547,15 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
1 1 -15 18 100 127 0 0 0 0 0 0 0 11 -11 0 25 100 1 18 6 0 67 1 0 1 1000 0 0 0 0 999 0 0 0 1 0 1 0 0 0 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 1 -15 18 100 127 0 0 0 0 0 0 0 11 -11 0 25 100 1 18 6 0 67 1 0 1 1000 0 0 0 0 999 0 0 0 1 0 1 0 0 0 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 3 -15 17 100 127 0 0 0 0 0 0 0 11 -11 0 28 100 1 17 11 0 61 0 0 1 1000 0 0 0 0 999 0 0 0 1 1 0 0 0 0 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 3 -15 17 100 127 0 0 0 0 0 0 0 11 -11 0 28 100 1 17 11 0 61 0 0 1 1000 0 0 0 0 999 0 0 0 1 1 0 0 0 0 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 5 -15 5 100 127 0 0 0 0 0 0 0 11 -11 649 39 100 1 5 28 5 37 0 0 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 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 5 -15 5 100 127 0 0 0 0 0 0 0 11 -11 649 39 100 1 5 28 5 37 0 0 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 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 7 -15 30 100 127 0 0 0 0 0 0 0 11 -11 594 21 100 1 30 0 0 76 25 0 1 1000 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 7 -15 30 100 127 0 0 0 0 0 0 0 11 -11 593 21 100 1 30 0 0 76 25 0 1 1000 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 9 -15 20 100 127 0 0 0 0 0 0 0 11 -11 410 46 100 1 20 39 14 21 0 0 1 1000 0 0 0 0 0 15 0 0 75 150 0 0 0 0 0 0 0 0 0 15 0 0 75 150 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 9 -15 20 100 127 0 9 0 0 0 0 0 11 -11 410 46 100 1 20 39 14 21 0 0 1 1000 0 0 0 0 0 15 0 0 75 150 0 0 0 0 0 0 0 0 0 15 0 0 75 150 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 11 -15 23 100 127 0 0 0 0 0 0 0 11 -11 199 14 100 1 23 0 0 91 72 0 1 999 0 0 0 0 0 0 0 0 0 450 0 0 0 0 0 0 0 0 0 0 0 0 0 450 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 11 -15 23 100 127 0 0 0 0 0 0 0 11 -11 200 14 100 1 23 0 0 91 72 0 1 1000 0 0 0 0 0 0 0 0 0 450 0 0 0 0 0 0 0 0 0 0 0 0 0 450 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
0 13 -15 0 0 0 0 0 0 0 0 0 0 13 -15 0 -1 0 1 0 0 0 42 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 13 -15 0 0 0 0 0 0 0 0 0 0 13 -15 0 -1 0 1 0 0 0 42 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 15 -15 0 0 0 0 0 0 0 0 0 0 15 -15 0 -4 0 1 0 0 0 45 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 15 -15 0 0 0 0 0 0 0 0 0 0 15 -15 0 -4 0 1 0 0 0 45 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
8 17 -15 19 100 127 0 0 0 0 0 0 0 26 -10 598 10 100 1 19 0 0 100 1 0 8 769 50 200 6 0 0 0 0 0 1 0 100 0 0 769 0 200 7 0 0 0 0 0 1 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 17 -15 19 100 127 0 26 0 0 0 0 0 26 -10 599 10 100 1 19 0 0 100 2 0 8 769 50 200 4 0 0 0 0 0 1 0 100 0 0 769 0 200 7 0 0 0 0 0 1 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 19 -15 16 100 127 0 0 0 0 0 0 0 26 -10 0 3 100 1 16 0 0 100 55 0 8 769 0 0 0 0 0 0 0 0 1 0 0 0 0 769 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 19 -15 16 100 127 0 10 0 0 0 0 0 26 -10 0 3 100 1 16 0 0 100 55 0 8 769 0 0 0 0 0 0 0 0 1 0 0 0 0 769 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
0 21 -15 0 0 0 0 0 0 0 0 0 0 21 -15 0 -46 0 1 0 0 0 87 94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 21 -15 0 0 0 0 0 0 0 0 0 0 21 -15 0 -46 0 1 0 0 0 87 94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
8 23 -15 18 100 127 0 0 0 0 0 0 0 26 -10 0 28 100 1 18 11 0 61 21 0 8 769 0 0 0 0 999 0 0 0 0 0 1 0 0 769 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 23 -15 18 100 127 0 0 0 0 0 0 0 26 -10 1 28 100 1 18 11 0 61 21 0 8 769 0 0 0 0 999 0 0 0 0 0 1 0 0 769 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
0 25 -15 0 0 0 0 0 0 0 0 0 0 25 -15 0 -44 0 1 0 0 0 85 90 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 25 -15 0 0 0 0 0 0 0 0 0 0 25 -15 0 -44 0 1 0 0 0 85 90 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 27 -15 0 0 0 0 0 0 0 0 0 0 27 -15 0 -30 0 1 0 0 0 71 63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 27 -15 0 0 0 0 0 0 0 0 0 0 27 -15 0 -30 0 1 0 0 0 71 63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 29 -15 0 0 0 0 0 0 0 0 0 0 29 -15 0 -57 0 1 0 0 0 98 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 29 -15 0 0 0 0 0 0 0 0 0 0 29 -15 0 -57 0 1 0 0 0 98 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -584,8 +584,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
1 10 -14 12 100 127 0 0 0 0 0 0 0 11 -11 628 50 100 1 12 45 19 13 0 0 1 962 5 200 10 0 1 1 0 870 1 200 200 0 0 0 0 200 10 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 10 -14 12 100 127 0 0 0 0 0 0 0 11 -11 628 50 100 1 12 45 19 13 0 0 1 962 5 200 10 0 1 1 0 870 1 200 200 0 0 0 0 200 10 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 12 -14 28 100 127 0 0 0 0 0 0 0 11 -11 110 -4 100 1 28 0 0 45 11 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 12 -14 28 100 127 0 0 0 0 0 0 0 11 -11 110 -4 100 1 28 0 0 45 11 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 14 -14 28 100 127 0 0 0 0 0 0 0 11 -11 110 -22 100 1 28 0 0 63 46 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 14 -14 28 100 127 0 0 0 0 0 0 0 11 -11 110 -22 100 1 28 0 0 63 46 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 16 -14 25 100 127 0 4 0 0 0 0 0 11 -11 646 7 100 1 25 0 0 100 98 0 1 1000 25 20 0 20 0 0 0 0 0 0 0 1 0 0 0 20 0 20 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 16 -14 25 100 127 0 0 0 0 0 0 0 11 -11 645 7 100 1 25 0 0 100 98 0 1 1000 23 20 0 20 0 0 0 0 0 0 0 1 0 0 0 20 0 20 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
8 18 -14 16 100 127 0 0 0 0 0 0 0 26 -10 1 14 100 1 16 0 0 91 6 0 8 769 0 0 0 0 0 0 0 0 77 0 0 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 18 -14 16 100 127 0 14 0 0 0 0 0 26 -10 7 14 100 1 16 0 0 91 6 0 8 769 0 0 0 0 0 0 0 0 71 0 0 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 20 -14 4 100 127 0 0 0 0 0 0 0 26 -10 649 18 100 1 4 0 0 82 58 0 8 769 0 0 0 0 0 0 0 0 0 0 0 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 20 -14 4 100 127 0 0 0 0 0 0 0 26 -10 649 18 100 1 4 0 0 82 58 0 8 769 0 0 0 0 0 0 0 0 0 0 0 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 22 -14 26 100 127 0 0 0 0 0 0 0 26 -10 649 53 100 1 26 50 0 6 0 0 8 769 0 76 0 0 0 1 0 0 0 200 200 0 0 769 0 200 10 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 22 -14 26 100 127 0 0 0 0 0 0 0 26 -10 649 53 100 1 26 50 0 6 0 0 8 769 0 76 0 0 0 1 0 0 0 200 200 0 0 769 0 200 10 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 24 -14 23 100 127 0 0 0 0 0 0 0 26 -10 249 50 100 1 23 45 0 13 0 0 8 769 0 0 0 0 0 1 0 0 0 400 0 0 0 769 0 0 0 0 0 0 0 0 0 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 24 -14 23 100 127 0 0 0 0 0 0 0 26 -10 249 50 100 1 23 45 0 13 0 0 8 769 0 0 0 0 0 1 0 0 0 400 0 0 0 769 0 0 0 0 0 0 0 0 0 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
|
@ -611,17 +611,17 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 1 -13 0 0 0 0 0 0 0 0 0 0 1 -13 0 -37 0 1 0 0 0 78 76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 1 -13 0 0 0 0 0 0 0 0 0 0 1 -13 0 -37 0 1 0 0 0 78 76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 3 -13 17 100 127 0 0 0 0 0 0 0 11 -11 51 36 100 1 17 23 1 43 0 0 1 1000 0 0 0 0 600 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 3 -13 17 100 127 0 0 0 0 0 0 0 11 -11 51 36 100 1 17 23 1 43 0 0 1 1000 0 0 0 0 600 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 5 -13 10 100 127 0 0 0 0 0 0 0 11 -11 0 36 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 healthy 0 0 0 0 0 0 0 0
|
1 5 -13 10 100 127 0 0 0 0 0 0 0 11 -11 0 36 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 healthy 0 0 0 0 0 0 0 0
|
||||||
1 7 -13 10 100 127 0 0 0 0 0 0 0 11 -11 5 36 100 0 10 100 100 100 100 100 1 1000 0 0 0 0 0 0 0 0 0 0 0 579 0 0 0 0 0 0 0 0 0 0 0 0 0 579 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
1 7 -13 10 100 127 0 0 0 0 0 0 0 11 -11 4 36 100 0 10 100 100 100 100 100 1 1000 0 0 0 0 0 0 0 0 0 0 0 579 0 0 0 0 0 0 0 0 0 0 0 0 0 579 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 9 -13 18 100 127 0 0 0 0 0 0 0 11 -11 0 32 100 1 18 17 0 52 7 0 1 1000 0 0 0 0 1200 0 0 0 0 0 1 869 0 0 0 0 0 0 1200 0 0 0 0 0 1 869 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 9 -13 18 100 127 0 0 0 0 0 0 0 11 -11 0 32 100 1 18 17 0 52 7 0 1 1000 0 0 0 0 1200 0 0 0 0 0 1 869 0 0 0 0 0 0 1200 0 0 0 0 0 1 869 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
0 11 -13 0 0 0 0 0 0 0 0 0 0 11 -13 0 -43 0 1 0 0 0 84 43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 11 -13 0 0 0 0 0 0 0 0 0 0 11 -13 0 -43 0 1 0 0 0 84 43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 13 -13 0 0 0 0 0 0 0 0 0 0 13 -13 0 -32 0 1 0 0 0 73 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 13 -13 0 0 0 0 0 0 0 0 0 0 13 -13 0 -32 0 1 0 0 0 73 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 15 -13 0 0 0 0 0 0 0 0 0 0 15 -13 0 -37 0 1 0 0 0 78 76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 15 -13 0 0 0 0 0 0 0 0 0 0 15 -13 0 -37 0 1 0 0 0 78 76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 17 -13 0 0 0 0 0 0 0 0 0 0 17 -13 0 -11 0 1 0 0 0 52 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 17 -13 0 0 0 0 0 0 0 0 0 0 17 -13 0 -11 0 1 0 0 0 52 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
8 19 -13 14 100 127 0 14 0 0 0 0 0 26 -10 649 57 100 1 14 56 0 0 0 5 8 769 0 0 0 0 0 1 0 0 0 200 200 0 0 769 0 200 0 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 19 -13 14 100 127 0 0 0 0 0 0 0 26 -10 649 57 100 1 14 56 0 0 0 5 8 769 0 0 0 0 0 1 0 0 0 200 200 0 0 769 0 200 0 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 21 -13 10 100 127 0 11 0 0 0 0 0 26 -10 0 82 100 0 10 96 0 0 0 77 8 769 0 0 0 0 1 1 0 0 0 0 0 0 0 769 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 21 -13 10 100 127 0 1 0 0 0 0 0 26 -10 0 82 100 0 10 96 0 0 0 77 8 769 0 0 0 0 1 1 0 0 0 0 0 0 0 769 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 23 -13 10 100 127 0 0 0 0 0 0 0 26 -10 0 86 100 0 10 100 0 0 0 88 8 769 0 0 0 0 1 1 0 0 0 0 0 0 0 769 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 23 -13 10 100 127 0 11 0 0 0 0 0 26 -10 0 86 100 0 10 100 0 0 0 88 8 769 0 0 0 0 1 1 0 0 0 0 0 0 0 769 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 25 -13 18 100 127 0 0 0 0 0 0 0 26 -10 1 61 100 1 18 63 33 0 0 17 8 769 0 0 0 0 999 1 0 0 0 0 1 0 0 769 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 25 -13 18 100 127 0 15 0 0 0 0 0 26 -10 1 61 100 1 18 63 33 0 0 17 8 769 0 0 0 0 999 1 0 0 0 0 1 0 0 769 0 0 0 0 999 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 27 -13 17 100 127 0 0 0 0 0 0 0 26 -10 0 21 100 1 17 0 0 76 47 0 8 769 0 0 0 0 999 0 0 0 0 1861 0 0 0 769 0 0 0 0 999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 27 -13 17 100 127 0 11 0 0 0 0 0 26 -10 0 21 100 1 17 0 0 76 47 0 8 769 0 0 0 0 999 0 0 0 0 1860 0 0 0 769 0 0 0 0 999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 29 -13 20 100 127 0 0 0 0 0 0 0 26 -10 169 39 100 1 20 28 0 37 0 0 8 769 0 0 0 0 0 30 0 0 150 300 0 0 0 769 0 0 0 0 0 30 0 0 150 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 29 -13 20 100 127 0 0 0 0 0 0 0 26 -10 169 39 100 1 20 28 0 37 0 0 8 769 0 0 0 0 0 30 0 0 150 300 0 0 0 769 0 0 0 0 0 30 0 0 150 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
0 31 -13 0 0 0 0 0 0 0 0 0 0 31 -13 0 -38 0 1 0 0 0 79 79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 31 -13 0 0 0 0 0 0 0 0 0 0 31 -13 0 -38 0 1 0 0 0 79 79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -31 -13 4 0 0 0 0 0 0 0 0 0 -31 -13 0 19 0 1 4 0 0 80 54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -31 -13 4 0 0 0 0 0 0 0 0 0 -31 -13 0 19 0 1 4 0 0 80 54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -642,20 +642,20 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -1 -13 4 0 0 0 0 0 0 0 0 0 -1 -13 0 84 0 1 4 99 63 0 0 82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -1 -13 4 0 0 0 0 0 0 0 0 0 -1 -13 0 84 0 1 4 99 63 0 0 82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 0 -12 4 0 0 0 0 0 0 0 0 0 0 -12 0 90 0 1 4 100 70 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 0 -12 4 0 0 0 0 0 0 0 0 0 0 -12 0 90 0 1 4 100 70 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 2 -12 0 0 0 0 0 0 0 0 0 0 2 -12 0 -38 0 1 0 0 0 79 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 2 -12 0 0 0 0 0 0 0 0 0 0 2 -12 0 -38 0 1 0 0 0 79 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 4 -12 18 100 127 0 0 0 0 0 0 0 11 -11 27 68 100 1 18 74 42 0 0 37 1 1000 0 0 0 0 601 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 4 -12 18 100 127 0 0 0 0 0 0 0 11 -11 29 68 100 1 18 74 42 0 0 37 1 1000 0 0 0 0 600 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 6 -12 10 100 127 0 0 0 0 0 0 0 11 -11 0 97 100 0 10 100 0 0 0 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 healthy 0 0 1 0 0 0 0 0
|
1 6 -12 10 100 127 0 0 0 0 0 0 0 11 -11 0 97 100 0 10 100 0 0 0 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 healthy 0 0 1 0 0 0 0 0
|
||||||
1 8 -12 10 100 127 0 0 0 0 0 0 0 11 -11 0 86 100 0 10 100 0 0 0 88 1 1000 0 0 0 0 0 0 0 0 0 0 0 515 0 0 0 0 0 0 0 0 0 0 0 0 0 579 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 8 -12 10 100 127 0 0 0 0 0 0 0 11 -11 0 86 100 0 10 100 0 0 0 88 1 1000 0 0 0 0 0 0 0 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 579 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 10 -12 17 100 127 0 0 0 0 0 0 0 11 -11 0 53 100 1 17 50 0 6 0 0 1 1000 0 0 0 0 1401 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 579 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 10 -12 17 100 127 0 0 0 0 0 0 0 11 -11 0 53 100 1 17 50 0 6 0 0 1 1000 0 0 0 0 1412 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 579 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 12 -12 8 100 127 0 0 0 0 0 0 0 11 -11 489 61 100 1 8 63 0 0 0 17 1 1000 0 0 1 0 0 0 0 0 20 200 100 0 0 0 0 0 1 0 0 0 0 0 20 200 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 12 -12 8 100 127 0 0 0 0 0 0 0 11 -11 490 61 100 1 8 63 0 0 0 17 1 1000 0 0 1 0 0 0 0 0 20 200 100 0 0 0 0 0 1 0 0 0 0 0 20 200 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
0 14 -12 0 0 0 0 0 0 0 0 0 0 14 -12 0 -8 0 1 0 0 0 49 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 14 -12 0 0 0 0 0 0 0 0 0 0 14 -12 0 -8 0 1 0 0 0 49 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 16 -12 0 0 0 0 0 0 0 0 0 0 16 -12 0 -44 0 1 0 0 0 85 91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 16 -12 0 0 0 0 0 0 0 0 0 0 16 -12 0 -44 0 1 0 0 0 85 91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 18 -12 0 0 0 0 0 0 0 0 0 0 18 -12 0 -21 0 1 0 0 0 62 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 18 -12 0 0 0 0 0 0 0 0 0 0 18 -12 0 -21 0 1 0 0 0 62 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
8 20 -12 17 100 127 0 28 0 0 0 0 0 26 -10 0 68 100 1 17 74 1 0 0 37 8 769 0 0 0 0 999 0 0 0 0 1 0 0 0 769 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 20 -12 17 100 127 0 6 0 0 0 0 0 26 -10 0 68 100 1 17 74 0 0 0 37 8 769 0 0 0 0 999 0 0 0 0 1 0 0 0 769 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 22 -12 10 100 127 0 0 0 0 0 0 0 26 -10 0 89 100 0 10 100 0 0 0 97 8 769 0 0 0 0 1 0 0 0 0 0 0 512 0 769 0 0 0 0 1 0 0 0 0 0 0 512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 22 -12 10 100 127 0 12 0 0 0 0 0 26 -10 0 89 100 0 10 100 0 0 0 97 8 769 0 0 0 0 1 0 0 0 0 0 0 512 0 769 0 0 0 0 1 0 0 0 0 0 0 512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 24 -12 10 100 127 0 0 0 0 0 0 0 26 -10 0 97 100 0 10 100 0 0 0 100 8 769 0 0 0 0 1 0 0 0 0 0 0 87 0 769 0 0 0 0 1 0 0 0 0 0 0 512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 24 -12 10 100 127 0 0 0 0 0 0 0 26 -10 0 97 100 0 10 100 0 0 0 100 8 769 0 0 0 0 1 0 0 0 0 0 0 47 0 769 0 0 0 0 1 0 0 0 0 0 0 512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 26 -12 10 100 127 0 11 0 0 0 0 0 26 -10 0 93 100 0 10 100 0 0 0 100 8 769 0 0 0 0 1 0 0 0 0 0 0 0 0 769 0 0 0 0 1 0 0 0 0 0 0 512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 26 -12 10 100 127 0 0 0 0 0 0 0 26 -10 0 93 100 0 10 100 0 0 0 100 8 769 0 0 0 0 1 0 0 0 0 0 0 0 0 769 0 0 0 0 1 0 0 0 0 0 0 512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 28 -12 8 100 127 0 0 0 0 0 0 0 26 -10 649 79 100 0 8 91 0 0 0 68 8 769 0 0 1 0 0 1 0 0 10 50 100 0 0 769 0 0 1 0 0 1 0 0 10 50 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 28 -12 8 100 127 0 0 0 0 0 0 0 26 -10 649 79 100 0 8 91 0 0 0 68 8 769 0 0 1 0 0 1 0 0 10 50 100 0 0 769 0 0 1 0 0 1 0 0 10 50 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 30 -12 5 100 127 0 0 0 0 0 0 0 26 -10 649 36 100 1 5 23 1 43 0 0 8 769 0 0 0 0 0 0 0 0 0 0 0 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 30 -12 5 100 127 0 6 0 0 0 0 0 26 -10 649 36 100 1 5 23 1 43 0 0 8 769 0 0 0 0 0 0 0 0 0 0 0 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
0 -32 -12 0 0 0 0 0 0 0 0 0 0 -32 -12 0 -29 0 1 0 0 0 70 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -32 -12 0 0 0 0 0 0 0 0 0 0 -32 -12 0 -29 0 1 0 0 0 70 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -30 -12 4 0 0 0 0 0 0 0 0 0 -30 -12 0 32 0 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -30 -12 4 0 0 0 0 0 0 0 0 0 -30 -12 0 32 0 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -28 -12 4 0 0 0 0 0 0 0 0 0 -28 -12 0 38 0 1 4 26 3 39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -28 -12 4 0 0 0 0 0 0 0 0 0 -28 -12 0 38 0 1 4 26 3 39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -673,21 +673,21 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -4 -12 4 0 0 0 0 0 0 0 0 0 -4 -12 0 71 0 1 4 78 46 0 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -4 -12 4 0 0 0 0 0 0 0 0 0 -4 -12 0 71 0 1 4 78 46 0 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -2 -12 4 0 0 0 0 0 0 0 0 0 -2 -12 0 97 0 0 4 100 80 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -2 -12 4 0 0 0 0 0 0 0 0 0 -2 -12 0 97 0 0 4 100 80 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 1 -11 0 0 0 0 0 0 0 0 0 0 1 -11 0 -31 0 1 0 0 0 72 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 1 -11 0 0 0 0 0 0 0 0 0 0 1 -11 0 -31 0 1 0 0 0 72 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 3 -11 9 100 127 0 0 0 0 0 0 0 11 -11 2 10 100 1 9 0 0 100 3 0 1 1000 0 1 0 0 0 0 0 0 0 600 300 0 0 0 0 1 0 0 0 0 0 0 0 600 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 3 -11 9 100 127 0 0 0 0 0 0 0 11 -11 2 10 100 1 9 0 0 100 2 0 1 1000 0 1 0 0 0 0 0 0 0 600 300 0 0 0 0 1 0 0 0 0 0 0 0 600 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 5 -11 10 100 127 0 0 0 0 0 0 0 11 -11 0 93 100 0 10 100 0 0 0 100 1 1000 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 5 -11 10 100 127 0 0 0 0 0 0 0 11 -11 0 93 100 0 10 100 0 0 0 100 1 1000 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 7 -11 14 100 127 0 0 0 0 0 0 0 11 -11 657 79 100 1 14 91 0 0 0 68 1 1000 30 180 0 200 0 0 0 0 0 200 200 0 0 0 30 180 0 200 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 7 -11 14 100 127 0 0 0 0 0 0 0 11 -11 657 79 100 1 14 91 0 0 0 68 1 1000 30 180 0 200 0 0 0 0 0 200 200 0 0 0 30 180 0 200 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 9 -11 21 100 127 0 0 0 0 0 0 0 11 -11 489 75 100 1 21 85 0 0 0 57 1 1000 0 0 0 0 0 10 0 0 50 100 0 0 0 0 0 0 0 0 0 10 0 0 50 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 9 -11 21 100 127 0 0 0 0 0 0 0 11 -11 490 75 100 1 21 85 0 0 0 57 1 1000 0 0 0 0 0 10 0 0 50 100 0 0 0 0 0 0 0 0 0 10 0 0 50 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 11 -11 13 100 127 0 15 0 0 0 0 0 11 -11 667 71 100 1 13 78 0 0 0 45 1 1000 104 177 0 1219 2080 476 0 0 729 4108 4512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 11 -11 13 100 127 0 0 0 0 0 0 0 11 -11 667 71 100 1 13 78 0 0 0 45 1 1000 105 181 0 1226 2071 473 0 0 740 4113 4521 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 13 -11 31 100 127 0 0 0 0 0 0 0 11 -11 649 64 100 1 31 67 0 0 0 25 1 967 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 13 -11 31 100 127 0 12 0 0 0 0 0 11 -11 649 64 100 1 31 67 0 0 0 25 1 967 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 15 -11 26 100 127 0 0 0 0 0 0 0 11 -11 656 57 100 1 26 56 0 0 0 5 1 1000 25 200 19 0 0 0 0 0 0 200 200 0 0 0 25 200 25 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 15 -11 26 100 127 0 0 0 0 0 0 0 11 -11 656 57 100 1 26 56 0 0 0 5 1 1000 25 200 17 0 0 0 0 0 0 200 200 0 0 0 25 200 25 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
0 17 -11 0 0 0 0 0 0 0 0 0 0 17 -11 0 -9 0 1 0 0 0 50 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 17 -11 0 0 0 0 0 0 0 0 0 0 17 -11 0 -9 0 1 0 0 0 50 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 19 -11 0 0 0 0 0 0 0 0 0 0 19 -11 0 -43 0 1 0 0 0 84 88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 19 -11 0 0 0 0 0 0 0 0 0 0 19 -11 0 -43 0 1 0 0 0 84 88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
8 21 -11 7 100 127 0 0 0 0 0 0 0 26 -10 574 75 100 1 7 85 0 0 0 57 8 769 0 0 0 0 0 1 0 0 0 75 0 0 0 769 0 0 0 0 0 0 0 0 0 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 21 -11 7 100 127 0 0 0 0 0 0 0 26 -10 574 75 100 1 7 85 0 0 0 57 8 769 0 0 0 0 0 1 0 0 0 75 0 0 0 769 0 0 0 0 0 0 0 0 0 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 23 -11 10 100 127 0 27 0 0 0 0 0 26 -10 0 36 100 0 10 100 0 100 100 100 8 769 0 0 0 0 17 0 0 0 0 0 0 512 0 769 0 0 0 0 1 0 0 0 0 0 0 512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
8 23 -11 10 100 127 0 14 0 0 0 0 0 26 -10 0 36 100 0 10 100 0 100 100 100 8 769 0 0 0 0 1 0 0 0 0 0 0 512 0 769 0 0 0 0 1 0 0 0 0 0 0 512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
8 25 -11 10 100 127 0 0 0 0 0 0 0 26 -10 0 36 100 0 10 100 0 100 100 100 8 769 55 0 0 0 3659 0 0 0 0 0 0 512 0 769 0 0 0 0 1 0 0 0 0 0 0 512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
8 25 -11 10 100 127 0 1 0 0 0 0 0 26 -10 0 36 100 0 10 100 0 100 100 100 8 769 55 0 0 0 3554 0 0 0 0 0 0 512 0 769 0 0 0 0 1 0 0 0 0 0 0 512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
8 27 -11 29 100 127 0 11 0 0 0 0 0 26 -10 349 46 100 1 29 39 3 21 0 0 8 769 0 0 0 0 0 300 424 0 0 0 0 0 0 769 0 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 27 -11 29 100 127 0 0 0 0 0 0 0 26 -10 349 46 100 1 29 39 4 21 0 0 8 769 0 0 0 0 0 300 424 0 0 0 0 0 0 769 0 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 29 -11 12 100 127 0 0 0 0 0 0 0 26 -10 649 43 100 1 12 34 0 28 0 0 8 769 0 0 0 0 0 1 0 0 0 200 200 0 0 769 0 0 0 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 29 -11 12 100 127 0 3 0 0 0 0 0 26 -10 649 43 100 1 12 34 0 28 0 0 8 769 0 0 0 0 0 1 0 0 0 200 200 0 0 769 0 0 0 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 31 -11 9 100 127 0 0 0 0 0 0 0 26 -10 332 1 100 1 9 0 0 100 100 0 8 769 0 1 0 0 0 0 0 0 0 600 300 0 0 769 0 1 0 0 0 0 0 0 0 600 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 31 -11 9 100 127 0 12 0 0 0 0 0 26 -10 341 1 100 1 9 0 0 100 100 0 8 769 0 1 0 0 0 0 0 0 0 600 300 0 0 769 0 1 0 0 0 0 0 0 0 600 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
0 -31 -11 0 0 0 0 0 0 0 0 0 0 -31 -11 0 -29 0 1 0 0 0 70 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -31 -11 0 0 0 0 0 0 0 0 0 0 -31 -11 0 -29 0 1 0 0 0 70 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -29 -11 0 0 0 0 0 0 0 0 0 0 -29 -11 0 -6 0 1 0 0 0 47 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -29 -11 0 0 0 0 0 0 0 0 0 0 -29 -11 0 -6 0 1 0 0 0 47 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -27 -11 0 0 0 0 0 0 0 0 0 0 -27 -11 0 -23 0 1 0 0 0 64 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -27 -11 0 0 0 0 0 0 0 0 0 0 -27 -11 0 -23 0 1 0 0 0 64 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -698,7 +698,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -17 -11 4 0 0 0 0 0 0 0 0 0 -17 -11 0 32 0 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -17 -11 4 0 0 0 0 0 0 0 0 0 -17 -11 0 32 0 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -15 -11 4 0 0 0 0 0 0 0 0 0 -15 -11 0 82 0 0 4 96 60 0 0 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -15 -11 4 0 0 0 0 0 0 0 0 0 -15 -11 0 82 0 0 4 96 60 0 0 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -13 -11 4 0 0 0 0 0 0 0 0 0 -13 -11 0 86 0 0 4 100 65 0 0 88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -13 -11 4 0 0 0 0 0 0 0 0 0 -13 -11 0 86 0 0 4 100 65 0 0 88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
10 -11 -11 11 100 127 0 0 0 0 0 0 0 -11 -11 650 71 100 1 11 78 0 0 0 45 10 1000 0 0 0 0 0 227 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 10 0 0 0 0 0
|
10 -11 -11 11 100 127 0 0 0 0 0 0 0 -11 -11 650 71 100 1 11 78 0 0 0 45 10 1000 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 10 0 0 0 0 0
|
||||||
0 -9 -11 0 0 0 0 0 0 0 0 0 0 -9 -11 0 -46 0 1 0 0 0 87 95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -9 -11 0 0 0 0 0 0 0 0 0 0 -9 -11 0 -46 0 1 0 0 0 87 95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -7 -11 0 0 0 0 0 0 0 0 0 0 -7 -11 0 -24 0 1 0 0 0 65 51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -7 -11 0 0 0 0 0 0 0 0 0 0 -7 -11 0 -24 0 1 0 0 0 65 51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -5 -11 4 0 0 0 0 0 0 0 0 0 -5 -11 0 13 0 1 4 0 0 93 76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -5 -11 4 0 0 0 0 0 0 0 0 0 -5 -11 0 13 0 1 4 0 0 93 76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -706,7 +706,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -1 -11 4 0 0 0 0 0 0 0 0 0 -1 -11 0 64 0 1 4 67 37 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -1 -11 4 0 0 0 0 0 0 0 0 0 -1 -11 0 64 0 1 4 67 37 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 0 -10 4 0 0 0 0 0 0 0 0 0 0 -10 0 58 0 1 4 58 29 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 0 -10 4 0 0 0 0 0 0 0 0 0 0 -10 0 58 0 1 4 58 29 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 2 -10 0 0 0 0 0 0 0 0 0 0 2 -10 0 -9 0 1 0 0 0 50 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 2 -10 0 0 0 0 0 0 0 0 0 0 2 -10 0 -9 0 1 0 0 0 50 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 4 -10 16 100 127 0 0 0 0 0 0 0 11 -11 12 1 100 1 16 0 0 100 3 0 1 1000 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 4 -10 16 100 127 0 0 0 0 0 0 0 11 -11 0 1 100 1 16 0 0 100 4 0 1 1000 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
1 6 -10 24 100 127 0 0 0 0 0 0 0 11 -11 650 3 100 1 24 0 0 100 100 0 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 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 6 -10 24 100 127 0 0 0 0 0 0 0 11 -11 650 3 100 1 24 0 0 100 100 0 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 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
0 8 -10 0 0 0 0 0 0 0 0 0 0 8 -10 0 -35 0 1 0 0 0 76 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 8 -10 0 0 0 0 0 0 0 0 0 0 8 -10 0 -35 0 1 0 0 0 76 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
1 10 -10 7 100 127 0 0 0 0 0 0 0 11 -11 575 7 100 1 7 0 0 100 98 0 1 1000 0 0 0 0 0 0 0 0 0 75 0 0 0 0 0 0 0 0 0 0 0 0 0 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
1 10 -10 7 100 127 0 0 0 0 0 0 0 11 -11 575 7 100 1 7 0 0 100 98 0 1 1000 0 0 0 0 0 0 0 0 0 75 0 0 0 0 0 0 0 0 0 0 0 0 0 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 1 0 0 0 0 0
|
||||||
|
@ -714,10 +714,10 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 14 -10 0 0 0 0 0 0 0 0 0 0 14 -10 0 -26 0 1 0 0 0 67 55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 14 -10 0 0 0 0 0 0 0 0 0 0 14 -10 0 -26 0 1 0 0 0 67 55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 16 -10 0 0 0 0 0 0 0 0 0 0 16 -10 0 -8 0 1 0 0 0 49 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 16 -10 0 0 0 0 0 0 0 0 0 0 16 -10 0 -8 0 1 0 0 0 49 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 18 -10 0 0 0 0 0 0 0 0 0 0 18 -10 0 -33 0 1 0 0 0 74 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 18 -10 0 0 0 0 0 0 0 0 0 0 18 -10 0 -33 0 1 0 0 0 74 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
8 20 -10 17 100 127 0 16 0 0 0 0 0 26 -10 0 71 100 1 17 78 0 0 0 45 8 769 0 0 0 0 999 1 0 0 0 1 0 0 0 769 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 20 -10 17 100 127 0 15 0 0 0 0 0 26 -10 0 71 100 1 17 78 0 0 0 45 8 769 0 0 0 0 999 1 0 0 0 1 0 0 0 769 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 22 -10 17 100 127 0 13 0 0 0 0 0 26 -10 0 25 100 1 17 6 0 67 32 0 8 769 0 0 0 0 999 0 0 0 0 1 0 0 0 769 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 22 -10 17 100 127 0 0 0 0 0 0 0 26 -10 0 25 100 1 17 6 0 67 32 0 8 769 0 0 0 0 999 0 0 0 0 1 0 0 0 769 0 0 0 0 999 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 24 -10 18 100 127 0 37 0 0 0 0 0 26 -10 1 64 100 1 18 67 0 0 0 25 8 769 0 0 0 0 999 1 0 0 0 0 1 0 0 769 0 0 0 0 999 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 24 -10 18 100 127 0 16 0 0 0 0 0 26 -10 1 64 100 1 18 67 0 0 0 25 8 769 0 0 0 0 999 1 0 0 0 0 1 0 0 769 0 0 0 0 999 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
8 26 -10 13 100 127 0 0 0 0 0 0 0 26 -10 650 32 100 1 13 17 0 52 7 0 8 7331 0 0 0 0 5757 1783 0 0 608 844 355 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
8 26 -10 13 100 127 0 0 0 0 0 0 0 26 -10 650 32 100 1 13 17 0 52 7 0 8 7339 0 0 0 0 5759 1789 0 0 614 850 354 0 0 769 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 8 0 0 0 0 0
|
||||||
0 28 -10 0 0 0 0 0 0 0 0 0 0 28 -10 0 -10 0 1 0 0 0 51 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 28 -10 0 0 0 0 0 0 0 0 0 0 28 -10 0 -10 0 1 0 0 0 51 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 30 -10 0 0 0 0 0 0 0 0 0 0 30 -10 0 -42 0 1 0 0 0 83 86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 30 -10 0 0 0 0 0 0 0 0 0 0 30 -10 0 -42 0 1 0 0 0 83 86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -32 -10 0 0 0 0 0 0 0 0 0 0 -32 -10 0 -37 0 1 0 0 0 78 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -32 -10 0 0 0 0 0 0 0 0 0 0 -32 -10 0 -37 0 1 0 0 0 78 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -730,8 +730,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -18 -10 0 0 0 0 0 0 0 0 0 0 -18 -10 0 -27 0 1 0 0 0 68 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -18 -10 0 0 0 0 0 0 0 0 0 0 -18 -10 0 -27 0 1 0 0 0 68 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -16 -10 4 0 0 0 0 0 0 0 0 0 -16 -10 0 39 0 1 4 28 5 37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -16 -10 4 0 0 0 0 0 0 0 0 0 -16 -10 0 39 0 1 4 28 5 37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -14 -10 4 0 0 0 0 0 0 0 0 0 -14 -10 0 79 0 0 4 91 56 0 0 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -14 -10 4 0 0 0 0 0 0 0 0 0 -14 -10 0 79 0 0 4 91 56 0 0 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
10 -12 -10 5 100 127 0 0 0 0 0 0 0 -12 -10 1145 36 100 0 5 100 100 100 100 100 10 1000 55 0 0 0 0 0 0 0 0 0 0 804 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
10 -12 -10 5 100 127 0 0 0 0 0 0 0 -12 -10 1148 36 100 0 5 100 100 100 100 100 10 1000 55 0 0 0 0 0 0 0 0 0 0 810 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
10 -10 -10 5 100 127 0 0 0 0 0 0 0 -10 -10 1144 36 100 1 5 100 100 100 100 100 10 1000 55 0 0 0 0 0 0 0 0 0 0 802 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
10 -10 -10 5 100 127 0 0 0 0 0 0 0 -10 -10 1148 36 100 1 5 100 100 100 100 100 10 1000 55 0 0 0 0 0 0 0 0 0 0 810 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -8 -10 0 0 0 0 0 0 0 0 0 0 -8 -10 0 -30 0 1 0 0 0 71 62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -8 -10 0 0 0 0 0 0 0 0 0 0 -8 -10 0 -30 0 1 0 0 0 71 62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -6 -10 0 0 0 0 0 0 0 0 0 0 -6 -10 0 -6 0 1 0 0 0 47 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -6 -10 0 0 0 0 0 0 0 0 0 0 -6 -10 0 -6 0 1 0 0 0 47 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -4 -10 0 0 0 0 0 0 0 0 0 0 -4 -10 0 -45 0 1 0 0 0 86 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -4 -10 0 0 0 0 0 0 0 0 0 0 -4 -10 0 -45 0 1 0 0 0 86 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -819,7 +819,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -31 -7 0 0 0 0 0 0 0 0 0 0 -31 -7 0 -46 0 1 0 0 0 87 95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -31 -7 0 0 0 0 0 0 0 0 0 0 -31 -7 0 -46 0 1 0 0 0 87 95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -29 -7 0 0 0 0 0 0 0 0 0 0 -29 -7 0 -15 0 1 0 0 0 56 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -29 -7 0 0 0 0 0 0 0 0 0 0 -29 -7 0 -15 0 1 0 0 0 56 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -27 -7 4 0 0 0 0 0 0 0 0 0 -27 -7 0 64 0 1 4 67 37 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -27 -7 4 0 0 0 0 0 0 0 0 0 -27 -7 0 64 0 1 4 67 37 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
9 -25 -7 11 100 127 0 0 0 0 0 0 0 -25 -7 650 39 100 1 11 28 0 37 0 0 9 1000 0 0 0 0 0 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 9 0 0 0 0 0
|
9 -25 -7 11 100 127 0 0 0 0 0 0 0 -25 -7 650 39 100 1 11 28 0 37 0 0 9 1000 0 0 0 0 0 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 9 0 0 0 0 0
|
||||||
0 -23 -7 4 0 0 0 0 0 0 0 0 0 -23 -7 0 21 0 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 healthy 0 0 0 0 0 0 0 0
|
0 -23 -7 4 0 0 0 0 0 0 0 0 0 -23 -7 0 21 0 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 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -21 -7 4 0 0 0 0 0 0 0 0 0 -21 -7 0 18 0 1 4 0 0 82 58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -21 -7 4 0 0 0 0 0 0 0 0 0 -21 -7 0 18 0 1 4 0 0 82 58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -19 -7 0 0 0 0 0 0 0 0 0 0 -19 -7 0 -36 0 1 0 0 0 77 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -19 -7 0 0 0 0 0 0 0 0 0 0 -19 -7 0 -36 0 1 0 0 0 77 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -851,8 +851,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -32 -6 0 0 0 0 0 0 0 0 0 0 -32 -6 0 -47 0 1 0 0 0 88 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -32 -6 0 0 0 0 0 0 0 0 0 0 -32 -6 0 -47 0 1 0 0 0 88 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -30 -6 0 0 0 0 0 0 0 0 0 0 -30 -6 0 -30 0 1 0 0 0 71 63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -30 -6 0 0 0 0 0 0 0 0 0 0 -30 -6 0 -30 0 1 0 0 0 71 63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -28 -6 4 0 0 0 0 0 0 0 0 0 -28 -6 0 46 0 1 4 39 14 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -28 -6 4 0 0 0 0 0 0 0 0 0 -28 -6 0 46 0 1 4 39 14 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
9 -26 -6 5 100 127 0 0 0 0 0 0 0 -26 -6 1142 36 100 0 5 100 100 100 100 100 9 1000 55 0 0 0 0 0 0 0 0 0 0 800 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
9 -26 -6 5 100 127 0 0 0 0 0 0 0 -26 -6 1141 36 100 0 5 100 100 100 100 100 9 1000 55 0 0 0 0 0 0 0 0 0 0 798 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
9 -24 -6 5 100 127 0 0 0 0 0 0 0 -24 -6 1146 36 100 0 5 100 100 100 100 100 9 1000 55 0 0 0 0 0 0 0 0 0 0 806 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
9 -24 -6 5 100 127 0 0 0 0 0 0 0 -24 -6 1146 36 100 0 5 100 100 100 100 100 9 1000 55 0 0 0 0 0 0 0 0 0 0 805 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -22 -6 4 0 0 0 0 0 0 0 0 0 -22 -6 0 93 0 0 4 100 74 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -22 -6 4 0 0 0 0 0 0 0 0 0 -22 -6 0 93 0 0 4 100 74 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -20 -6 4 0 0 0 0 0 0 0 0 0 -20 -6 0 71 0 1 4 78 46 0 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -20 -6 4 0 0 0 0 0 0 0 0 0 -20 -6 0 71 0 1 4 78 46 0 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -18 -6 0 0 0 0 0 0 0 0 0 0 -18 -6 0 -33 0 1 0 0 0 74 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -18 -6 0 0 0 0 0 0 0 0 0 0 -18 -6 0 -33 0 1 0 0 0 74 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -929,7 +929,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -4 -4 0 0 0 0 0 0 0 0 0 0 -4 -4 0 -5 0 1 0 0 0 46 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -4 -4 0 0 0 0 0 0 0 0 0 0 -4 -4 0 -5 0 1 0 0 0 46 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -2 -4 0 0 0 0 0 0 0 0 0 0 -2 -4 0 -34 0 1 0 0 0 75 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -2 -4 0 0 0 0 0 0 0 0 0 0 -2 -4 0 -34 0 1 0 0 0 75 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 1 -3 4 0 0 0 0 0 0 0 0 0 1 -3 0 82 0 0 4 96 60 0 0 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 1 -3 4 0 0 0 0 0 0 0 0 0 1 -3 0 82 0 0 4 96 60 0 0 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
6 3 -3 11 100 127 0 0 0 0 0 0 0 3 -3 650 97 100 0 11 100 0 0 0 100 6 1000 0 0 0 0 0 397 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 6 0 0 0 0 0
|
6 3 -3 11 100 127 0 0 0 0 0 0 0 3 -3 650 97 100 0 11 100 0 0 0 100 6 1000 0 0 0 0 0 404 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 6 0 0 0 0 0
|
||||||
0 5 -3 4 0 0 0 0 0 0 0 0 0 5 -3 0 89 0 0 4 100 69 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 5 -3 4 0 0 0 0 0 0 0 0 0 5 -3 0 89 0 0 4 100 69 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 7 -3 4 0 0 0 0 0 0 0 0 0 7 -3 0 32 0 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 7 -3 4 0 0 0 0 0 0 0 0 0 7 -3 0 32 0 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 9 -3 0 0 0 0 0 0 0 0 0 0 9 -3 0 -42 0 1 0 0 0 83 87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 9 -3 0 0 0 0 0 0 0 0 0 0 9 -3 0 -42 0 1 0 0 0 83 87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -961,8 +961,8 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 -3 -3 0 0 0 0 0 0 0 0 0 0 -3 -3 0 -10 0 1 0 0 0 51 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -3 -3 0 0 0 0 0 0 0 0 0 0 -3 -3 0 -10 0 1 0 0 0 51 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 -1 -3 4 0 0 0 0 0 0 0 0 0 -1 -3 0 53 0 1 4 50 23 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 -1 -3 4 0 0 0 0 0 0 0 0 0 -1 -3 0 53 0 1 4 50 23 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 0 -2 4 0 0 0 0 0 0 0 0 0 0 -2 0 75 0 0 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 0 -2 4 0 0 0 0 0 0 0 0 0 0 -2 0 75 0 0 4 85 51 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
6 2 -2 5 100 127 0 0 0 0 0 0 0 2 -2 1149 36 100 0 5 100 100 100 100 100 6 1000 55 0 0 0 0 0 0 0 0 0 0 811 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
6 2 -2 5 100 127 0 0 0 0 0 0 0 2 -2 1152 36 100 0 5 100 100 100 100 100 6 1000 55 0 0 0 0 0 0 0 0 0 0 817 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
6 4 -2 5 100 127 0 0 0 0 0 0 0 4 -2 1154 36 100 0 5 100 100 100 100 100 6 1000 55 0 0 0 0 0 0 0 0 0 0 819 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
6 4 -2 5 100 127 0 0 0 0 0 0 0 4 -2 1152 36 100 0 5 100 100 100 100 100 6 1000 55 0 0 0 0 0 0 0 0 0 0 816 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 6 -2 4 0 0 0 0 0 0 0 0 0 6 -2 0 71 0 0 4 78 46 0 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 6 -2 4 0 0 0 0 0 0 0 0 0 6 -2 0 71 0 0 4 78 46 0 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 8 -2 4 0 0 0 0 0 0 0 0 0 8 -2 0 7 0 1 4 0 0 100 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 8 -2 4 0 0 0 0 0 0 0 0 0 8 -2 0 7 0 1 4 0 0 100 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 10 -2 0 0 0 0 0 0 0 0 0 0 10 -2 0 -10 0 1 0 0 0 51 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 10 -2 0 0 0 0 0 0 0 0 0 0 10 -2 0 -10 0 1 0 0 0 51 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -1004,7 +1004,7 @@ owner xloc yloc des effic mobil off loyal terr0 terr1 terr2 terr3 dterr xdist yd
|
||||||
0 19 -1 4 0 0 0 0 0 0 0 0 0 19 -1 0 61 0 1 4 63 33 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 19 -1 4 0 0 0 0 0 0 0 0 0 19 -1 0 61 0 1 4 63 33 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 21 -1 4 0 0 0 0 0 0 0 0 0 21 -1 0 64 0 1 4 67 37 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 21 -1 4 0 0 0 0 0 0 0 0 0 21 -1 0 64 0 1 4 67 37 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 23 -1 4 0 0 0 0 0 0 0 0 0 23 -1 0 32 0 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 23 -1 4 0 0 0 0 0 0 0 0 0 23 -1 0 32 0 1 4 17 0 52 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
7 25 -1 11 100 127 0 0 0 0 0 0 0 25 -1 650 89 100 0 11 100 0 0 0 97 7 1000 0 0 0 0 0 343 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 7 0 0 0 0 0
|
7 25 -1 11 100 127 0 0 0 0 0 0 0 25 -1 650 89 100 0 11 100 0 0 0 97 7 1000 0 0 0 0 0 348 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 7 0 0 0 0 0
|
||||||
0 27 -1 4 0 0 0 0 0 0 0 0 0 27 -1 0 53 0 1 4 50 23 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 27 -1 4 0 0 0 0 0 0 0 0 0 27 -1 0 53 0 1 4 50 23 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 29 -1 0 0 0 0 0 0 0 0 0 0 29 -1 0 -15 0 1 0 0 0 56 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 29 -1 0 0 0 0 0 0 0 0 0 0 29 -1 0 -15 0 1 0 0 0 56 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
0 31 -1 0 0 0 0 0 0 0 0 0 0 31 -1 0 -45 0 1 0 0 0 86 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
0 31 -1 0 0 0 0 0 0 0 0 0 0 31 -1 0 -45 0 1 0 0 0 86 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 0 0 0 0 0 0 0
|
||||||
|
@ -1080,9 +1080,9 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius fleet xstar
|
||||||
/config
|
/config
|
||||||
config plane
|
config plane
|
||||||
uid owner xloc yloc type effic mobil off tech opx opy mission radius wing range harden ship land flags access theta
|
uid owner xloc yloc type effic mobil off tech opx opy mission radius wing range harden ship land flags access theta
|
||||||
0 1 16 -14 0 92 91 0 51 0 0 none 0 "" 4 0 -1 -1 () 0 0.00000
|
0 1 16 -14 0 90 90 0 51 0 0 none 0 "" 4 0 -1 -1 () 0 0.00000
|
||||||
1 1 16 -14 0 95 93 0 51 0 0 none 0 "" 4 0 -1 -1 () 0 0.00000
|
1 1 16 -14 0 91 91 0 51 0 0 none 0 "" 4 0 -1 -1 () 0 0.00000
|
||||||
2 1 16 -14 0 90 100 0 51 16 -14 offensive\040support 2 "" 4 0 -1 -1 () 0 0.00000
|
2 1 16 -14 0 96 103 0 51 16 -14 offensive\040support 2 "" 4 0 -1 -1 () 0 0.00000
|
||||||
3 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
3 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
||||||
4 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
4 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
||||||
5 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
5 0 0 0 0 0 0 0 0 0 0 none 0 "" 0 0 -1 -1 () 0 0.00000
|
||||||
|
@ -1138,7 +1138,7 @@ uid owner xloc yloc type effic mobil off tech opx opy mission radius army ship h
|
||||||
2 0 10 -14 0 0 4 0 31 0 0 none 0 "" -1 0 42 () "" 0 1 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
2 0 10 -14 0 0 4 0 31 0 0 none 0 "" -1 0 42 () "" 0 1 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
3 1 10 -14 0 100 127 0 31 0 0 none 0 "" -1 117 42 () "" 0 1 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
3 1 10 -14 0 100 127 0 31 0 0 none 0 "" -1 117 42 () "" 0 1 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
4 1 16 -14 0 73 127 0 31 0 0 none 0 "" -1 30 42 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
4 1 16 -14 0 73 127 0 31 0 0 none 0 "" -1 30 42 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
5 1 16 -14 11 98 119 0 37 0 0 none 0 "" -1 0 42 () "" 0 5 35 10 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
5 1 16 -14 11 98 119 0 37 0 0 none 0 "" -1 0 42 () "" 0 5 36 10 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
6 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
6 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
7 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
7 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
8 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
8 0 0 0 0 0 0 0 0 0 0 none 0 "" -1 0 0 () "" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 healthy 0 -1 0
|
||||||
|
@ -1224,16 +1224,16 @@ uid owner type unitid price maxbidder markettime xloc yloc
|
||||||
config nat
|
config nat
|
||||||
cnum stat flags cname passwd ip hostname userid xcap ycap xorg yorg update tgms ann timeused btu access milreserve money login logout newstim annotim tech research education happiness relations(0) relations(1) relations(2) relations(3) relations(4) relations(5) relations(6) relations(7) relations(8) relations(9) relations(10) relations(11) relations(12) relations(13) relations(14) relations(15) relations(16) relations(17) relations(18) relations(19) relations(20) relations(21) relations(22) relations(23) relations(24) relations(25) relations(26) relations(27) relations(28) relations(29) relations(30) relations(31) relations(32) relations(33) relations(34) relations(35) relations(36) relations(37) relations(38) relations(39) relations(40) relations(41) relations(42) relations(43) relations(44) relations(45) relations(46) relations(47) relations(48) relations(49) relations(50) relations(51) relations(52) relations(53) relations(54) relations(55) relations(56) relations(57) relations(58) relations(59) relations(60) relations(61) relations(62) relations(63) relations(64) relations(65) relations(66) relations(67) relations(68) relations(69) relations(70) relations(71) relations(72) relations(73) relations(74) relations(75) relations(76) relations(77) relations(78) relations(79) relations(80) relations(81) relations(82) relations(83) relations(84) relations(85) relations(86) relations(87) relations(88) relations(89) relations(90) relations(91) relations(92) relations(93) relations(94) relations(95) relations(96) relations(97) relations(98) contacts(0) contacts(1) contacts(2) contacts(3) contacts(4) contacts(5) contacts(6) contacts(7) contacts(8) contacts(9) contacts(10) contacts(11) contacts(12) contacts(13) contacts(14) contacts(15) contacts(16) contacts(17) contacts(18) contacts(19) contacts(20) contacts(21) contacts(22) contacts(23) contacts(24) contacts(25) contacts(26) contacts(27) contacts(28) contacts(29) contacts(30) contacts(31) contacts(32) contacts(33) contacts(34) contacts(35) contacts(36) contacts(37) contacts(38) contacts(39) contacts(40) contacts(41) contacts(42) contacts(43) contacts(44) contacts(45) contacts(46) contacts(47) contacts(48) contacts(49) contacts(50) contacts(51) contacts(52) contacts(53) contacts(54) contacts(55) contacts(56) contacts(57) contacts(58) contacts(59) contacts(60) contacts(61) contacts(62) contacts(63) contacts(64) contacts(65) contacts(66) contacts(67) contacts(68) contacts(69) contacts(70) contacts(71) contacts(72) contacts(73) contacts(74) contacts(75) contacts(76) contacts(77) contacts(78) contacts(79) contacts(80) contacts(81) contacts(82) contacts(83) contacts(84) contacts(85) contacts(86) contacts(87) contacts(88) contacts(89) contacts(90) contacts(91) contacts(92) contacts(93) contacts(94) contacts(95) contacts(96) contacts(97) contacts(98) rejects(0) rejects(1) rejects(2) rejects(3) rejects(4) rejects(5) rejects(6) rejects(7) rejects(8) rejects(9) rejects(10) rejects(11) rejects(12) rejects(13) rejects(14) rejects(15) rejects(16) rejects(17) rejects(18) rejects(19) rejects(20) rejects(21) rejects(22) rejects(23) rejects(24) rejects(25) rejects(26) rejects(27) rejects(28) rejects(29) rejects(30) rejects(31) rejects(32) rejects(33) rejects(34) rejects(35) rejects(36) rejects(37) rejects(38) rejects(39) rejects(40) rejects(41) rejects(42) rejects(43) rejects(44) rejects(45) rejects(46) rejects(47) rejects(48) rejects(49) rejects(50) rejects(51) rejects(52) rejects(53) rejects(54) rejects(55) rejects(56) rejects(57) rejects(58) rejects(59) rejects(60) rejects(61) rejects(62) rejects(63) rejects(64) rejects(65) rejects(66) rejects(67) rejects(68) rejects(69) rejects(70) rejects(71) rejects(72) rejects(73) rejects(74) rejects(75) rejects(76) rejects(77) rejects(78) rejects(79) rejects(80) rejects(81) rejects(82) rejects(83) rejects(84) rejects(85) rejects(86) rejects(87) rejects(88) rejects(89) rejects(90) rejects(91) rejects(92) rejects(93) rejects(94) rejects(95) rejects(96) rejects(97) rejects(98)
|
cnum stat flags cname passwd ip hostname userid xcap ycap xorg yorg update tgms ann timeused btu access milreserve money login logout newstim annotim tech research education happiness relations(0) relations(1) relations(2) relations(3) relations(4) relations(5) relations(6) relations(7) relations(8) relations(9) relations(10) relations(11) relations(12) relations(13) relations(14) relations(15) relations(16) relations(17) relations(18) relations(19) relations(20) relations(21) relations(22) relations(23) relations(24) relations(25) relations(26) relations(27) relations(28) relations(29) relations(30) relations(31) relations(32) relations(33) relations(34) relations(35) relations(36) relations(37) relations(38) relations(39) relations(40) relations(41) relations(42) relations(43) relations(44) relations(45) relations(46) relations(47) relations(48) relations(49) relations(50) relations(51) relations(52) relations(53) relations(54) relations(55) relations(56) relations(57) relations(58) relations(59) relations(60) relations(61) relations(62) relations(63) relations(64) relations(65) relations(66) relations(67) relations(68) relations(69) relations(70) relations(71) relations(72) relations(73) relations(74) relations(75) relations(76) relations(77) relations(78) relations(79) relations(80) relations(81) relations(82) relations(83) relations(84) relations(85) relations(86) relations(87) relations(88) relations(89) relations(90) relations(91) relations(92) relations(93) relations(94) relations(95) relations(96) relations(97) relations(98) contacts(0) contacts(1) contacts(2) contacts(3) contacts(4) contacts(5) contacts(6) contacts(7) contacts(8) contacts(9) contacts(10) contacts(11) contacts(12) contacts(13) contacts(14) contacts(15) contacts(16) contacts(17) contacts(18) contacts(19) contacts(20) contacts(21) contacts(22) contacts(23) contacts(24) contacts(25) contacts(26) contacts(27) contacts(28) contacts(29) contacts(30) contacts(31) contacts(32) contacts(33) contacts(34) contacts(35) contacts(36) contacts(37) contacts(38) contacts(39) contacts(40) contacts(41) contacts(42) contacts(43) contacts(44) contacts(45) contacts(46) contacts(47) contacts(48) contacts(49) contacts(50) contacts(51) contacts(52) contacts(53) contacts(54) contacts(55) contacts(56) contacts(57) contacts(58) contacts(59) contacts(60) contacts(61) contacts(62) contacts(63) contacts(64) contacts(65) contacts(66) contacts(67) contacts(68) contacts(69) contacts(70) contacts(71) contacts(72) contacts(73) contacts(74) contacts(75) contacts(76) contacts(77) contacts(78) contacts(79) contacts(80) contacts(81) contacts(82) contacts(83) contacts(84) contacts(85) contacts(86) contacts(87) contacts(88) contacts(89) contacts(90) contacts(91) contacts(92) contacts(93) contacts(94) contacts(95) contacts(96) contacts(97) contacts(98) rejects(0) rejects(1) rejects(2) rejects(3) rejects(4) rejects(5) rejects(6) rejects(7) rejects(8) rejects(9) rejects(10) rejects(11) rejects(12) rejects(13) rejects(14) rejects(15) rejects(16) rejects(17) rejects(18) rejects(19) rejects(20) rejects(21) rejects(22) rejects(23) rejects(24) rejects(25) rejects(26) rejects(27) rejects(28) rejects(29) rejects(30) rejects(31) rejects(32) rejects(33) rejects(34) rejects(35) rejects(36) rejects(37) rejects(38) rejects(39) rejects(40) rejects(41) rejects(42) rejects(43) rejects(44) rejects(45) rejects(46) rejects(47) rejects(48) rejects(49) rejects(50) rejects(51) rejects(52) rejects(53) rejects(54) rejects(55) rejects(56) rejects(57) rejects(58) rejects(59) rejects(60) rejects(61) rejects(62) rejects(63) rejects(64) rejects(65) rejects(66) rejects(67) rejects(68) rejects(69) rejects(70) rejects(71) rejects(72) rejects(73) rejects(74) rejects(75) rejects(76) rejects(77) rejects(78) rejects(79) rejects(80) rejects(81) rejects(82) rejects(83) rejects(84) rejects(85) rejects(86) rejects(87) rejects(88) rejects(89) rejects(90) rejects(91) rejects(92) rejects(93) rejects(94) rejects(95) rejects(96) rejects(97) rejects(98)
|
||||||
0 deity (flash beep coastwatch sonar techlists) "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 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
0 deity (flash beep coastwatch sonar techlists) "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 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "1" "1" "127.0.0.1" "" "tester" 5 -15 5 -13 0 0 0 255 640 0 28 58442 0 0 0 0 65.5867 21.7241 38.9091 12.0366 neutral neutral allied neutral neutral neutral neutral neutral at-war neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "1" "1" "127.0.0.1" "" "tester" 5 -15 5 -13 0 0 0 255 640 0 27 59888 0 0 0 0 65.5628 21.7072 38.6526 12.0091 neutral neutral allied neutral neutral neutral neutral neutral at-war neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "2" "2" "127.0.0.1" "" "tester" 18 8 16 10 0 1 0 255 640 0 101 38065 0 0 0 0 27.2871 10.8621 11.7609 0.00000 neutral allied neutral neutral neutral neutral neutral neutral hostile neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "2" "2" "127.0.0.1" "" "tester" 18 8 16 10 0 1 0 255 640 0 101 38069 0 0 0 0 27.2793 10.8536 11.7623 0.00000 neutral allied neutral neutral neutral neutral neutral neutral hostile neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "3" "3" "127.0.0.1" "" "tester" -4 10 -4 10 0 17 1 255 640 0 0 38165 0 0 0 0 27.2871 10.8621 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "3" "3" "127.0.0.1" "" "tester" -4 10 -4 10 0 17 1 255 640 0 0 38161 0 0 0 0 27.2793 10.8536 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "4" "4" "127.0.0.1" "" "tester" -15 1 -15 1 0 17 1 255 640 0 0 38167 0 0 0 0 27.2871 10.8621 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "4" "4" "127.0.0.1" "" "tester" -15 1 -15 1 0 17 1 255 640 0 0 38156 0 0 0 0 27.2793 10.8536 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "5" "5" "127.0.0.1" "" "tester" -30 8 -30 8 0 17 1 255 640 0 0 38155 0 0 0 0 27.2871 10.8621 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "5" "5" "127.0.0.1" "" "tester" -30 8 -30 8 0 17 1 255 640 0 0 38163 0 0 0 0 27.2793 10.8536 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "6" "6" "127.0.0.1" "" "tester" 2 -2 2 -2 0 17 1 255 640 0 0 38167 0 0 0 0 27.2871 10.8621 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "6" "6" "127.0.0.1" "" "tester" 2 -2 2 -2 0 17 1 255 640 0 0 38165 0 0 0 0 27.2793 10.8536 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "7" "7" "127.0.0.1" "" "tester" 24 0 24 0 0 17 1 255 640 0 0 38162 0 0 0 0 27.2871 10.8621 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "7" "7" "127.0.0.1" "" "tester" 24 0 24 0 0 17 1 255 640 0 0 38162 0 0 0 0 27.2793 10.8536 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "8" "8" "127.0.0.1" "" "tester" 30 -12 23 -11 0 1 0 255 640 0 0 27202 0 0 0 0 52.0652 10.8621 40.5545 6.99272 neutral at-war hostile neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "8" "8" "127.0.0.1" "" "tester" 30 -12 23 -11 0 1 0 255 640 0 0 27616 0 0 0 0 52.0483 10.8536 40.4667 6.99360 neutral at-war hostile neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "9" "9" "127.0.0.1" "" "tester" -26 -6 -26 -6 0 17 1 255 640 0 0 38156 0 0 0 0 27.2871 10.8621 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "9" "9" "127.0.0.1" "" "tester" -26 -6 -26 -6 0 17 1 255 640 0 0 38153 0 0 0 0 27.2793 10.8536 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "10" "10" "127.0.0.1" "" "tester" -12 -10 -12 -10 0 17 1 255 640 0 0 38149 0 0 0 0 27.2871 10.8621 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 active (flash beep coastwatch sonar techlists) "10" "10" "127.0.0.1" "" "tester" -12 -10 -12 -10 0 17 1 255 640 0 0 38167 0 0 0 0 27.2793 10.8536 0.00000 0.00000 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 visitor (flash beep coastwatch sonar techlists) "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 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 visitor (flash beep coastwatch sonar techlists) "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 neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral neutral 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 unused () "" "" "" "" "" 0 0 0 0 0 0 0 255 0 0 0 0 0 0 0 0 0.00000 0.00000 0.00000 0.00000 at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 unused () "" "" "" "" "" 0 0 0 0 0 0 0 255 0 0 0 0 0 0 0 0 0.00000 0.00000 0.00000 0.00000 at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
13 unused () "" "" "" "" "" 0 0 0 0 0 0 0 255 0 0 0 0 0 0 0 0 0.00000 0.00000 0.00000 0.00000 at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
13 unused () "" "" "" "" "" 0 0 0 0 0 0 0 255 0 0 0 0 0 0 0 0 0.00000 0.00000 0.00000 0.00000 at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war at-war 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () () ()
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue