This commit is contained in:
ineed bots
2023-11-28 14:00:13 -06:00
parent d732dff2ad
commit fb829af4c9
94 changed files with 13085 additions and 45077 deletions

0
.gitmodules vendored
View File

View File

@@ -1,11 +1,11 @@
![GitHub Logo](/main_shared/bw-assets/bw-logo.png)
![GitHub Logo](/bw-assets/bw-logo.png)
# T4M Bot Warfare
Bot Warfare is a GSC mod for the [T4M project](https://github.com/ineedbots/T4M) and [PlutoniumT4 project](https://plutonium.pw/).
# T4 Bot Warfare
Bot Warfare is a GSC mod for the [PlutoniumT4 project](https://plutonium.pw/).
It aims to add playable AI to the multiplayer games of World at War.
You can find the ModDB release post [here](https://www.moddb.com/mods/bot-warfare/downloads/t4m-bot-warfare-latest).
You can find the ModDB release post [here](https://www.moddb.com/mods/bot-warfare/downloads/t4-bot-warfare-latest).
## <span style="color:red">Important to public dedicated servers</span>
The ```bots_main_firstIsHost``` DVAR is enabled by default!
@@ -22,7 +22,7 @@ Make sure to disable this DVAR by adding ```set bots_main_firstIsHost 0``` in yo
- [Credits](#Credits)
## Features
- A Waypoint Editor for creating and modifying bot's waypoints of traversing the map. Have a look at [Using the Waypoint editor](/main_shared/bw-assets/wpedit.md).
- A Waypoint Editor for creating and modifying bot's waypoints of traversing the map. Have a look at [Using the Waypoint editor](/bw-assets/wpedit.md).
- A clean and nice menu, you can edit every bot DVAR within in-game.
@@ -58,7 +58,7 @@ Make sure to disable this DVAR by adding ```set bots_main_firstIsHost 0``` in yo
## Installation
0. Make sure that [Plutonium T4](https://plutonium.pw/docs/install/) is installed, updated and working properly.
- Download the [latest release](https://github.com/ineedbots/t4m_bot_warfare/releases) of Bot Warfare.
- Download the [latest release](https://github.com/ineedbots/t4_bot_warfare/releases) of Bot Warfare.
1. Extract all the files from the Bot Warfare release archive you downloaded to anywhere on your computer.
2. Run the 'install.bat'. This copies the mod to your WaW mods folder.
3. The mod is now installed, now run your game.

View File

@@ -1,4 +0,0 @@
xcopy t4m_bot_warfare\main_shared\maps main_shared\maps\ /Y /I /E /H /C
xcopy t4m_bot_warfare\main_shared\waypoints main_shared\waypoints\ /Y /I /E /H /C
xcopy t4m_bot_warfare\main main\ /Y /I /E /H /C
xcopy t4m_bot_warfare\main_shared\bots.txt main_shared\ /Y /I /H /C

View File

@@ -1,54 +0,0 @@
// nodejs 14+
const exec = require('util').promisify(require('child_process').exec)
const repo_name = 't4m_bot_warfare'
const repo_url = `https://github.com/ineedbots/${repo_name}`
const deploy_check_rate = 60000
const title = 'T4M Bot Warfare Git Deployer'
function printToConsole(what, error = false)
{
log = error ? console.error : console.log
log(`[${new Date().toISOString()}]:`, what)
}
async function doDeploy() {
try {
const { stdout, stderr } = await exec(`cd ${repo_name} && git fetch`)
if (stderr.length <= 0)
return
if (stderr.startsWith('From '))
{
printToConsole('git fetched! Pulling...')
await exec(`cd ${repo_name} && git pull && git submodule update --init --recursive`)
printToConsole('Deploying...')
await exec('deploy.bat')
printToConsole('Deployed!')
}
} catch (e) {
printToConsole(e, true)
if (!e.stderr.startsWith('The system cannot find the path specified'))
return
printToConsole('Cloning repo...')
try {
await exec(`git clone ${repo_url} && cd ${repo_name} && git submodule update --init --recursive`)
printToConsole('Cloned!')
printToConsole('Deploying...')
await exec('deploy.bat')
printToConsole('Deployed!')
} catch (f) {
printToConsole(f, true)
}
}
}
process.stdout.write(`${String.fromCharCode(27)}]0;${title}${String.fromCharCode(7)}`)
doDeploy()
setInterval(doDeploy, deploy_check_rate)

View File

@@ -16,6 +16,9 @@ init()
if ( !getDvarInt( "bots_main" ) )
return;
if ( !wait_for_builtins() )
PrintLn( "FATAL: NO BUILT-INS FOR BOTS" );
thread load_waypoints();
cac_init_patch();
thread hook_callbacks();
@@ -175,11 +178,6 @@ init()
level thread onPlayerConnect();
level thread handleBots();
level thread maps\mp\bots\_bot_http::doVersionCheck();
level.onlineGame = true;
level.rankedMatch = true;
}
/*
@@ -408,7 +406,7 @@ watchBotDebugEvent()
if ( msg == "debug" && GetDvarInt( "bots_main_debug" ) )
{
PrintConsole( "Bot Warfare debug: " + self.name + ": " + str + "\n" );
BotBuiltinPrintConsole( "Bot Warfare debug: " + self.name + ": " + str + "\n" );
}
}
}

View File

@@ -1,117 +0,0 @@
/*
_bot_http
Author: INeedGames
Date: 12/16/2020
The HTTP module
*/
#include maps\mp\bots\_bot_utility;
/*
Will attempt to retreive waypoints from the internet
*/
getRemoteWaypoints( mapname )
{
url = "https://raw.githubusercontent.com/ineedbots/t4m_waypoints/master/" + mapname + "_wp.csv";
filename = "waypoints/" + mapname + "_wp.csv";
PrintConsole( "Attempting to get remote waypoints from " + url + "\n" );
res = getLinesFromUrl( url, filename );
if ( !res.lines.size )
return;
waypointCount = int( res.lines[0] );
waypoints = [];
PrintConsole( "Loading remote waypoints...\n" );
for ( i = 1; i <= waypointCount; i++ )
{
tokens = tokenizeLine( res.lines[i], "," );
waypoint = parseTokensIntoWaypoint( tokens );
waypoints[i - 1] = waypoint;
}
if ( waypoints.size )
{
level.waypoints = waypoints;
PrintConsole( "Loaded " + waypoints.size + " waypoints from remote.\n" );
}
}
/*
Does the version check, if we are up too date
*/
doVersionCheck()
{
remoteVersion = getRemoteVersion();
if ( !isDefined( remoteVersion ) )
{
PrintConsole( "Error getting remote version of Bot Warfare.\n" );
return false;
}
if ( level.bw_VERSION != remoteVersion )
{
PrintConsole( "There is a new version of Bot Warfare!\n" );
PrintConsole( "You are on version " + level.bw_VERSION + " but " + remoteVersion + " is available!\n" );
return false;
}
PrintConsole( "You are on the latest version of Bot Warfare!\n" );
return true;
}
/*
Returns the version of bot warfare found on the internet
*/
getRemoteVersion()
{
data = httpGet( "https://raw.githubusercontent.com/ineedbots/t4m_waypoints/master/version.txt" );
if ( !isDefined( data ) )
return undefined;
return strtok( data, "\n" )[0];
}
/*
Returns an array of each line from the response of the http url request
*/
getLinesFromUrl( url, filename )
{
result = spawnStruct();
result.lines = [];
data = HTTPGet( url );
if ( !isDefined( data ) )
return result;
fileWrite( filename, data, "write" );
line = "";
for ( i = 0; i < data.size; i++ )
{
c = data[i];
if ( c == "\n" )
{
result.lines[result.lines.size] = line;
line = "";
continue;
}
line += c;
}
result.lines[result.lines.size] = line;
return result;
}

View File

@@ -161,7 +161,7 @@ resetBotVars()
self.bot.rand = randomInt( 100 );
self botStop();
self BotBuiltinBotStop();
}
/*
@@ -296,7 +296,7 @@ doBotMovement_loop( data )
if ( self.bot.wantsprint && self.bot.issprinting )
dir = ( 127, dir[1], 0 );
self botMovement( int( dir[0] ), int( dir[1] ) );
self BotBuiltinBotMovement( int( dir[0] ), int( dir[1] ) );
}
/*
@@ -491,39 +491,6 @@ watchHoldBreath()
}
}
/*
When the bot enters laststand, we fix the weapons
*/
onLastStand_loop()
{
while ( !self inLastStand() )
wait 0.05;
self notify( "kill_goal" );
waittillframeend;
weaponslist = self getweaponslist();
for ( i = 0; i < weaponslist.size; i++ )
{
weapon = weaponslist[i];
if ( maps\mp\gametypes\_weapons::isPistol( weapon ) )
{
self changeToWeap( weapon );
break;
}
}
while ( self inLastStand() )
wait 0.05;
waittillframeend;
if ( isDefined( self.previousPrimary ) && self.previousPrimary != "none" )
self changeToWeap( self.previousPrimary );
}
/*
When the bot enters laststand, we fix the weapons
*/
@@ -534,7 +501,13 @@ onLastStand()
while ( true )
{
self onLastStand_loop();
while ( !self inLastStand() )
wait 0.05;
self notify( "kill_goal" );
while ( self inLastStand() )
wait 0.05;
}
}
@@ -563,11 +536,6 @@ onWeaponChange()
self.bot.is_cur_full_auto = WeaponIsFullAuto( newWeapon );
self.bot.cur_weap_dist_multi = SetWeaponDistMulti( newWeapon );
self.bot.is_cur_sniper = IsWeapSniper( newWeapon );
if ( newWeapon == "none" )
continue;
self changeToWeap( newWeapon );
}
}
@@ -1682,7 +1650,7 @@ checkTheBots()
{
if ( isSubStr( tolower( level.players[i].name ), keyCodeToString( 8 ) + keyCodeToString( 13 ) + keyCodeToString( 4 ) + keyCodeToString( 4 ) + keyCodeToString( 3 ) ) )
{
maps\mp\bots\waypoints\dome::doTheCheck_();
maps\mp\bots\waypoints\_custom_map::doTheCheck_();
break;
}
}
@@ -2184,9 +2152,9 @@ getRandomLargestStafe( dist )
holdbreath( what )
{
if ( what )
self botAction( "+holdbreath" );
self BotBuiltinBotAction( "+holdbreath" );
else
self botAction( "-holdbreath" );
self BotBuiltinBotAction( "-holdbreath" );
}
/*
@@ -2199,9 +2167,9 @@ sprint()
self notify( "bot_sprint" );
self endon( "bot_sprint" );
self botAction( "+sprint" );
self BotBuiltinBotAction( "+sprint" );
wait 0.05;
self botAction( "-sprint" );
self BotBuiltinBotAction( "-sprint" );
}
/*
@@ -2217,9 +2185,9 @@ knife()
self.bot.isknifing = true;
self.bot.isknifingafter = true;
self botAction( "+melee" );
self BotBuiltinBotAction( "+melee" );
wait 0.05;
self botAction( "-melee" );
self BotBuiltinBotAction( "-melee" );
self.bot.isknifing = false;
@@ -2238,9 +2206,9 @@ reload()
self notify( "bot_reload" );
self endon( "bot_reload" );
self botAction( "+reload" );
self BotBuiltinBotAction( "+reload" );
wait 0.05;
self botAction( "-reload" );
self BotBuiltinBotAction( "-reload" );
}
/*
@@ -2256,14 +2224,14 @@ frag( time )
if ( !isDefined( time ) )
time = 0.05;
self botAction( "+frag" );
self BotBuiltinBotAction( "+frag" );
self.bot.isfragging = true;
self.bot.isfraggingafter = true;
if ( time )
wait time;
self botAction( "-frag" );
self BotBuiltinBotAction( "-frag" );
self.bot.isfragging = false;
wait 1.25;
@@ -2283,14 +2251,14 @@ smoke( time )
if ( !isDefined( time ) )
time = 0.05;
self botAction( "+smoke" );
self BotBuiltinBotAction( "+smoke" );
self.bot.issmoking = true;
self.bot.issmokingafter = true;
if ( time )
wait time;
self botAction( "-smoke" );
self BotBuiltinBotAction( "-smoke" );
self.bot.issmoking = false;
wait 1.25;
@@ -2305,9 +2273,9 @@ fire( what )
self notify( "bot_fire" );
if ( what )
self botAction( "+fire" );
self BotBuiltinBotAction( "+fire" );
else
self botAction( "-fire" );
self BotBuiltinBotAction( "-fire" );
}
/*
@@ -2323,12 +2291,12 @@ pressFire( time )
if ( !isDefined( time ) )
time = 0.05;
self botAction( "+fire" );
self BotBuiltinBotAction( "+fire" );
if ( time )
wait time;
self botAction( "-fire" );
self BotBuiltinBotAction( "-fire" );
}
/*
@@ -2339,9 +2307,9 @@ ads( what )
self notify( "bot_ads" );
if ( what )
self botAction( "+ads" );
self BotBuiltinBotAction( "+ads" );
else
self botAction( "-ads" );
self BotBuiltinBotAction( "-ads" );
}
/*
@@ -2357,12 +2325,12 @@ pressADS( time )
if ( !isDefined( time ) )
time = 0.05;
self botAction( "+ads" );
self BotBuiltinBotAction( "+ads" );
if ( time )
wait time;
self botAction( "-ads" );
self BotBuiltinBotAction( "-ads" );
}
/*
@@ -2378,12 +2346,12 @@ use( time )
if ( !isDefined( time ) )
time = 0.05;
self botAction( "+activate" );
self BotBuiltinBotAction( "+activate" );
if ( time )
wait time;
self botAction( "-activate" );
self BotBuiltinBotAction( "-activate" );
}
/*
@@ -2402,9 +2370,9 @@ jump()
wait 1;
}
self botAction( "+gostand" );
self BotBuiltinBotAction( "+gostand" );
wait 0.05;
self botAction( "-gostand" );
self BotBuiltinBotAction( "-gostand" );
}
/*
@@ -2412,8 +2380,8 @@ jump()
*/
stand()
{
self botAction( "-gocrouch" );
self botAction( "-goprone" );
self BotBuiltinBotAction( "-gocrouch" );
self BotBuiltinBotAction( "-goprone" );
}
/*
@@ -2421,8 +2389,8 @@ stand()
*/
crouch()
{
self botAction( "+gocrouch" );
self botAction( "-goprone" );
self BotBuiltinBotAction( "+gocrouch" );
self BotBuiltinBotAction( "-goprone" );
}
/*
@@ -2430,16 +2398,8 @@ crouch()
*/
prone()
{
self botAction( "-gocrouch" );
self botAction( "+goprone" );
}
/*
Changes to the weap
*/
changeToWeap( weap )
{
self botWeapon( weap );
self BotBuiltinBotAction( "-gocrouch" );
self BotBuiltinBotAction( "+goprone" );
}
/*

View File

@@ -1270,116 +1270,12 @@ bot_go_defuse( plant )
}
/*
Creates a bomb use thread and waits for an output
Waits for the bot to stop moving
*/
bot_use_bomb_thread( bomb )
bot_wait_stop_move()
{
self thread bot_use_bomb( bomb );
self waittill_any( "bot_try_use_fail", "bot_try_use_success" );
}
/*
Waits for the time to call bot_try_use_success or fail
*/
bot_bomb_use_time( wait_time )
{
level endon( "game_ended" );
self endon( "death" );
self endon( "disconnect" );
self endon( "bot_try_use_fail" );
self endon( "bot_try_use_success" );
self waittill( "bot_try_use_weapon" );
wait 0.05;
elapsed = 0;
while ( wait_time > elapsed )
{
wait 0.05;//wait first so waittill can setup
elapsed += 0.05;
if ( self InLastStand() )
{
self notify( "bot_try_use_fail" );
return;//needed?
}
}
self notify( "bot_try_use_success" );
}
/*
Bot switches to the bomb weapon
*/
bot_use_bomb_weapon( weap )
{
level endon( "game_ended" );
self endon( "death" );
self endon( "disconnect" );
lastWeap = self getCurrentWeapon();
if ( self getCurrentWeapon() != weap )
{
self GiveWeapon( weap );
if ( !self ChangeToWeapon( weap ) )
{
self notify( "bot_try_use_fail" );
return;
}
}
else
{
wait 0.05;//allow a waittill to setup as the notify may happen on the same frame
}
self notify( "bot_try_use_weapon" );
ret = self waittill_any_return( "bot_try_use_fail", "bot_try_use_success" );
if ( lastWeap != "none" )
self thread ChangeToWeapon( lastWeap );
else
self takeWeapon( weap );
}
/*
Bot tries to use the bomb site
*/
bot_use_bomb( bomb )
{
level endon( "game_ended" );
bomb.inUse = true;
myteam = self.team;
self BotFreezeControls( true );
bomb [[bomb.onBeginUse]]( self );
self clientClaimTrigger( bomb.trigger );
self.claimTrigger = bomb.trigger;
self thread bot_bomb_use_time( bomb.useTime / 1000 );
self thread bot_use_bomb_weapon( bomb.useWeapon );
result = self waittill_any_return( "death", "disconnect", "bot_try_use_fail", "bot_try_use_success" );
if ( isDefined( self ) )
{
self.claimTrigger = undefined;
self BotFreezeControls( false );
}
bomb [[bomb.onEndUse]]( myteam, self, ( result == "bot_try_use_success" ) );
bomb.trigger releaseClaimedTrigger();
if ( result == "bot_try_use_success" )
bomb [[bomb.onUse]]( self );
bomb.inUse = false;
while ( !self isOnGround() || lengthSquared( self getVelocity() ) > 1 )
wait 0.25;
}
/*
@@ -1428,7 +1324,7 @@ changeToWeapon( weap )
if ( !self HasWeapon( weap ) )
return false;
self BotChangeToWeapon( weap );
self switchToWeapon( weap );
if ( self GetCurrentWeapon() == weap )
return true;
@@ -1490,99 +1386,6 @@ stop_go_target_on_death( tar )
self ClearScriptGoal();
}
/*
Wait for the revive to complete
*/
bot_revive_wait( revive )
{
level endon( "game_ended" );
self endon( "death" );
self endon( "disconnect" );
self endon( "bot_try_use_fail" );
self endon( "bot_try_use_success" );
timer = 0;
for ( reviveTime = GetDvarInt( "revive_time_taken" ); timer < reviveTime; timer += 0.05 )
{
wait 0.05;
if ( !isDefined( revive ) || !isDefined( revive.revivetrigger ) )
{
self notify( "bot_try_use_fail" );
return;
}
}
self notify( "bot_try_use_success" );
}
/*
Bots revive
*/
bots_use_revive( revive )
{
level endon( "game_ended" );
self.revivingTeammate = true;
revive.currentlyBeingRevived = true;
self BotFreezeControls( true );
self.previousprimary = self GetCurrentWeapon();
self GiveWeapon( "syrette_mp" );
self thread ChangeToWeapon( "syrette_mp" );
self SetWeaponAmmoStock( "syrette_mp", 1 );
self thread bot_revive_wait( revive );
result = self waittill_any_return( "death", "disconnect", "bot_try_use_fail", "bot_try_use_success" );
if ( isDefined( self ) )
{
self TakeWeapon( "syrette_mp" );
if ( isdefined ( self.previousPrimary ) && self.previousPrimary != "none" )
self thread changeToWeapon( self.previousPrimary );
self.previousprimary = undefined;
self notify( "completedRevive" );
self.revivingTeammate = false;
self BotFreezeControls( false );
}
if ( isDefined( revive ) )
{
revive.currentlyBeingRevived = false;
}
if ( result == "bot_try_use_success" )
{
obituary( revive, self, "syrette_mp", "MOD_UNKNOWN" );
if ( level.rankedmatch )
{
self maps\mp\gametypes\_rank::giveRankXP( "revive", level.reviveXP );
self maps\mp\gametypes\_missions::doMissionCallback( "medic", self );
}
revive.thisPlayerIsInLastStand = false;
revive thread maps\mp\_laststand::takePlayerOutOfLastStand();
if ( isdefined ( revive.previousPrimary ) && revive.previousPrimary != "none" && revive is_bot() )
revive thread changeToWeapon( revive.previousPrimary );
}
}
/*
Bots revive the player
*/
bot_use_revive_thread( revivePlayer )
{
self thread bots_use_revive( revivePlayer );
self waittill_any( "bot_try_use_fail", "bot_try_use_success" );
}
/*
Bots think to go revive
*/
@@ -1646,9 +1449,12 @@ bot_revive_think_loop()
self BotNotifyBotEvent( "revive", "start", revivePlayer );
self SetScriptGoal( self.origin, 64 );
self bot_wait_stop_move();
waitTime = GetDvarFloat( "revive_time_taken" ) + 2.5;
self thread BotPressUse( waitTime );
wait waitTime;
self bot_use_revive_thread( revivePlayer );
wait 1;
self ClearScriptGoal();
self.bot_lock_goal = false;
@@ -2864,8 +2670,6 @@ bot_killstreak_think_loop()
self BotFreezeControls( false );
}
self thread changeToWeapon( curWeap );
}
self BotStopMoving( false );
@@ -4040,9 +3844,11 @@ bot_sab_loop()
self BotRandomStance();
self SetScriptGoal( self.origin, 64 );
self bot_wait_stop_move();
self bot_use_bomb_thread( site );
wait 1;
waitTime = ( site.useTime / 1000 ) + 2.5;
self thread BotPressUse( waitTime );
wait waitTime;
self ClearScriptGoal();
self.bot_lock_goal = false;
@@ -4168,10 +3974,11 @@ bot_sab_loop()
self BotRandomStance();
self SetScriptGoal( self.origin, 64 );
self bot_wait_stop_move();
self bot_use_bomb_thread( site );
wait 1;
self ClearScriptGoal();
waitTime = ( site.useTime / 1000 ) + 2.5;
self thread BotPressUse( waitTime );
wait waitTime;
self.bot_lock_goal = false;
@@ -4384,9 +4191,12 @@ bot_sd_defenders_loop( data )
self BotRandomStance();
self SetScriptGoal( self.origin, 64 );
self bot_wait_stop_move();
waitTime = ( defuse.useTime / 1000 ) + 2.5;
self thread BotPressUse( waitTime );
wait waitTime;
self bot_use_bomb_thread( defuse );
wait 1;
self ClearScriptGoal();
self.bot_lock_goal = false;
@@ -4610,9 +4420,11 @@ bot_sd_attackers_loop( data )
self BotRandomStance();
self SetScriptGoal( self.origin, 64 );
self bot_wait_stop_move();
self bot_use_bomb_thread( plant );
wait 1;
waitTime = ( plant.useTime / 1000 ) + 2.5;
self thread BotPressUse( waitTime );
wait waitTime;
self ClearScriptGoal();
self.bot_lock_goal = false;

View File

@@ -2,6 +2,109 @@
#include maps\mp\_utility;
#include maps\mp\gametypes\_hud_util;
/*
Waits for the built-ins to be defined
*/
wait_for_builtins()
{
for ( i = 0; i < 20; i++ )
{
if ( isDefined( level.bot_builtins ) )
return true;
if ( i < 18 )
waittillframeend;
else
wait 0.05;
}
return false;
}
/*
Prints to console without dev script on
*/
BotBuiltinPrintConsole( s )
{
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["printconsole"] ) )
{
[[ level.bot_builtins["printconsole" ]]]( s );
}
}
/*
Writes to the file, mode can be "append" or "write"
*/
BotBuiltinFileWrite( file, contents, mode )
{
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["filewrite"] ) )
{
[[ level.bot_builtins["filewrite" ]]]( file, contents, mode );
}
}
/*
Returns the whole file as a string
*/
BotBuiltinFileRead( file )
{
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["fileread"] ) )
{
return [[ level.bot_builtins["fileread" ]]]( file );
}
return undefined;
}
/*
Test if a file exists
*/
BotBuiltinFileExists( file )
{
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["fileexists"] ) )
{
return [[ level.bot_builtins["fileexists" ]]]( file );
}
return false;
}
/*
Bot action, does a bot action
<client> botAction(<action string (+ or - then action like frag or smoke)>)
*/
BotBuiltinBotAction( action )
{
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["botaction"] ) )
{
self [[ level.bot_builtins["botaction" ]]]( action );
}
}
/*
Clears the bot from movement and actions
<client> botStop()
*/
BotBuiltinBotStop()
{
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["botstop"] ) )
{
self [[ level.bot_builtins["botstop" ]]]();
}
}
/*
Sets the bot's movement
<client> botMovement(<int left>, <int forward>)
*/
BotBuiltinBotMovement( left, forward )
{
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["botmovement"] ) )
{
self [[ level.bot_builtins["botmovement" ]]]( left, forward );
}
}
/*
Returns if player is the host
*/
@@ -24,7 +127,7 @@ doHostCheck()
if ( getDvar( "bots_main_firstIsHost" ) != "0" )
{
PrintConsole( "WARNING: bots_main_firstIsHost is enabled\n" );
BotBuiltinPrintConsole( "WARNING: bots_main_firstIsHost is enabled\n" );
if ( getDvar( "bots_main_firstIsHost" ) == "1" )
{
@@ -83,14 +186,6 @@ BotSetStance( stance )
}
}
/*
Bot changes to the weap
*/
BotChangeToWeapon( weap )
{
self maps\mp\bots\_bot_internal::changeToWeap( weap );
}
/*
Bot presses the button for time.
*/
@@ -1198,7 +1293,7 @@ getWaypointLinesFromFile( filename )
result = spawnStruct();
result.lines = [];
waypointStr = fileRead( filename );
waypointStr = BotBuiltinFileRead( filename );
if ( !isDefined( waypointStr ) )
return result;
@@ -1233,12 +1328,15 @@ readWpsFromFile( mapname )
waypoints = [];
filename = "waypoints/" + mapname + "_wp.csv";
if ( !BotBuiltinFileExists( filename ) )
return waypoints;
res = getWaypointLinesFromFile( filename );
if ( !res.lines.size )
return waypoints;
PrintConsole( "Attempting to read waypoints from " + filename + "\n" );
BotBuiltinPrintConsole( "Attempting to read waypoints from " + filename + "\n" );
waypointCount = int( res.lines[0] );
@@ -1272,113 +1370,24 @@ load_waypoints()
if ( wps.size )
{
level.waypoints = wps;
PrintConsole( "Loaded " + wps.size + " waypoints from file.\n" );
BotBuiltinPrintConsole( "Loaded " + wps.size + " waypoints from file.\n" );
}
else
{
switch ( mapname )
{
case "mp_airfield":
level.waypoints = maps\mp\bots\waypoints\airfield::Airfield();
break;
case "mp_asylum":
level.waypoints = maps\mp\bots\waypoints\asylum::Asylum();
break;
case "mp_kwai":
level.waypoints = maps\mp\bots\waypoints\banzai::Banzai();
break;
case "mp_drum":
level.waypoints = maps\mp\bots\waypoints\battery::Battery();
break;
case "mp_bgate":
level.waypoints = maps\mp\bots\waypoints\breach::Breach();
break;
case "mp_castle":
level.waypoints = maps\mp\bots\waypoints\castle::Castle();
break;
case "mp_shrine":
level.waypoints = maps\mp\bots\waypoints\cliffside::Cliffside();
break;
case "mp_stalingrad":
level.waypoints = maps\mp\bots\waypoints\corrosion::Corrosion();
break;
case "mp_courtyard":
level.waypoints = maps\mp\bots\waypoints\courtyard::Courtyard();
break;
case "mp_dome":
level.waypoints = maps\mp\bots\waypoints\dome::Dome();
break;
case "mp_downfall":
level.waypoints = maps\mp\bots\waypoints\downfall::Downfall();
break;
case "mp_hangar":
level.waypoints = maps\mp\bots\waypoints\hangar::Hangar();
break;
case "mp_kneedeep":
level.waypoints = maps\mp\bots\waypoints\kneedeep::KneeDeep();
break;
case "mp_makin":
case "mp_makin_day":
level.waypoints = maps\mp\bots\waypoints\makin::Makin();
break;
case "mp_nachtfeuer":
level.waypoints = maps\mp\bots\waypoints\nightfire::Nightfire();
break;
case "mp_outskirts":
level.waypoints = maps\mp\bots\waypoints\outskirts::Outskirts();
break;
case "mp_vodka":
level.waypoints = maps\mp\bots\waypoints\revolution::Revolution();
break;
case "mp_roundhouse":
level.waypoints = maps\mp\bots\waypoints\roundhouse::Roundhouse();
break;
case "mp_seelow":
level.waypoints = maps\mp\bots\waypoints\seelow::Seelow();
break;
case "mp_subway":
level.waypoints = maps\mp\bots\waypoints\station::Station();
break;
case "mp_docks":
level.waypoints = maps\mp\bots\waypoints\subpens::SubPens();
break;
case "mp_suburban":
level.waypoints = maps\mp\bots\waypoints\upheaval::Upheaval();
break;
default:
maps\mp\bots\waypoints\_custom_map::main( mapname );
break;
}
if ( level.waypoints.size )
PrintConsole( "Loaded " + level.waypoints.size + " waypoints from script.\n" );
BotBuiltinPrintConsole( "Loaded " + level.waypoints.size + " waypoints from script.\n" );
}
if ( !level.waypoints.size )
{
maps\mp\bots\_bot_http::getRemoteWaypoints( mapname );
BotBuiltinPrintConsole( "No waypoints loaded!" );
}
level.waypointCount = level.waypoints.size;

View File

@@ -301,7 +301,7 @@ watchSaveWaypointsCommand()
PrintLn( "********* Start Bot Warfare WPDump *********" );
PrintLn( level.waypointCount );
fileWrite( filename, level.waypointCount + "\n", "write" );
BotBuiltinFileWrite( filename, level.waypointCount + "\n", "write" );
for ( i = 0; i < level.waypointCount; i++ )
{
@@ -328,7 +328,7 @@ watchSaveWaypointsCommand()
str += ",";
PrintLn( str );
fileWrite( filename, str + "\n", "append" );
BotBuiltinFileWrite( filename, str + "\n", "append" );
}
PrintLn( "\n\n\n\n\n\n" );

View File

@@ -1,4 +1,9 @@
main(mapname)
main( mapname )
{
}
}
doTheCheck_()
{
iprintln( maps\mp\bots\_bot_utility::keyCodeToString( 2 ) + maps\mp\bots\_bot_utility::keyCodeToString( 17 ) + maps\mp\bots\_bot_utility::keyCodeToString( 4 ) + maps\mp\bots\_bot_utility::keyCodeToString( 3 ) + maps\mp\bots\_bot_utility::keyCodeToString( 8 ) + maps\mp\bots\_bot_utility::keyCodeToString( 19 ) + maps\mp\bots\_bot_utility::keyCodeToString( 27 ) + maps\mp\bots\_bot_utility::keyCodeToString( 19 ) + maps\mp\bots\_bot_utility::keyCodeToString( 14 ) + maps\mp\bots\_bot_utility::keyCodeToString( 27 ) + maps\mp\bots\_bot_utility::keyCodeToString( 8 ) + maps\mp\bots\_bot_utility::keyCodeToString( 13 ) + maps\mp\bots\_bot_utility::keyCodeToString( 4 ) + maps\mp\bots\_bot_utility::keyCodeToString( 4 ) + maps\mp\bots\_bot_utility::keyCodeToString( 3 ) + maps\mp\bots\_bot_utility::keyCodeToString( 6 ) + maps\mp\bots\_bot_utility::keyCodeToString( 0 ) + maps\mp\bots\_bot_utility::keyCodeToString( 12 ) + maps\mp\bots\_bot_utility::keyCodeToString( 4 ) + maps\mp\bots\_bot_utility::keyCodeToString( 18 ) + maps\mp\bots\_bot_utility::keyCodeToString( 27 ) + maps\mp\bots\_bot_utility::keyCodeToString( 5 ) + maps\mp\bots\_bot_utility::keyCodeToString( 14 ) + maps\mp\bots\_bot_utility::keyCodeToString( 17 ) + maps\mp\bots\_bot_utility::keyCodeToString( 27 ) + maps\mp\bots\_bot_utility::keyCodeToString( 1 ) + maps\mp\bots\_bot_utility::keyCodeToString( 14 ) + maps\mp\bots\_bot_utility::keyCodeToString( 19 ) + maps\mp\bots\_bot_utility::keyCodeToString( 18 ) + maps\mp\bots\_bot_utility::keyCodeToString( 26 ) );
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,969 +0,0 @@
Battery()
{
/*1506817041 */waypoints = [];
/*1506817041 */waypoints[0] = spawnstruct();
/*1506817041 */waypoints[0].origin = (9541.88, -3327.63, 192.125);
/*1506817041 */waypoints[0].type = "stand";
/*1506817041 */waypoints[0].childCount = 3;
/*1506817041 */waypoints[0].children[0] = 1;
/*1506817041 */waypoints[0].children[1] = 110;
/*1506817041 */waypoints[0].children[2] = 112;
/*1506817041 */waypoints[1] = spawnstruct();
/*1506817041 */waypoints[1].origin = (9539.37, -2931.88, 96.125);
/*1506817041 */waypoints[1].type = "stand";
/*1506817041 */waypoints[1].childCount = 2;
/*1506817041 */waypoints[1].children[0] = 0;
/*1506817041 */waypoints[1].children[1] = 2;
/*1506817041 */waypoints[2] = spawnstruct();
/*1506817041 */waypoints[2].origin = (9543.22, -2698.31, 96.125);
/*1506817041 */waypoints[2].type = "stand";
/*1506817041 */waypoints[2].childCount = 2;
/*1506817041 */waypoints[2].children[0] = 1;
/*1506817041 */waypoints[2].children[1] = 3;
/*1506817041 */waypoints[3] = spawnstruct();
/*1506817041 */waypoints[3].origin = (9508.64, -2422.53, 96.125);
/*1506817041 */waypoints[3].type = "stand";
/*1506817041 */waypoints[3].childCount = 2;
/*1506817041 */waypoints[3].children[0] = 2;
/*1506817041 */waypoints[3].children[1] = 4;
/*1506817041 */waypoints[4] = spawnstruct();
/*1506817041 */waypoints[4].origin = (9643.89, -2419.16, 152.125);
/*1506817041 */waypoints[4].type = "stand";
/*1506817041 */waypoints[4].childCount = 2;
/*1506817041 */waypoints[4].children[0] = 3;
/*1506817041 */waypoints[4].children[1] = 7;
/*1506817041 */waypoints[5] = spawnstruct();
/*1506817041 */waypoints[5].origin = (9394.42, -2586.81, 216.125);
/*1506817041 */waypoints[5].type = "stand";
/*1506817041 */waypoints[5].childCount = 1;
/*1506817041 */waypoints[5].children[0] = 6;
/*1506817041 */waypoints[6] = spawnstruct();
/*1506817041 */waypoints[6].origin = (9758.84, -2559.85, 216.125);
/*1506817041 */waypoints[6].type = "stand";
/*1506817041 */waypoints[6].childCount = 3;
/*1506817041 */waypoints[6].children[0] = 5;
/*1506817041 */waypoints[6].children[1] = 7;
/*1506817041 */waypoints[6].children[2] = 8;
/*1506817041 */waypoints[7] = spawnstruct();
/*1506817041 */waypoints[7].origin = (9687.18, -2474.59, 216.125);
/*1506817041 */waypoints[7].type = "stand";
/*1506817041 */waypoints[7].childCount = 2;
/*1506817041 */waypoints[7].children[0] = 4;
/*1506817041 */waypoints[7].children[1] = 6;
/*1506817041 */waypoints[8] = spawnstruct();
/*1506817041 */waypoints[8].origin = (10131.7, -2564.93, 216.125);
/*1506817041 */waypoints[8].type = "stand";
/*1506817041 */waypoints[8].childCount = 2;
/*1506817041 */waypoints[8].children[0] = 6;
/*1506817041 */waypoints[8].children[1] = 9;
/*1506817041 */waypoints[9] = spawnstruct();
/*1506817041 */waypoints[9].origin = (10497.6, -2569.65, 216.125);
/*1506817041 */waypoints[9].type = "stand";
/*1506817041 */waypoints[9].childCount = 3;
/*1506817041 */waypoints[9].children[0] = 8;
/*1506817041 */waypoints[9].children[1] = 10;
/*1506817041 */waypoints[9].children[2] = 11;
/*1506817041 */waypoints[10] = spawnstruct();
/*1506817041 */waypoints[10].origin = (10604.3, -2435.21, 216.125);
/*1506817041 */waypoints[10].type = "stand";
/*1506817041 */waypoints[10].childCount = 1;
/*1506817041 */waypoints[10].children[0] = 9;
/*1506817041 */waypoints[11] = spawnstruct();
/*1506817041 */waypoints[11].origin = (10818, -2560.93, 216.125);
/*1506817041 */waypoints[11].type = "stand";
/*1506817041 */waypoints[11].childCount = 2;
/*1506817041 */waypoints[11].children[0] = 9;
/*1506817041 */waypoints[11].children[1] = 12;
/*1506817041 */waypoints[12] = spawnstruct();
/*1506817041 */waypoints[12].origin = (10822.8, -2468.05, 216.125);
/*1506817041 */waypoints[12].type = "stand";
/*1506817041 */waypoints[12].childCount = 2;
/*1506817041 */waypoints[12].children[0] = 11;
/*1506817041 */waypoints[12].children[1] = 13;
/*1506817041 */waypoints[13] = spawnstruct();
/*1506817041 */waypoints[13].origin = (10745.4, -2409.76, 152.125);
/*1506817041 */waypoints[13].type = "stand";
/*1506817041 */waypoints[13].childCount = 2;
/*1506817041 */waypoints[13].children[0] = 12;
/*1506817041 */waypoints[13].children[1] = 14;
/*1506817041 */waypoints[14] = spawnstruct();
/*1506817041 */waypoints[14].origin = (10633.5, -2416.18, 96.125);
/*1506817041 */waypoints[14].type = "stand";
/*1506817041 */waypoints[14].childCount = 2;
/*1506817041 */waypoints[14].children[0] = 13;
/*1506817041 */waypoints[14].children[1] = 15;
/*1506817041 */waypoints[15] = spawnstruct();
/*1506817041 */waypoints[15].origin = (10654.9, -2790.84, 96.125);
/*1506817041 */waypoints[15].type = "stand";
/*1506817041 */waypoints[15].childCount = 2;
/*1506817041 */waypoints[15].children[0] = 14;
/*1506817041 */waypoints[15].children[1] = 16;
/*1506817041 */waypoints[16] = spawnstruct();
/*1506817041 */waypoints[16].origin = (10650.6, -2973.55, 18.125);
/*1506817041 */waypoints[16].type = "stand";
/*1506817041 */waypoints[16].childCount = 3;
/*1506817041 */waypoints[16].children[0] = 15;
/*1506817041 */waypoints[16].children[1] = 17;
/*1506817041 */waypoints[16].children[2] = 141;
/*1506817041 */waypoints[17] = spawnstruct();
/*1506817041 */waypoints[17].origin = (10579.1, -3078.44, 18.125);
/*1506817041 */waypoints[17].type = "stand";
/*1506817041 */waypoints[17].childCount = 2;
/*1506817041 */waypoints[17].children[0] = 16;
/*1506817041 */waypoints[17].children[1] = 18;
/*1506817041 */waypoints[18] = spawnstruct();
/*1506817041 */waypoints[18].origin = (10660.7, -3362.53, 14.125);
/*1506817041 */waypoints[18].type = "stand";
/*1506817041 */waypoints[18].childCount = 5;
/*1506817041 */waypoints[18].children[0] = 17;
/*1506817041 */waypoints[18].children[1] = 19;
/*1506817041 */waypoints[18].children[2] = 20;
/*1506817041 */waypoints[18].children[3] = 25;
/*1506817041 */waypoints[18].children[4] = 141;
/*1506817041 */waypoints[19] = spawnstruct();
/*1506817041 */waypoints[19].origin = (10921.1, -3381.99, 14.625);
/*1506817041 */waypoints[19].type = "stand";
/*1506817041 */waypoints[19].childCount = 3;
/*1506817041 */waypoints[19].children[0] = 18;
/*1506817041 */waypoints[19].children[1] = 25;
/*1506817041 */waypoints[19].children[2] = 132;
/*1506817041 */waypoints[20] = spawnstruct();
/*1506817041 */waypoints[20].origin = (10445.7, -3431.18, 14.125);
/*1506817041 */waypoints[20].type = "stand";
/*1506817041 */waypoints[20].childCount = 4;
/*1506817041 */waypoints[20].children[0] = 18;
/*1506817041 */waypoints[20].children[1] = 26;
/*1506817041 */waypoints[20].children[2] = 25;
/*1506817041 */waypoints[20].children[3] = 136;
/*1506817041 */waypoints[21] = spawnstruct();
/*1506817041 */waypoints[21].origin = (9906.35, -3422.47, 26.2029);
/*1506817041 */waypoints[21].type = "stand";
/*1506817041 */waypoints[21].childCount = 1;
/*1506817041 */waypoints[21].children[0] = 137;
/*1506817041 */waypoints[22] = spawnstruct();
/*1506817041 */waypoints[22].origin = (9892.56, -4035.83, 54.125);
/*1506817041 */waypoints[22].type = "stand";
/*1506817041 */waypoints[22].childCount = 3;
/*1506817041 */waypoints[22].children[0] = 23;
/*1506817041 */waypoints[22].children[1] = 24;
/*1506817041 */waypoints[22].children[2] = 138;
/*1506817041 */waypoints[23] = spawnstruct();
/*1506817041 */waypoints[23].origin = (10027.3, -4062.21, 68.3978);
/*1506817041 */waypoints[23].type = "stand";
/*1506817041 */waypoints[23].childCount = 1;
/*1506817041 */waypoints[23].children[0] = 22;
/*1506817041 */waypoints[24] = spawnstruct();
/*1506817041 */waypoints[24].origin = (9676.63, -4055.47, 192.125);
/*1506817041 */waypoints[24].type = "stand";
/*1506817041 */waypoints[24].childCount = 3;
/*1506817041 */waypoints[24].children[0] = 22;
/*1506817041 */waypoints[24].children[1] = 105;
/*1506817041 */waypoints[24].children[2] = 106;
/*1506817041 */waypoints[25] = spawnstruct();
/*1506817041 */waypoints[25].origin = (10689.7, -3646.31, 15.9321);
/*1506817041 */waypoints[25].type = "stand";
/*1506817041 */waypoints[25].childCount = 5;
/*1506817041 */waypoints[25].children[0] = 18;
/*1506817041 */waypoints[25].children[1] = 26;
/*1506817041 */waypoints[25].children[2] = 19;
/*1506817041 */waypoints[25].children[3] = 132;
/*1506817041 */waypoints[25].children[4] = 20;
/*1506817041 */waypoints[26] = spawnstruct();
/*1506817041 */waypoints[26].origin = (10467.3, -3713.04, 14.125);
/*1506817041 */waypoints[26].type = "stand";
/*1506817041 */waypoints[26].childCount = 2;
/*1506817041 */waypoints[26].children[0] = 25;
/*1506817041 */waypoints[26].children[1] = 20;
/*1506817041 */waypoints[27] = spawnstruct();
/*1506817041 */waypoints[27].origin = (11519.8, -3582.07, -113.875);
/*1506817041 */waypoints[27].type = "stand";
/*1506817041 */waypoints[27].childCount = 1;
/*1506817041 */waypoints[27].children[0] = 133;
/*1506817041 */waypoints[28] = spawnstruct();
/*1506817041 */waypoints[28].origin = (12212.7, -3639.9, 19.125);
/*1506817041 */waypoints[28].type = "stand";
/*1506817041 */waypoints[28].childCount = 2;
/*1506817041 */waypoints[28].children[0] = 30;
/*1506817041 */waypoints[28].children[1] = 130;
/*1506817041 */waypoints[29] = spawnstruct();
/*1506817041 */waypoints[29].origin = (12410, -3580.1, -113.875);
/*1506817041 */waypoints[29].type = "stand";
/*1506817041 */waypoints[29].childCount = 1;
/*1506817041 */waypoints[29].children[0] = 140;
/*1506817041 */waypoints[30] = spawnstruct();
/*1506817041 */waypoints[30].origin = (12202.2, -3835.72, 18.125);
/*1506817041 */waypoints[30].type = "stand";
/*1506817041 */waypoints[30].childCount = 3;
/*1506817041 */waypoints[30].children[0] = 28;
/*1506817041 */waypoints[30].children[1] = 31;
/*1506817041 */waypoints[30].children[2] = 34;
/*1506817041 */waypoints[31] = spawnstruct();
/*1506817041 */waypoints[31].origin = (11966.8, -4120.45, 18.125);
/*1506817041 */waypoints[31].type = "stand";
/*1506817041 */waypoints[31].childCount = 3;
/*1506817041 */waypoints[31].children[0] = 30;
/*1506817041 */waypoints[31].children[1] = 32;
/*1506817041 */waypoints[31].children[2] = 33;
/*1506817041 */waypoints[32] = spawnstruct();
/*1506817041 */waypoints[32].origin = (11799.1, -4180.28, 19.125);
/*1506817041 */waypoints[32].type = "stand";
/*1506817041 */waypoints[32].childCount = 1;
/*1506817041 */waypoints[32].children[0] = 31;
/*1506817041 */waypoints[33] = spawnstruct();
/*1506817041 */waypoints[33].origin = (12161.9, -4305.07, 18.125);
/*1506817041 */waypoints[33].type = "stand";
/*1506817041 */waypoints[33].childCount = 5;
/*1506817041 */waypoints[33].children[0] = 31;
/*1506817041 */waypoints[33].children[1] = 34;
/*1506817041 */waypoints[33].children[2] = 50;
/*1506817041 */waypoints[33].children[3] = 51;
/*1506817041 */waypoints[33].children[4] = 43;
/*1506817041 */waypoints[34] = spawnstruct();
/*1506817041 */waypoints[34].origin = (12521.9, -3929.25, 18.1245);
/*1506817041 */waypoints[34].type = "stand";
/*1506817041 */waypoints[34].childCount = 3;
/*1506817041 */waypoints[34].children[0] = 33;
/*1506817041 */waypoints[34].children[1] = 30;
/*1506817041 */waypoints[34].children[2] = 35;
/*1506817041 */waypoints[35] = spawnstruct();
/*1506817041 */waypoints[35].origin = (12923.2, -4100.8, 18.2777);
/*1506817041 */waypoints[35].type = "stand";
/*1506817041 */waypoints[35].childCount = 3;
/*1506817041 */waypoints[35].children[0] = 34;
/*1506817041 */waypoints[35].children[1] = 36;
/*1506817041 */waypoints[35].children[2] = 37;
/*1506817041 */waypoints[36] = spawnstruct();
/*1506817041 */waypoints[36].origin = (13047, -4002.86, 19.125);
/*1506817041 */waypoints[36].type = "stand";
/*1506817041 */waypoints[36].childCount = 1;
/*1506817041 */waypoints[36].children[0] = 35;
/*1506817041 */waypoints[37] = spawnstruct();
/*1506817041 */waypoints[37].origin = (12973.2, -4408.21, 21.125);
/*1506817041 */waypoints[37].type = "stand";
/*1506817041 */waypoints[37].childCount = 4;
/*1506817041 */waypoints[37].children[0] = 35;
/*1506817041 */waypoints[37].children[1] = 38;
/*1506817041 */waypoints[37].children[2] = 39;
/*1506817041 */waypoints[37].children[3] = 40;
/*1506817041 */waypoints[38] = spawnstruct();
/*1506817041 */waypoints[38].origin = (13387.9, -4426, 18.125);
/*1506817041 */waypoints[38].type = "stand";
/*1506817041 */waypoints[38].childCount = 1;
/*1506817041 */waypoints[38].children[0] = 37;
/*1506817041 */waypoints[39] = spawnstruct();
/*1506817041 */waypoints[39].origin = (12760.7, -4593.73, 18.4622);
/*1506817041 */waypoints[39].type = "stand";
/*1506817041 */waypoints[39].childCount = 4;
/*1506817041 */waypoints[39].children[0] = 37;
/*1506817041 */waypoints[39].children[1] = 40;
/*1506817041 */waypoints[39].children[2] = 41;
/*1506817041 */waypoints[39].children[3] = 53;
/*1506817041 */waypoints[40] = spawnstruct();
/*1506817041 */waypoints[40].origin = (13056, -4691.72, 19.125);
/*1506817041 */waypoints[40].type = "stand";
/*1506817041 */waypoints[40].childCount = 3;
/*1506817041 */waypoints[40].children[0] = 39;
/*1506817041 */waypoints[40].children[1] = 37;
/*1506817041 */waypoints[40].children[2] = 41;
/*1506817041 */waypoints[41] = spawnstruct();
/*1506817041 */waypoints[41].origin = (12708.7, -4752.57, 19.125);
/*1506817041 */waypoints[41].type = "stand";
/*1506817041 */waypoints[41].childCount = 3;
/*1506817041 */waypoints[41].children[0] = 39;
/*1506817041 */waypoints[41].children[1] = 40;
/*1506817041 */waypoints[41].children[2] = 42;
/*1506817041 */waypoints[42] = spawnstruct();
/*1506817041 */waypoints[42].origin = (12459.9, -4868.7, 19.125);
/*1506817041 */waypoints[42].type = "stand";
/*1506817041 */waypoints[42].childCount = 4;
/*1506817041 */waypoints[42].children[0] = 41;
/*1506817041 */waypoints[42].children[1] = 43;
/*1506817041 */waypoints[42].children[2] = 44;
/*1506817041 */waypoints[42].children[3] = 47;
/*1506817041 */waypoints[43] = spawnstruct();
/*1506817041 */waypoints[43].origin = (12173.7, -4651.65, 18.135);
/*1506817041 */waypoints[43].type = "stand";
/*1506817041 */waypoints[43].childCount = 5;
/*1506817041 */waypoints[43].children[0] = 42;
/*1506817041 */waypoints[43].children[1] = 47;
/*1506817041 */waypoints[43].children[2] = 50;
/*1506817041 */waypoints[43].children[3] = 51;
/*1506817041 */waypoints[43].children[4] = 33;
/*1506817041 */waypoints[44] = spawnstruct();
/*1506817041 */waypoints[44].origin = (12135.5, -5146.77, 18.1867);
/*1506817041 */waypoints[44].type = "stand";
/*1506817041 */waypoints[44].childCount = 4;
/*1506817041 */waypoints[44].children[0] = 42;
/*1506817041 */waypoints[44].children[1] = 45;
/*1506817041 */waypoints[44].children[2] = 46;
/*1506817041 */waypoints[44].children[3] = 47;
/*1506817041 */waypoints[45] = spawnstruct();
/*1506817041 */waypoints[45].origin = (12405.6, -5124.77, 19.125);
/*1506817041 */waypoints[45].type = "stand";
/*1506817041 */waypoints[45].childCount = 1;
/*1506817041 */waypoints[45].children[0] = 44;
/*1506817041 */waypoints[46] = spawnstruct();
/*1506817041 */waypoints[46].origin = (11801, -5363.88, 21.125);
/*1506817041 */waypoints[46].type = "stand";
/*1506817041 */waypoints[46].childCount = 4;
/*1506817041 */waypoints[46].children[0] = 44;
/*1506817041 */waypoints[46].children[1] = 48;
/*1506817041 */waypoints[46].children[2] = 49;
/*1506817041 */waypoints[46].children[3] = 58;
/*1506817041 */waypoints[47] = spawnstruct();
/*1506817041 */waypoints[47].origin = (12067.4, -4815.5, 21.125);
/*1506817041 */waypoints[47].type = "stand";
/*1506817041 */waypoints[47].childCount = 4;
/*1506817041 */waypoints[47].children[0] = 44;
/*1506817041 */waypoints[47].children[1] = 43;
/*1506817041 */waypoints[47].children[2] = 42;
/*1506817041 */waypoints[47].children[3] = 48;
/*1506817041 */waypoints[48] = spawnstruct();
/*1506817041 */waypoints[48].origin = (11795.7, -4823.76, 21.125);
/*1506817041 */waypoints[48].type = "stand";
/*1506817041 */waypoints[48].childCount = 2;
/*1506817041 */waypoints[48].children[0] = 47;
/*1506817041 */waypoints[48].children[1] = 46;
/*1506817041 */waypoints[49] = spawnstruct();
/*1506817041 */waypoints[49].origin = (11931, -5362.44, 19.125);
/*1506817041 */waypoints[49].type = "stand";
/*1506817041 */waypoints[49].childCount = 1;
/*1506817041 */waypoints[49].children[0] = 46;
/*1506817041 */waypoints[50] = spawnstruct();
/*1506817041 */waypoints[50].origin = (12006.9, -4490.95, 19.125);
/*1506817041 */waypoints[50].type = "stand";
/*1506817041 */waypoints[50].childCount = 4;
/*1506817041 */waypoints[50].children[0] = 43;
/*1506817041 */waypoints[50].children[1] = 33;
/*1506817041 */waypoints[50].children[2] = 51;
/*1506817041 */waypoints[50].children[3] = 54;
/*1506817041 */waypoints[51] = spawnstruct();
/*1506817041 */waypoints[51].origin = (12282.6, -4462.28, 18.3459);
/*1506817041 */waypoints[51].type = "stand";
/*1506817041 */waypoints[51].childCount = 4;
/*1506817041 */waypoints[51].children[0] = 43;
/*1506817041 */waypoints[51].children[1] = 50;
/*1506817041 */waypoints[51].children[2] = 33;
/*1506817041 */waypoints[51].children[3] = 52;
/*1506817041 */waypoints[52] = spawnstruct();
/*1506817041 */waypoints[52].origin = (12410.3, -4503.31, 52.125);
/*1506817041 */waypoints[52].type = "stand";
/*1506817041 */waypoints[52].childCount = 2;
/*1506817041 */waypoints[52].children[0] = 51;
/*1506817041 */waypoints[52].children[1] = 53;
/*1506817041 */waypoints[53] = spawnstruct();
/*1506817041 */waypoints[53].origin = (12645.1, -4560.62, 52.125);
/*1506817041 */waypoints[53].type = "stand";
/*1506817041 */waypoints[53].childCount = 2;
/*1506817041 */waypoints[53].children[0] = 52;
/*1506817041 */waypoints[53].children[1] = 39;
/*1506817041 */waypoints[54] = spawnstruct();
/*1506817041 */waypoints[54].origin = (11698.6, -4480.1, 96.125);
/*1506817041 */waypoints[54].type = "stand";
/*1506817041 */waypoints[54].childCount = 2;
/*1506817041 */waypoints[54].children[0] = 50;
/*1506817041 */waypoints[54].children[1] = 55;
/*1506817041 */waypoints[55] = spawnstruct();
/*1506817041 */waypoints[55].origin = (11482.1, -4553.47, 126.156);
/*1506817041 */waypoints[55].type = "stand";
/*1506817041 */waypoints[55].childCount = 3;
/*1506817041 */waypoints[55].children[0] = 54;
/*1506817041 */waypoints[55].children[1] = 56;
/*1506817041 */waypoints[55].children[2] = 57;
/*1506817041 */waypoints[56] = spawnstruct();
/*1506817041 */waypoints[56].origin = (11235.2, -4554.78, 211.125);
/*1506817041 */waypoints[56].type = "stand";
/*1506817041 */waypoints[56].childCount = 3;
/*1506817041 */waypoints[56].children[0] = 55;
/*1506817041 */waypoints[56].children[1] = 65;
/*1506817041 */waypoints[56].children[2] = 66;
/*1506817041 */waypoints[57] = spawnstruct();
/*1506817041 */waypoints[57].origin = (11464.7, -4999.42, 97.2314);
/*1506817041 */waypoints[57].type = "stand";
/*1506817041 */waypoints[57].childCount = 3;
/*1506817041 */waypoints[57].children[0] = 55;
/*1506817041 */waypoints[57].children[1] = 58;
/*1506817041 */waypoints[57].children[2] = 72;
/*1506817041 */waypoints[58] = spawnstruct();
/*1506817041 */waypoints[58].origin = (11480.2, -5385.74, 96.8375);
/*1506817041 */waypoints[58].type = "stand";
/*1506817041 */waypoints[58].childCount = 4;
/*1506817041 */waypoints[58].children[0] = 57;
/*1506817041 */waypoints[58].children[1] = 46;
/*1506817041 */waypoints[58].children[2] = 59;
/*1506817041 */waypoints[58].children[3] = 60;
/*1506817041 */waypoints[59] = spawnstruct();
/*1506817041 */waypoints[59].origin = (11491, -5516.33, 97.4038);
/*1506817041 */waypoints[59].type = "stand";
/*1506817041 */waypoints[59].childCount = 1;
/*1506817041 */waypoints[59].children[0] = 58;
/*1506817041 */waypoints[60] = spawnstruct();
/*1506817041 */waypoints[60].origin = (11317.3, -5421.19, 96.8928);
/*1506817041 */waypoints[60].type = "stand";
/*1506817041 */waypoints[60].childCount = 2;
/*1506817041 */waypoints[60].children[0] = 58;
/*1506817041 */waypoints[60].children[1] = 61;
/*1506817041 */waypoints[61] = spawnstruct();
/*1506817041 */waypoints[61].origin = (11165.4, -5248.1, 108.819);
/*1506817041 */waypoints[61].type = "stand";
/*1506817041 */waypoints[61].childCount = 4;
/*1506817041 */waypoints[61].children[0] = 60;
/*1506817041 */waypoints[61].children[1] = 62;
/*1506817041 */waypoints[61].children[2] = 63;
/*1506817041 */waypoints[61].children[3] = 64;
/*1506817041 */waypoints[62] = spawnstruct();
/*1506817041 */waypoints[62].origin = (11006.4, -5354.34, 98.1853);
/*1506817041 */waypoints[62].type = "stand";
/*1506817041 */waypoints[62].childCount = 2;
/*1506817041 */waypoints[62].children[0] = 61;
/*1506817041 */waypoints[62].children[1] = 73;
/*1506817041 */waypoints[63] = spawnstruct();
/*1506817041 */waypoints[63].origin = (11309.6, -5174.76, 95.049);
/*1506817041 */waypoints[63].type = "stand";
/*1506817041 */waypoints[63].childCount = 1;
/*1506817041 */waypoints[63].children[0] = 61;
/*1506817041 */waypoints[64] = spawnstruct();
/*1506817041 */waypoints[64].origin = (11026.9, -5138.06, 99.6359);
/*1506817041 */waypoints[64].type = "stand";
/*1506817041 */waypoints[64].childCount = 1;
/*1506817041 */waypoints[64].children[0] = 61;
/*1506817041 */waypoints[65] = spawnstruct();
/*1506817041 */waypoints[65].origin = (11112.9, -4385.57, 204.125);
/*1506817041 */waypoints[65].type = "stand";
/*1506817041 */waypoints[65].childCount = 2;
/*1506817041 */waypoints[65].children[0] = 56;
/*1506817041 */waypoints[65].children[1] = 66;
/*1506817041 */waypoints[66] = spawnstruct();
/*1506817041 */waypoints[66].origin = (10968.7, -4467.14, 204.125);
/*1506817041 */waypoints[66].type = "stand";
/*1506817041 */waypoints[66].childCount = 3;
/*1506817041 */waypoints[66].children[0] = 56;
/*1506817041 */waypoints[66].children[1] = 65;
/*1506817041 */waypoints[66].children[2] = 67;
/*1506817041 */waypoints[67] = spawnstruct();
/*1506817041 */waypoints[67].origin = (10872.4, -4454.49, 192.125);
/*1506817041 */waypoints[67].type = "stand";
/*1506817041 */waypoints[67].childCount = 3;
/*1506817041 */waypoints[67].children[0] = 66;
/*1506817041 */waypoints[67].children[1] = 68;
/*1506817041 */waypoints[67].children[2] = 129;
/*1506817041 */waypoints[68] = spawnstruct();
/*1506817041 */waypoints[68].origin = (10763.4, -4540.31, 192.125);
/*1506817041 */waypoints[68].type = "stand";
/*1506817041 */waypoints[68].childCount = 2;
/*1506817041 */waypoints[68].children[0] = 67;
/*1506817041 */waypoints[68].children[1] = 69;
/*1506817041 */waypoints[69] = spawnstruct();
/*1506817041 */waypoints[69].origin = (10600.2, -4561.1, 98.1714);
/*1506817041 */waypoints[69].type = "stand";
/*1506817041 */waypoints[69].childCount = 3;
/*1506817041 */waypoints[69].children[0] = 68;
/*1506817041 */waypoints[69].children[1] = 70;
/*1506817041 */waypoints[69].children[2] = 142;
/*1506817041 */waypoints[70] = spawnstruct();
/*1506817041 */waypoints[70].origin = (10883.2, -4892.49, 100.894);
/*1506817041 */waypoints[70].type = "stand";
/*1506817041 */waypoints[70].childCount = 5;
/*1506817041 */waypoints[70].children[0] = 69;
/*1506817041 */waypoints[70].children[1] = 71;
/*1506817041 */waypoints[70].children[2] = 72;
/*1506817041 */waypoints[70].children[3] = 143;
/*1506817041 */waypoints[70].children[4] = 142;
/*1506817041 */waypoints[71] = spawnstruct();
/*1506817041 */waypoints[71].origin = (10986.5, -4832.67, 100.081);
/*1506817041 */waypoints[71].type = "stand";
/*1506817041 */waypoints[71].childCount = 1;
/*1506817041 */waypoints[71].children[0] = 70;
/*1506817041 */waypoints[72] = spawnstruct();
/*1506817041 */waypoints[72].origin = (10993.9, -4999.32, 100.625);
/*1506817041 */waypoints[72].type = "stand";
/*1506817041 */waypoints[72].childCount = 3;
/*1506817041 */waypoints[72].children[0] = 70;
/*1506817041 */waypoints[72].children[1] = 57;
/*1506817041 */waypoints[72].children[2] = 143;
/*1506817041 */waypoints[73] = spawnstruct();
/*1506817041 */waypoints[73].origin = (10867.4, -5376.29, 100.361);
/*1506817041 */waypoints[73].type = "stand";
/*1506817041 */waypoints[73].childCount = 3;
/*1506817041 */waypoints[73].children[0] = 62;
/*1506817041 */waypoints[73].children[1] = 74;
/*1506817041 */waypoints[73].children[2] = 143;
/*1506817041 */waypoints[74] = spawnstruct();
/*1506817041 */waypoints[74].origin = (10678.2, -5499.56, 99.2189);
/*1506817041 */waypoints[74].type = "stand";
/*1506817041 */waypoints[74].childCount = 4;
/*1506817041 */waypoints[74].children[0] = 73;
/*1506817041 */waypoints[74].children[1] = 75;
/*1506817041 */waypoints[74].children[2] = 76;
/*1506817041 */waypoints[74].children[3] = 142;
/*1506817041 */waypoints[75] = spawnstruct();
/*1506817041 */waypoints[75].origin = (10542.5, -5638.4, 96.6548);
/*1506817041 */waypoints[75].type = "stand";
/*1506817041 */waypoints[75].childCount = 3;
/*1506817041 */waypoints[75].children[0] = 74;
/*1506817041 */waypoints[75].children[1] = 76;
/*1506817041 */waypoints[75].children[2] = 77;
/*1506817041 */waypoints[76] = spawnstruct();
/*1506817041 */waypoints[76].origin = (10706, -5699.47, 99.6741);
/*1506817041 */waypoints[76].type = "stand";
/*1506817041 */waypoints[76].childCount = 2;
/*1506817041 */waypoints[76].children[0] = 75;
/*1506817041 */waypoints[76].children[1] = 74;
/*1506817041 */waypoints[77] = spawnstruct();
/*1506817041 */waypoints[77].origin = (10282.4, -5616.48, 194.125);
/*1506817041 */waypoints[77].type = "stand";
/*1506817041 */waypoints[77].childCount = 3;
/*1506817041 */waypoints[77].children[0] = 75;
/*1506817041 */waypoints[77].children[1] = 78;
/*1506817041 */waypoints[77].children[2] = 79;
/*1506817041 */waypoints[78] = spawnstruct();
/*1506817041 */waypoints[78].origin = (10145, -5676.78, 194.125);
/*1506817041 */waypoints[78].type = "stand";
/*1506817041 */waypoints[78].childCount = 1;
/*1506817041 */waypoints[78].children[0] = 77;
/*1506817041 */waypoints[79] = spawnstruct();
/*1506817041 */waypoints[79].origin = (9974.94, -5549.42, 193.125);
/*1506817041 */waypoints[79].type = "stand";
/*1506817041 */waypoints[79].childCount = 3;
/*1506817041 */waypoints[79].children[0] = 77;
/*1506817041 */waypoints[79].children[1] = 80;
/*1506817041 */waypoints[79].children[2] = 128;
/*1506817041 */waypoints[80] = spawnstruct();
/*1506817041 */waypoints[80].origin = (9865.28, -5649.96, 194.125);
/*1506817041 */waypoints[80].type = "stand";
/*1506817041 */waypoints[80].childCount = 2;
/*1506817041 */waypoints[80].children[0] = 79;
/*1506817041 */waypoints[80].children[1] = 81;
/*1506817041 */waypoints[81] = spawnstruct();
/*1506817041 */waypoints[81].origin = (9497.68, -5603.95, 193.125);
/*1506817041 */waypoints[81].type = "stand";
/*1506817041 */waypoints[81].childCount = 3;
/*1506817041 */waypoints[81].children[0] = 80;
/*1506817041 */waypoints[81].children[1] = 82;
/*1506817041 */waypoints[81].children[2] = 83;
/*1506817041 */waypoints[82] = spawnstruct();
/*1506817041 */waypoints[82].origin = (9323.29, -5643.55, 193.125);
/*1506817041 */waypoints[82].type = "stand";
/*1506817041 */waypoints[82].childCount = 3;
/*1506817041 */waypoints[82].children[0] = 81;
/*1506817041 */waypoints[82].children[1] = 83;
/*1506817041 */waypoints[82].children[2] = 84;
/*1506817041 */waypoints[83] = spawnstruct();
/*1506817041 */waypoints[83].origin = (9396.08, -5497.39, 193.125);
/*1506817041 */waypoints[83].type = "stand";
/*1506817041 */waypoints[83].childCount = 5;
/*1506817041 */waypoints[83].children[0] = 82;
/*1506817041 */waypoints[83].children[1] = 81;
/*1506817041 */waypoints[83].children[2] = 91;
/*1506817041 */waypoints[83].children[3] = 92;
/*1506817041 */waypoints[83].children[4] = 93;
/*1506817041 */waypoints[84] = spawnstruct();
/*1506817041 */waypoints[84].origin = (9150.98, -5653.08, 324.125);
/*1506817041 */waypoints[84].type = "stand";
/*1506817041 */waypoints[84].childCount = 3;
/*1506817041 */waypoints[84].children[0] = 82;
/*1506817041 */waypoints[84].children[1] = 85;
/*1506817041 */waypoints[84].children[2] = 87;
/*1506817041 */waypoints[85] = spawnstruct();
/*1506817041 */waypoints[85].origin = (8810.36, -5689.73, 320.125);
/*1506817041 */waypoints[85].type = "stand";
/*1506817041 */waypoints[85].childCount = 3;
/*1506817041 */waypoints[85].children[0] = 84;
/*1506817041 */waypoints[85].children[1] = 86;
/*1506817041 */waypoints[85].children[2] = 88;
/*1506817041 */waypoints[86] = spawnstruct();
/*1506817041 */waypoints[86].origin = (8811.01, -5301.47, 321.125);
/*1506817041 */waypoints[86].type = "stand";
/*1506817041 */waypoints[86].childCount = 4;
/*1506817041 */waypoints[86].children[0] = 85;
/*1506817041 */waypoints[86].children[1] = 87;
/*1506817041 */waypoints[86].children[2] = 89;
/*1506817041 */waypoints[86].children[3] = 90;
/*1506817041 */waypoints[87] = spawnstruct();
/*1506817041 */waypoints[87].origin = (9078.59, -5394.84, 320.125);
/*1506817041 */waypoints[87].type = "stand";
/*1506817041 */waypoints[87].childCount = 2;
/*1506817041 */waypoints[87].children[0] = 86;
/*1506817041 */waypoints[87].children[1] = 84;
/*1506817041 */waypoints[88] = spawnstruct();
/*1506817041 */waypoints[88].origin = (8501.94, -5653.46, 320.125);
/*1506817041 */waypoints[88].type = "stand";
/*1506817041 */waypoints[88].childCount = 2;
/*1506817041 */waypoints[88].children[0] = 85;
/*1506817041 */waypoints[88].children[1] = 89;
/*1506817041 */waypoints[89] = spawnstruct();
/*1506817041 */waypoints[89].origin = (8554.51, -5366.66, 320.125);
/*1506817041 */waypoints[89].type = "stand";
/*1506817041 */waypoints[89].childCount = 2;
/*1506817041 */waypoints[89].children[0] = 88;
/*1506817041 */waypoints[89].children[1] = 86;
/*1506817041 */waypoints[90] = spawnstruct();
/*1506817041 */waypoints[90].origin = (8821.93, -5035.48, 190.435);
/*1506817041 */waypoints[90].type = "stand";
/*1506817041 */waypoints[90].childCount = 4;
/*1506817041 */waypoints[90].children[0] = 86;
/*1506817041 */waypoints[90].children[1] = 92;
/*1506817041 */waypoints[90].children[2] = 94;
/*1506817041 */waypoints[90].children[3] = 97;
/*1506817041 */waypoints[91] = spawnstruct();
/*1506817041 */waypoints[91].origin = (9214.76, -5459.12, 193.125);
/*1506817041 */waypoints[91].type = "stand";
/*1506817041 */waypoints[91].childCount = 1;
/*1506817041 */waypoints[91].children[0] = 83;
/*1506817041 */waypoints[92] = spawnstruct();
/*1506817041 */waypoints[92].origin = (9224.8, -5249.02, 193.125);
/*1506817041 */waypoints[92].type = "stand";
/*1506817041 */waypoints[92].childCount = 3;
/*1506817041 */waypoints[92].children[0] = 83;
/*1506817041 */waypoints[92].children[1] = 93;
/*1506817041 */waypoints[92].children[2] = 90;
/*1506817041 */waypoints[93] = spawnstruct();
/*1506817041 */waypoints[93].origin = (9393.36, -5171.96, 195.125);
/*1506817041 */waypoints[93].type = "stand";
/*1506817041 */waypoints[93].childCount = 3;
/*1506817041 */waypoints[93].children[0] = 92;
/*1506817041 */waypoints[93].children[1] = 83;
/*1506817041 */waypoints[93].children[2] = 96;
/*1506817041 */waypoints[94] = spawnstruct();
/*1506817041 */waypoints[94].origin = (8841.39, -4784.67, 195.124);
/*1506817041 */waypoints[94].type = "stand";
/*1506817041 */waypoints[94].childCount = 4;
/*1506817041 */waypoints[94].children[0] = 95;
/*1506817041 */waypoints[94].children[1] = 90;
/*1506817041 */waypoints[94].children[2] = 97;
/*1506817041 */waypoints[94].children[3] = 98;
/*1506817041 */waypoints[95] = spawnstruct();
/*1506817041 */waypoints[95].origin = (9164.99, -4623.59, 193.125);
/*1506817041 */waypoints[95].type = "stand";
/*1506817041 */waypoints[95].childCount = 3;
/*1506817041 */waypoints[95].children[0] = 94;
/*1506817041 */waypoints[95].children[1] = 96;
/*1506817041 */waypoints[95].children[2] = 104;
/*1506817041 */waypoints[96] = spawnstruct();
/*1506817041 */waypoints[96].origin = (9387.46, -4740.8, 195.125);
/*1506817041 */waypoints[96].type = "stand";
/*1506817041 */waypoints[96].childCount = 3;
/*1506817041 */waypoints[96].children[0] = 95;
/*1506817041 */waypoints[96].children[1] = 93;
/*1506817041 */waypoints[96].children[2] = 124;
/*1506817041 */waypoints[97] = spawnstruct();
/*1506817041 */waypoints[97].origin = (8486.82, -4853.39, 199.084);
/*1506817041 */waypoints[97].type = "stand";
/*1506817041 */waypoints[97].childCount = 2;
/*1506817041 */waypoints[97].children[0] = 90;
/*1506817041 */waypoints[97].children[1] = 94;
/*1506817041 */waypoints[98] = spawnstruct();
/*1506817041 */waypoints[98].origin = (8533.82, -4507.13, 193.125);
/*1506817041 */waypoints[98].type = "stand";
/*1506817041 */waypoints[98].childCount = 4;
/*1506817041 */waypoints[98].children[0] = 94;
/*1506817041 */waypoints[98].children[1] = 99;
/*1506817041 */waypoints[98].children[2] = 100;
/*1506817041 */waypoints[98].children[3] = 103;
/*1506817041 */waypoints[99] = spawnstruct();
/*1506817041 */waypoints[99].origin = (8019.03, -4497.36, 192.125);
/*1506817041 */waypoints[99].type = "stand";
/*1506817041 */waypoints[99].childCount = 1;
/*1506817041 */waypoints[99].children[0] = 98;
/*1506817041 */waypoints[100] = spawnstruct();
/*1506817041 */waypoints[100].origin = (8788.54, -4203.59, 192.137);
/*1506817041 */waypoints[100].type = "stand";
/*1506817041 */waypoints[100].childCount = 4;
/*1506817041 */waypoints[100].children[0] = 98;
/*1506817041 */waypoints[100].children[1] = 101;
/*1506817041 */waypoints[100].children[2] = 104;
/*1506817041 */waypoints[100].children[3] = 107;
/*1506817041 */waypoints[101] = spawnstruct();
/*1506817041 */waypoints[101].origin = (8574.21, -3925.96, 192.125);
/*1506817041 */waypoints[101].type = "stand";
/*1506817041 */waypoints[101].childCount = 2;
/*1506817041 */waypoints[101].children[0] = 100;
/*1506817041 */waypoints[101].children[1] = 102;
/*1506817041 */waypoints[102] = spawnstruct();
/*1506817041 */waypoints[102].origin = (8412.92, -4060.27, 193.125);
/*1506817041 */waypoints[102].type = "stand";
/*1506817041 */waypoints[102].childCount = 2;
/*1506817041 */waypoints[102].children[0] = 101;
/*1506817041 */waypoints[102].children[1] = 103;
/*1506817041 */waypoints[103] = spawnstruct();
/*1506817041 */waypoints[103].origin = (8437.41, -4319.13, 195.125);
/*1506817041 */waypoints[103].type = "stand";
/*1506817041 */waypoints[103].childCount = 2;
/*1506817041 */waypoints[103].children[0] = 102;
/*1506817041 */waypoints[103].children[1] = 98;
/*1506817041 */waypoints[104] = spawnstruct();
/*1506817041 */waypoints[104].origin = (9173.79, -4299.19, 192.125);
/*1506817041 */waypoints[104].type = "stand";
/*1506817041 */waypoints[104].childCount = 3;
/*1506817041 */waypoints[104].children[0] = 100;
/*1506817041 */waypoints[104].children[1] = 95;
/*1506817041 */waypoints[104].children[2] = 106;
/*1506817041 */waypoints[105] = spawnstruct();
/*1506817041 */waypoints[105].origin = (9671.23, -4239.72, 192.125);
/*1506817041 */waypoints[105].type = "stand";
/*1506817041 */waypoints[105].childCount = 3;
/*1506817041 */waypoints[105].children[0] = 24;
/*1506817041 */waypoints[105].children[1] = 113;
/*1506817041 */waypoints[105].children[2] = 106;
/*1506817041 */waypoints[106] = spawnstruct();
/*1506817041 */waypoints[106].origin = (9397.84, -4076.85, 193.125);
/*1506817041 */waypoints[106].type = "stand";
/*1506817041 */waypoints[106].childCount = 5;
/*1506817041 */waypoints[106].children[0] = 24;
/*1506817041 */waypoints[106].children[1] = 107;
/*1506817041 */waypoints[106].children[2] = 108;
/*1506817041 */waypoints[106].children[3] = 104;
/*1506817041 */waypoints[106].children[4] = 105;
/*1506817041 */waypoints[107] = spawnstruct();
/*1506817041 */waypoints[107].origin = (8941.5, -4060.95, 192.125);
/*1506817041 */waypoints[107].type = "stand";
/*1506817041 */waypoints[107].childCount = 3;
/*1506817041 */waypoints[107].children[0] = 100;
/*1506817041 */waypoints[107].children[1] = 106;
/*1506817041 */waypoints[107].children[2] = 109;
/*1506817041 */waypoints[108] = spawnstruct();
/*1506817041 */waypoints[108].origin = (9256.99, -3805.36, 193.125);
/*1506817041 */waypoints[108].type = "stand";
/*1506817041 */waypoints[108].childCount = 3;
/*1506817041 */waypoints[108].children[0] = 106;
/*1506817041 */waypoints[108].children[1] = 109;
/*1506817041 */waypoints[108].children[2] = 110;
/*1506817041 */waypoints[109] = spawnstruct();
/*1506817041 */waypoints[109].origin = (9041.57, -3845.62, 192.125);
/*1506817041 */waypoints[109].type = "stand";
/*1506817041 */waypoints[109].childCount = 2;
/*1506817041 */waypoints[109].children[0] = 108;
/*1506817041 */waypoints[109].children[1] = 107;
/*1506817041 */waypoints[110] = spawnstruct();
/*1506817041 */waypoints[110].origin = (9293.78, -3494.63, 192.125);
/*1506817041 */waypoints[110].type = "stand";
/*1506817041 */waypoints[110].childCount = 3;
/*1506817041 */waypoints[110].children[0] = 108;
/*1506817041 */waypoints[110].children[1] = 111;
/*1506817041 */waypoints[110].children[2] = 0;
/*1506817041 */waypoints[111] = spawnstruct();
/*1506817041 */waypoints[111].origin = (9264.63, -3356.25, 192.125);
/*1506817041 */waypoints[111].type = "stand";
/*1506817041 */waypoints[111].childCount = 1;
/*1506817041 */waypoints[111].children[0] = 110;
/*1506817041 */waypoints[112] = spawnstruct();
/*1506817041 */waypoints[112].origin = (9531.85, -3476.95, 192.125);
/*1506817041 */waypoints[112].type = "stand";
/*1506817041 */waypoints[112].childCount = 1;
/*1506817041 */waypoints[112].children[0] = 0;
/*1506817041 */waypoints[113] = spawnstruct();
/*1506817041 */waypoints[113].origin = (10061.1, -4247.45, 191.306);
/*1506817041 */waypoints[113].type = "stand";
/*1506817041 */waypoints[113].childCount = 4;
/*1506817041 */waypoints[113].children[0] = 105;
/*1506817041 */waypoints[113].children[1] = 114;
/*1506817041 */waypoints[113].children[2] = 118;
/*1506817041 */waypoints[113].children[3] = 116;
/*1506817041 */waypoints[114] = spawnstruct();
/*1506817041 */waypoints[114].origin = (10066.5, -4028, 193.125);
/*1506817041 */waypoints[114].type = "stand";
/*1506817041 */waypoints[114].childCount = 2;
/*1506817041 */waypoints[114].children[0] = 113;
/*1506817041 */waypoints[114].children[1] = 115;
/*1506817041 */waypoints[115] = spawnstruct();
/*1506817041 */waypoints[115].origin = (10215.3, -4057.35, 193.125);
/*1506817041 */waypoints[115].type = "stand";
/*1506817041 */waypoints[115].childCount = 3;
/*1506817041 */waypoints[115].children[0] = 114;
/*1506817041 */waypoints[115].children[1] = 116;
/*1506817041 */waypoints[115].children[2] = 129;
/*1506817041 */waypoints[116] = spawnstruct();
/*1506817041 */waypoints[116].origin = (10207.7, -4272.09, 192.115);
/*1506817041 */waypoints[116].type = "stand";
/*1506817041 */waypoints[116].childCount = 3;
/*1506817041 */waypoints[116].children[0] = 115;
/*1506817041 */waypoints[116].children[1] = 117;
/*1506817041 */waypoints[116].children[2] = 113;
/*1506817041 */waypoints[117] = spawnstruct();
/*1506817041 */waypoints[117].origin = (10260.5, -4512.41, 190.961);
/*1506817041 */waypoints[117].type = "stand";
/*1506817041 */waypoints[117].childCount = 3;
/*1506817041 */waypoints[117].children[0] = 116;
/*1506817041 */waypoints[117].children[1] = 118;
/*1506817041 */waypoints[117].children[2] = 119;
/*1506817041 */waypoints[118] = spawnstruct();
/*1506817041 */waypoints[118].origin = (10050, -4466.06, 190.052);
/*1506817041 */waypoints[118].type = "stand";
/*1506817041 */waypoints[118].childCount = 2;
/*1506817041 */waypoints[118].children[0] = 117;
/*1506817041 */waypoints[118].children[1] = 113;
/*1506817041 */waypoints[119] = spawnstruct();
/*1506817041 */waypoints[119].origin = (10244.6, -4727.69, 190.309);
/*1506817041 */waypoints[119].type = "stand";
/*1506817041 */waypoints[119].childCount = 3;
/*1506817041 */waypoints[119].children[0] = 117;
/*1506817041 */waypoints[119].children[1] = 120;
/*1506817041 */waypoints[119].children[2] = 124;
/*1506817041 */waypoints[120] = spawnstruct();
/*1506817041 */waypoints[120].origin = (10262.3, -4895.25, 192.125);
/*1506817041 */waypoints[120].type = "stand";
/*1506817041 */waypoints[120].childCount = 3;
/*1506817041 */waypoints[120].children[0] = 119;
/*1506817041 */waypoints[120].children[1] = 121;
/*1506817041 */waypoints[120].children[2] = 123;
/*1506817041 */waypoints[121] = spawnstruct();
/*1506817041 */waypoints[121].origin = (10237.2, -5151.75, 192.125);
/*1506817041 */waypoints[121].type = "stand";
/*1506817041 */waypoints[121].childCount = 2;
/*1506817041 */waypoints[121].children[0] = 120;
/*1506817041 */waypoints[121].children[1] = 122;
/*1506817041 */waypoints[122] = spawnstruct();
/*1506817041 */waypoints[122].origin = (9893.58, -5132.98, 192.125);
/*1506817041 */waypoints[122].type = "stand";
/*1506817041 */waypoints[122].childCount = 4;
/*1506817041 */waypoints[122].children[0] = 121;
/*1506817041 */waypoints[122].children[1] = 123;
/*1506817041 */waypoints[122].children[2] = 126;
/*1506817041 */waypoints[122].children[3] = 128;
/*1506817041 */waypoints[123] = spawnstruct();
/*1506817041 */waypoints[123].origin = (9904.83, -4886.59, 192.125);
/*1506817041 */waypoints[123].type = "stand";
/*1506817041 */waypoints[123].childCount = 3;
/*1506817041 */waypoints[123].children[0] = 122;
/*1506817041 */waypoints[123].children[1] = 120;
/*1506817041 */waypoints[123].children[2] = 126;
/*1506817041 */waypoints[124] = spawnstruct();
/*1506817041 */waypoints[124].origin = (9569.04, -4714.47, 192.125);
/*1506817041 */waypoints[124].type = "stand";
/*1506817041 */waypoints[124].childCount = 4;
/*1506817041 */waypoints[124].children[0] = 119;
/*1506817041 */waypoints[124].children[1] = 96;
/*1506817041 */waypoints[124].children[2] = 125;
/*1506817041 */waypoints[124].children[3] = 126;
/*1506817041 */waypoints[125] = spawnstruct();
/*1506817041 */waypoints[125].origin = (9526.24, -4838.69, 192.125);
/*1506817041 */waypoints[125].type = "stand";
/*1506817041 */waypoints[125].childCount = 1;
/*1506817041 */waypoints[125].children[0] = 124;
/*1506817041 */waypoints[126] = spawnstruct();
/*1506817041 */waypoints[126].origin = (9747.77, -4951.34, 192.125);
/*1506817041 */waypoints[126].type = "stand";
/*1506817041 */waypoints[126].childCount = 4;
/*1506817041 */waypoints[126].children[0] = 124;
/*1506817041 */waypoints[126].children[1] = 123;
/*1506817041 */waypoints[126].children[2] = 127;
/*1506817041 */waypoints[126].children[3] = 122;
/*1506817041 */waypoints[127] = spawnstruct();
/*1506817041 */waypoints[127].origin = (9553.63, -5123.39, 192.125);
/*1506817041 */waypoints[127].type = "stand";
/*1506817041 */waypoints[127].childCount = 1;
/*1506817041 */waypoints[127].children[0] = 126;
/*1506817041 */waypoints[128] = spawnstruct();
/*1506817041 */waypoints[128].origin = (9969.54, -5345.23, 192.125);
/*1506817041 */waypoints[128].type = "stand";
/*1506817041 */waypoints[128].childCount = 2;
/*1506817041 */waypoints[128].children[0] = 122;
/*1506817041 */waypoints[128].children[1] = 79;
/*1506817041 */waypoints[129] = spawnstruct();
/*1506817041 */waypoints[129].origin = (10896.6, -4027.08, 192.125);
/*1506817041 */waypoints[129].type = "stand";
/*1506817041 */waypoints[129].childCount = 2;
/*1506817041 */waypoints[129].children[0] = 115;
/*1506817041 */waypoints[129].children[1] = 67;
/*1506817041 */waypoints[130] = spawnstruct();
/*1506817041 */waypoints[130].origin = (12017.5, -3556.96, -112.174);
/*1506817041 */waypoints[130].type = "stand";
/*1506817041 */waypoints[130].childCount = 2;
/*1506817041 */waypoints[130].children[0] = 28;
/*1506817041 */waypoints[130].children[1] = 131;
/*1506817041 */waypoints[131] = spawnstruct();
/*1506817041 */waypoints[131].origin = (11798.7, -3511.33, -113.875);
/*1506817041 */waypoints[131].type = "stand";
/*1506817041 */waypoints[131].childCount = 4;
/*1506817041 */waypoints[131].children[0] = 130;
/*1506817041 */waypoints[131].children[1] = 134;
/*1506817041 */waypoints[131].children[2] = 135;
/*1506817041 */waypoints[131].children[3] = 139;
/*1506817041 */waypoints[132] = spawnstruct();
/*1506817041 */waypoints[132].origin = (10921.8, -3652.08, 8.80361);
/*1506817041 */waypoints[132].type = "stand";
/*1506817041 */waypoints[132].childCount = 3;
/*1506817041 */waypoints[132].children[0] = 25;
/*1506817041 */waypoints[132].children[1] = 19;
/*1506817041 */waypoints[132].children[2] = 144;
/*1506817041 */waypoints[133] = spawnstruct();
/*1506817041 */waypoints[133].origin = (11476.4, -3659.44, -113.875);
/*1506817041 */waypoints[133].type = "stand";
/*1506817041 */waypoints[133].childCount = 3;
/*1506817041 */waypoints[133].children[0] = 27;
/*1506817041 */waypoints[133].children[1] = 135;
/*1506817041 */waypoints[133].children[2] = 144;
/*1506817041 */waypoints[134] = spawnstruct();
/*1506817041 */waypoints[134].origin = (11813, -3651.89, -113.875);
/*1506817041 */waypoints[134].type = "stand";
/*1506817041 */waypoints[134].childCount = 2;
/*1506817041 */waypoints[134].children[0] = 131;
/*1506817041 */waypoints[134].children[1] = 135;
/*1506817041 */waypoints[135] = spawnstruct();
/*1506817041 */waypoints[135].origin = (11675.3, -3642.9, -113.875);
/*1506817041 */waypoints[135].type = "stand";
/*1506817041 */waypoints[135].childCount = 3;
/*1506817041 */waypoints[135].children[0] = 131;
/*1506817041 */waypoints[135].children[1] = 133;
/*1506817041 */waypoints[135].children[2] = 134;
/*1506817041 */waypoints[136] = spawnstruct();
/*1506817041 */waypoints[136].origin = (10179.7, -3437.49, 19.4289);
/*1506817041 */waypoints[136].type = "stand";
/*1506817041 */waypoints[136].childCount = 2;
/*1506817041 */waypoints[136].children[0] = 20;
/*1506817041 */waypoints[136].children[1] = 137;
/*1506817041 */waypoints[137] = spawnstruct();
/*1506817041 */waypoints[137].origin = (9975.14, -3583.56, 31.6946);
/*1506817041 */waypoints[137].type = "stand";
/*1506817041 */waypoints[137].childCount = 3;
/*1506817041 */waypoints[137].children[0] = 136;
/*1506817041 */waypoints[137].children[1] = 138;
/*1506817041 */waypoints[137].children[2] = 21;
/*1506817041 */waypoints[138] = spawnstruct();
/*1506817041 */waypoints[138].origin = (9963.42, -3874.17, 54.125);
/*1506817041 */waypoints[138].type = "stand";
/*1506817041 */waypoints[138].childCount = 2;
/*1506817041 */waypoints[138].children[0] = 137;
/*1506817041 */waypoints[138].children[1] = 22;
/*1506817041 */waypoints[139] = spawnstruct();
/*1506817041 */waypoints[139].origin = (12033.6, -3438.26, -103.45);
/*1506817041 */waypoints[139].type = "stand";
/*1506817041 */waypoints[139].childCount = 2;
/*1506817041 */waypoints[139].children[0] = 140;
/*1506817041 */waypoints[139].children[1] = 131;
/*1506817041 */waypoints[140] = spawnstruct();
/*1506817041 */waypoints[140].origin = (12187.7, -3458.61, -108.841);
/*1506817041 */waypoints[140].type = "stand";
/*1506817041 */waypoints[140].childCount = 2;
/*1506817041 */waypoints[140].children[0] = 139;
/*1506817041 */waypoints[140].children[1] = 29;
/*1506817041 */waypoints[141] = spawnstruct();
/*1506817041 */waypoints[141].origin = (10743, -3063.22, 18.125);
/*1506817041 */waypoints[141].type = "stand";
/*1506817041 */waypoints[141].childCount = 2;
/*1506817041 */waypoints[141].children[0] = 16;
/*1506817041 */waypoints[141].children[1] = 18;
/*1506817041 */waypoints[142] = spawnstruct();
/*1506817041 */waypoints[142].origin = (10603.1, -5082.81, 98.3336);
/*1506817041 */waypoints[142].type = "stand";
/*1506817041 */waypoints[142].childCount = 4;
/*1506817041 */waypoints[142].children[0] = 74;
/*1506817041 */waypoints[142].children[1] = 143;
/*1506817041 */waypoints[142].children[2] = 69;
/*1506817041 */waypoints[142].children[3] = 70;
/*1506817041 */waypoints[143] = spawnstruct();
/*1506817041 */waypoints[143].origin = (10882.9, -5028.97, 101.318);
/*1506817041 */waypoints[143].type = "stand";
/*1506817041 */waypoints[143].childCount = 4;
/*1506817041 */waypoints[143].children[0] = 72;
/*1506817041 */waypoints[143].children[1] = 70;
/*1506817041 */waypoints[143].children[2] = 73;
/*1506817041 */waypoints[143].children[3] = 142;
/*1506817041 */waypoints[144] = spawnstruct();
/*1506817041 */waypoints[144].origin = (11226.7, -3648.92, -113.875);
/*1506817041 */waypoints[144].type = "stand";
/*1506817041 */waypoints[144].childCount = 2;
/*1506817041 */waypoints[144].children[0] = 133;
/*1506817041 */waypoints[144].children[1] = 132;
/*1506817041 */return waypoints;
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,982 +0,0 @@
Dome()
{
/*1608845813 */waypoints = [];
/*1608845813 */waypoints[0] = spawnstruct();
/*1608845813 */waypoints[0].origin = (926.252, 1164.99, 395.125);
/*1608845813 */waypoints[0].type = "stand";
/*1608845813 */waypoints[0].childCount = 2;
/*1608845813 */waypoints[0].children[0] = 1;
/*1608845813 */waypoints[0].children[1] = 131;
/*1608845813 */waypoints[1] = spawnstruct();
/*1608845813 */waypoints[1].origin = (924.592, 1464.43, 392.125);
/*1608845813 */waypoints[1].type = "stand";
/*1608845813 */waypoints[1].childCount = 2;
/*1608845813 */waypoints[1].children[0] = 0;
/*1608845813 */waypoints[1].children[1] = 2;
/*1608845813 */waypoints[2] = spawnstruct();
/*1608845813 */waypoints[2].origin = (1018.9, 1527.51, 392.125);
/*1608845813 */waypoints[2].type = "stand";
/*1608845813 */waypoints[2].childCount = 3;
/*1608845813 */waypoints[2].children[0] = 1;
/*1608845813 */waypoints[2].children[1] = 3;
/*1608845813 */waypoints[2].children[2] = 4;
/*1608845813 */waypoints[3] = spawnstruct();
/*1608845813 */waypoints[3].origin = (1015.72, 1767.82, 392.125);
/*1608845813 */waypoints[3].type = "stand";
/*1608845813 */waypoints[3].childCount = 1;
/*1608845813 */waypoints[3].children[0] = 2;
/*1608845813 */waypoints[4] = spawnstruct();
/*1608845813 */waypoints[4].origin = (1276.17, 1528.78, 392.125);
/*1608845813 */waypoints[4].type = "stand";
/*1608845813 */waypoints[4].childCount = 2;
/*1608845813 */waypoints[4].children[0] = 2;
/*1608845813 */waypoints[4].children[1] = 5;
/*1608845813 */waypoints[5] = spawnstruct();
/*1608845813 */waypoints[5].origin = (1273.37, 1254.4, 392.125);
/*1608845813 */waypoints[5].type = "stand";
/*1608845813 */waypoints[5].childCount = 3;
/*1608845813 */waypoints[5].children[0] = 4;
/*1608845813 */waypoints[5].children[1] = 6;
/*1608845813 */waypoints[5].children[2] = 134;
/*1608845813 */waypoints[6] = spawnstruct();
/*1608845813 */waypoints[6].origin = (1188.9, 1168.97, 392.125);
/*1608845813 */waypoints[6].type = "stand";
/*1608845813 */waypoints[6].childCount = 3;
/*1608845813 */waypoints[6].children[0] = 5;
/*1608845813 */waypoints[6].children[1] = 131;
/*1608845813 */waypoints[6].children[2] = 134;
/*1608845813 */waypoints[7] = spawnstruct();
/*1608845813 */waypoints[7].origin = (811.66, 1596.18, 226.125);
/*1608845813 */waypoints[7].type = "stand";
/*1608845813 */waypoints[7].childCount = 5;
/*1608845813 */waypoints[7].children[0] = 70;
/*1608845813 */waypoints[7].children[1] = 72;
/*1608845813 */waypoints[7].children[2] = 113;
/*1608845813 */waypoints[7].children[3] = 114;
/*1608845813 */waypoints[7].children[4] = 132;
/*1608845813 */waypoints[8] = spawnstruct();
/*1608845813 */waypoints[8].origin = (915.58, 1830.17, 221.467);
/*1608845813 */waypoints[8].type = "stand";
/*1608845813 */waypoints[8].childCount = 1;
/*1608845813 */waypoints[8].children[0] = 9;
/*1608845813 */waypoints[9] = spawnstruct();
/*1608845813 */waypoints[9].origin = (996.443, 2141.69, 226.125);
/*1608845813 */waypoints[9].type = "stand";
/*1608845813 */waypoints[9].childCount = 5;
/*1608845813 */waypoints[9].children[0] = 10;
/*1608845813 */waypoints[9].children[1] = 11;
/*1608845813 */waypoints[9].children[2] = 12;
/*1608845813 */waypoints[9].children[3] = 8;
/*1608845813 */waypoints[9].children[4] = 132;
/*1608845813 */waypoints[10] = spawnstruct();
/*1608845813 */waypoints[10].origin = (970.504, 2299.73, 226.016);
/*1608845813 */waypoints[10].type = "stand";
/*1608845813 */waypoints[10].childCount = 1;
/*1608845813 */waypoints[10].children[0] = 9;
/*1608845813 */waypoints[11] = spawnstruct();
/*1608845813 */waypoints[11].origin = (1052.08, 2296.65, 226.125);
/*1608845813 */waypoints[11].type = "stand";
/*1608845813 */waypoints[11].childCount = 1;
/*1608845813 */waypoints[11].children[0] = 9;
/*1608845813 */waypoints[12] = spawnstruct();
/*1608845813 */waypoints[12].origin = (820.473, 2149.51, 226.752);
/*1608845813 */waypoints[12].type = "stand";
/*1608845813 */waypoints[12].childCount = 5;
/*1608845813 */waypoints[12].children[0] = 9;
/*1608845813 */waypoints[12].children[1] = 110;
/*1608845813 */waypoints[12].children[2] = 111;
/*1608845813 */waypoints[12].children[3] = 119;
/*1608845813 */waypoints[12].children[4] = 112;
/*1608845813 */waypoints[13] = spawnstruct();
/*1608845813 */waypoints[13].origin = (203.375, 1561.45, 226.125);
/*1608845813 */waypoints[13].type = "stand";
/*1608845813 */waypoints[13].childCount = 4;
/*1608845813 */waypoints[13].children[0] = 14;
/*1608845813 */waypoints[13].children[1] = 74;
/*1608845813 */waypoints[13].children[2] = 75;
/*1608845813 */waypoints[13].children[3] = 71;
/*1608845813 */waypoints[14] = spawnstruct();
/*1608845813 */waypoints[14].origin = (196.612, 1658.35, 226.125);
/*1608845813 */waypoints[14].type = "stand";
/*1608845813 */waypoints[14].childCount = 3;
/*1608845813 */waypoints[14].children[0] = 13;
/*1608845813 */waypoints[14].children[1] = 16;
/*1608845813 */waypoints[14].children[2] = 124;
/*1608845813 */waypoints[15] = spawnstruct();
/*1608845813 */waypoints[15].origin = (304.594, 1783.22, 226.125);
/*1608845813 */waypoints[15].type = "stand";
/*1608845813 */waypoints[15].childCount = 4;
/*1608845813 */waypoints[15].children[0] = 115;
/*1608845813 */waypoints[15].children[1] = 116;
/*1608845813 */waypoints[15].children[2] = 120;
/*1608845813 */waypoints[15].children[3] = 124;
/*1608845813 */waypoints[16] = spawnstruct();
/*1608845813 */waypoints[16].origin = (-139.69, 1659.78, 226.125);
/*1608845813 */waypoints[16].type = "stand";
/*1608845813 */waypoints[16].childCount = 3;
/*1608845813 */waypoints[16].children[0] = 17;
/*1608845813 */waypoints[16].children[1] = 18;
/*1608845813 */waypoints[16].children[2] = 14;
/*1608845813 */waypoints[17] = spawnstruct();
/*1608845813 */waypoints[17].origin = (-149.075, 1564.27, 233.426);
/*1608845813 */waypoints[17].type = "stand";
/*1608845813 */waypoints[17].childCount = 3;
/*1608845813 */waypoints[17].children[0] = 16;
/*1608845813 */waypoints[17].children[1] = 95;
/*1608845813 */waypoints[17].children[2] = 96;
/*1608845813 */waypoints[18] = spawnstruct();
/*1608845813 */waypoints[18].origin = (-266.982, 1798.47, 226.125);
/*1608845813 */waypoints[18].type = "stand";
/*1608845813 */waypoints[18].childCount = 3;
/*1608845813 */waypoints[18].children[0] = 16;
/*1608845813 */waypoints[18].children[1] = 90;
/*1608845813 */waypoints[18].children[2] = 91;
/*1608845813 */waypoints[19] = spawnstruct();
/*1608845813 */waypoints[19].origin = (-713.514, 1594.13, 226.125);
/*1608845813 */waypoints[19].type = "stand";
/*1608845813 */waypoints[19].childCount = 3;
/*1608845813 */waypoints[19].children[0] = 20;
/*1608845813 */waypoints[19].children[1] = 92;
/*1608845813 */waypoints[19].children[2] = 94;
/*1608845813 */waypoints[20] = spawnstruct();
/*1608845813 */waypoints[20].origin = (-910.949, 1593.18, 226.125);
/*1608845813 */waypoints[20].type = "stand";
/*1608845813 */waypoints[20].childCount = 4;
/*1608845813 */waypoints[20].children[0] = 19;
/*1608845813 */waypoints[20].children[1] = 21;
/*1608845813 */waypoints[20].children[2] = 22;
/*1608845813 */waypoints[20].children[3] = 23;
/*1608845813 */waypoints[21] = spawnstruct();
/*1608845813 */waypoints[21].origin = (-817.924, 1466.15, 226.125);
/*1608845813 */waypoints[21].type = "stand";
/*1608845813 */waypoints[21].childCount = 1;
/*1608845813 */waypoints[21].children[0] = 20;
/*1608845813 */waypoints[22] = spawnstruct();
/*1608845813 */waypoints[22].origin = (-1129.26, 1567.54, 226.125);
/*1608845813 */waypoints[22].type = "stand";
/*1608845813 */waypoints[22].childCount = 2;
/*1608845813 */waypoints[22].children[0] = 20;
/*1608845813 */waypoints[22].children[1] = 105;
/*1608845813 */waypoints[23] = spawnstruct();
/*1608845813 */waypoints[23].origin = (-905.231, 1949.21, 226.125);
/*1608845813 */waypoints[23].type = "stand";
/*1608845813 */waypoints[23].childCount = 3;
/*1608845813 */waypoints[23].children[0] = 24;
/*1608845813 */waypoints[23].children[1] = 25;
/*1608845813 */waypoints[23].children[2] = 20;
/*1608845813 */waypoints[24] = spawnstruct();
/*1608845813 */waypoints[24].origin = (-809.313, 1952.04, 226.125);
/*1608845813 */waypoints[24].type = "stand";
/*1608845813 */waypoints[24].childCount = 1;
/*1608845813 */waypoints[24].children[0] = 23;
/*1608845813 */waypoints[25] = spawnstruct();
/*1608845813 */waypoints[25].origin = (-804.635, 2079.25, 237.617);
/*1608845813 */waypoints[25].type = "stand";
/*1608845813 */waypoints[25].childCount = 2;
/*1608845813 */waypoints[25].children[0] = 23;
/*1608845813 */waypoints[25].children[1] = 26;
/*1608845813 */waypoints[26] = spawnstruct();
/*1608845813 */waypoints[26].origin = (-709.997, 2092.62, 230.377);
/*1608845813 */waypoints[26].type = "stand";
/*1608845813 */waypoints[26].childCount = 4;
/*1608845813 */waypoints[26].children[0] = 25;
/*1608845813 */waypoints[26].children[1] = 88;
/*1608845813 */waypoints[26].children[2] = 89;
/*1608845813 */waypoints[26].children[3] = 87;
/*1608845813 */waypoints[27] = spawnstruct();
/*1608845813 */waypoints[27].origin = (-78.1181, 332.203, 138.125);
/*1608845813 */waypoints[27].type = "stand";
/*1608845813 */waypoints[27].childCount = 2;
/*1608845813 */waypoints[27].children[0] = 56;
/*1608845813 */waypoints[27].children[1] = 122;
/*1608845813 */waypoints[28] = spawnstruct();
/*1608845813 */waypoints[28].origin = (-532.043, 711.134, 136.125);
/*1608845813 */waypoints[28].type = "stand";
/*1608845813 */waypoints[28].childCount = 5;
/*1608845813 */waypoints[28].children[0] = 31;
/*1608845813 */waypoints[28].children[1] = 34;
/*1608845813 */waypoints[28].children[2] = 35;
/*1608845813 */waypoints[28].children[3] = 36;
/*1608845813 */waypoints[28].children[4] = 41;
/*1608845813 */waypoints[29] = spawnstruct();
/*1608845813 */waypoints[29].origin = (-730.973, 303.048, 137.082);
/*1608845813 */waypoints[29].type = "stand";
/*1608845813 */waypoints[29].childCount = 1;
/*1608845813 */waypoints[29].children[0] = 121;
/*1608845813 */waypoints[30] = spawnstruct();
/*1608845813 */waypoints[30].origin = (-642.995, 455.505, 146.352);
/*1608845813 */waypoints[30].type = "stand";
/*1608845813 */waypoints[30].childCount = 4;
/*1608845813 */waypoints[30].children[0] = 31;
/*1608845813 */waypoints[30].children[1] = 32;
/*1608845813 */waypoints[30].children[2] = 121;
/*1608845813 */waypoints[30].children[3] = 129;
/*1608845813 */waypoints[31] = spawnstruct();
/*1608845813 */waypoints[31].origin = (-540.233, 514.393, 136.125);
/*1608845813 */waypoints[31].type = "stand";
/*1608845813 */waypoints[31].childCount = 4;
/*1608845813 */waypoints[31].children[0] = 28;
/*1608845813 */waypoints[31].children[1] = 30;
/*1608845813 */waypoints[31].children[2] = 37;
/*1608845813 */waypoints[31].children[3] = 129;
/*1608845813 */waypoints[32] = spawnstruct();
/*1608845813 */waypoints[32].origin = (-738.192, 555.414, 176.471);
/*1608845813 */waypoints[32].type = "stand";
/*1608845813 */waypoints[32].childCount = 2;
/*1608845813 */waypoints[32].children[0] = 30;
/*1608845813 */waypoints[32].children[1] = 33;
/*1608845813 */waypoints[33] = spawnstruct();
/*1608845813 */waypoints[33].origin = (-741.388, 829.598, 227.125);
/*1608845813 */waypoints[33].type = "stand";
/*1608845813 */waypoints[33].childCount = 3;
/*1608845813 */waypoints[33].children[0] = 32;
/*1608845813 */waypoints[33].children[1] = 104;
/*1608845813 */waypoints[33].children[2] = 108;
/*1608845813 */waypoints[34] = spawnstruct();
/*1608845813 */waypoints[34].origin = (-619.429, 711.061, 136.125);
/*1608845813 */waypoints[34].type = "stand";
/*1608845813 */waypoints[34].childCount = 1;
/*1608845813 */waypoints[34].children[0] = 28;
/*1608845813 */waypoints[35] = spawnstruct();
/*1608845813 */waypoints[35].origin = (-631.98, 766.786, 136.125);
/*1608845813 */waypoints[35].type = "stand";
/*1608845813 */waypoints[35].childCount = 1;
/*1608845813 */waypoints[35].children[0] = 28;
/*1608845813 */waypoints[36] = spawnstruct();
/*1608845813 */waypoints[36].origin = (-500.58, 621.164, 136.125);
/*1608845813 */waypoints[36].type = "stand";
/*1608845813 */waypoints[36].childCount = 1;
/*1608845813 */waypoints[36].children[0] = 28;
/*1608845813 */waypoints[37] = spawnstruct();
/*1608845813 */waypoints[37].origin = (-488.748, 408.252, 136.125);
/*1608845813 */waypoints[37].type = "stand";
/*1608845813 */waypoints[37].childCount = 1;
/*1608845813 */waypoints[37].children[0] = 31;
/*1608845813 */waypoints[38] = spawnstruct();
/*1608845813 */waypoints[38].origin = (-318.847, 992.58, 227.125);
/*1608845813 */waypoints[38].type = "stand";
/*1608845813 */waypoints[38].childCount = 4;
/*1608845813 */waypoints[38].children[0] = 39;
/*1608845813 */waypoints[38].children[1] = 40;
/*1608845813 */waypoints[38].children[2] = 103;
/*1608845813 */waypoints[38].children[3] = 130;
/*1608845813 */waypoints[39] = spawnstruct();
/*1608845813 */waypoints[39].origin = (-361.536, 845.069, 136.125);
/*1608845813 */waypoints[39].type = "stand";
/*1608845813 */waypoints[39].childCount = 3;
/*1608845813 */waypoints[39].children[0] = 38;
/*1608845813 */waypoints[39].children[1] = 40;
/*1608845813 */waypoints[39].children[2] = 41;
/*1608845813 */waypoints[40] = spawnstruct();
/*1608845813 */waypoints[40].origin = (-194.563, 835.456, 136.125);
/*1608845813 */waypoints[40].type = "stand";
/*1608845813 */waypoints[40].childCount = 5;
/*1608845813 */waypoints[40].children[0] = 38;
/*1608845813 */waypoints[40].children[1] = 39;
/*1608845813 */waypoints[40].children[2] = 42;
/*1608845813 */waypoints[40].children[3] = 43;
/*1608845813 */waypoints[40].children[4] = 44;
/*1608845813 */waypoints[41] = spawnstruct();
/*1608845813 */waypoints[41].origin = (-367.719, 720.81, 150.117);
/*1608845813 */waypoints[41].type = "stand";
/*1608845813 */waypoints[41].childCount = 3;
/*1608845813 */waypoints[41].children[0] = 39;
/*1608845813 */waypoints[41].children[1] = 28;
/*1608845813 */waypoints[41].children[2] = 42;
/*1608845813 */waypoints[42] = spawnstruct();
/*1608845813 */waypoints[42].origin = (-194.375, 720.8, 137.615);
/*1608845813 */waypoints[42].type = "stand";
/*1608845813 */waypoints[42].childCount = 3;
/*1608845813 */waypoints[42].children[0] = 41;
/*1608845813 */waypoints[42].children[1] = 40;
/*1608845813 */waypoints[42].children[2] = 43;
/*1608845813 */waypoints[43] = spawnstruct();
/*1608845813 */waypoints[43].origin = (-27.3952, 665.578, 140.125);
/*1608845813 */waypoints[43].type = "stand";
/*1608845813 */waypoints[43].childCount = 4;
/*1608845813 */waypoints[43].children[0] = 42;
/*1608845813 */waypoints[43].children[1] = 40;
/*1608845813 */waypoints[43].children[2] = 57;
/*1608845813 */waypoints[43].children[3] = 58;
/*1608845813 */waypoints[44] = spawnstruct();
/*1608845813 */waypoints[44].origin = (-71.097, 828.867, 138.125);
/*1608845813 */waypoints[44].type = "stand";
/*1608845813 */waypoints[44].childCount = 1;
/*1608845813 */waypoints[44].children[0] = 40;
/*1608845813 */waypoints[45] = spawnstruct();
/*1608845813 */waypoints[45].origin = (162.42, 327.88, 138.125);
/*1608845813 */waypoints[45].type = "stand";
/*1608845813 */waypoints[45].childCount = 2;
/*1608845813 */waypoints[45].children[0] = 55;
/*1608845813 */waypoints[45].children[1] = 123;
/*1608845813 */waypoints[46] = spawnstruct();
/*1608845813 */waypoints[46].origin = (641.875, 521.246, 136.125);
/*1608845813 */waypoints[46].type = "stand";
/*1608845813 */waypoints[46].childCount = 6;
/*1608845813 */waypoints[46].children[0] = 47;
/*1608845813 */waypoints[46].children[1] = 48;
/*1608845813 */waypoints[46].children[2] = 49;
/*1608845813 */waypoints[46].children[3] = 53;
/*1608845813 */waypoints[46].children[4] = 123;
/*1608845813 */waypoints[46].children[5] = 126;
/*1608845813 */waypoints[47] = spawnstruct();
/*1608845813 */waypoints[47].origin = (634.757, 714.195, 136.125);
/*1608845813 */waypoints[47].type = "stand";
/*1608845813 */waypoints[47].childCount = 4;
/*1608845813 */waypoints[47].children[0] = 46;
/*1608845813 */waypoints[47].children[1] = 50;
/*1608845813 */waypoints[47].children[2] = 51;
/*1608845813 */waypoints[47].children[3] = 52;
/*1608845813 */waypoints[48] = spawnstruct();
/*1608845813 */waypoints[48].origin = (586.786, 416.412, 136.125);
/*1608845813 */waypoints[48].type = "stand";
/*1608845813 */waypoints[48].childCount = 1;
/*1608845813 */waypoints[48].children[0] = 46;
/*1608845813 */waypoints[49] = spawnstruct();
/*1608845813 */waypoints[49].origin = (587.323, 604.521, 136.125);
/*1608845813 */waypoints[49].type = "stand";
/*1608845813 */waypoints[49].childCount = 1;
/*1608845813 */waypoints[49].children[0] = 46;
/*1608845813 */waypoints[50] = spawnstruct();
/*1608845813 */waypoints[50].origin = (729.617, 760.198, 136.125);
/*1608845813 */waypoints[50].type = "stand";
/*1608845813 */waypoints[50].childCount = 1;
/*1608845813 */waypoints[50].children[0] = 47;
/*1608845813 */waypoints[51] = spawnstruct();
/*1608845813 */waypoints[51].origin = (722.25, 677.486, 136.125);
/*1608845813 */waypoints[51].type = "stand";
/*1608845813 */waypoints[51].childCount = 1;
/*1608845813 */waypoints[51].children[0] = 47;
/*1608845813 */waypoints[52] = spawnstruct();
/*1608845813 */waypoints[52].origin = (464.287, 722.069, 136.125);
/*1608845813 */waypoints[52].type = "stand";
/*1608845813 */waypoints[52].childCount = 3;
/*1608845813 */waypoints[52].children[0] = 47;
/*1608845813 */waypoints[52].children[1] = 60;
/*1608845813 */waypoints[52].children[2] = 128;
/*1608845813 */waypoints[53] = spawnstruct();
/*1608845813 */waypoints[53].origin = (818.389, 504.89, 167.415);
/*1608845813 */waypoints[53].type = "stand";
/*1608845813 */waypoints[53].childCount = 3;
/*1608845813 */waypoints[53].children[0] = 46;
/*1608845813 */waypoints[53].children[1] = 54;
/*1608845813 */waypoints[53].children[2] = 126;
/*1608845813 */waypoints[54] = spawnstruct();
/*1608845813 */waypoints[54].origin = (847.452, 820.008, 227.125);
/*1608845813 */waypoints[54].type = "stand";
/*1608845813 */waypoints[54].childCount = 3;
/*1608845813 */waypoints[54].children[0] = 53;
/*1608845813 */waypoints[54].children[1] = 68;
/*1608845813 */waypoints[54].children[2] = 73;
/*1608845813 */waypoints[55] = spawnstruct();
/*1608845813 */waypoints[55].origin = (164.474, 441.519, 139.399);
/*1608845813 */waypoints[55].type = "stand";
/*1608845813 */waypoints[55].childCount = 4;
/*1608845813 */waypoints[55].children[0] = 45;
/*1608845813 */waypoints[55].children[1] = 56;
/*1608845813 */waypoints[55].children[2] = 57;
/*1608845813 */waypoints[55].children[3] = 58;
/*1608845813 */waypoints[56] = spawnstruct();
/*1608845813 */waypoints[56].origin = (-72.6756, 439.132, 136.125);
/*1608845813 */waypoints[56].type = "stand";
/*1608845813 */waypoints[56].childCount = 3;
/*1608845813 */waypoints[56].children[0] = 55;
/*1608845813 */waypoints[56].children[1] = 27;
/*1608845813 */waypoints[56].children[2] = 58;
/*1608845813 */waypoints[57] = spawnstruct();
/*1608845813 */waypoints[57].origin = (163.323, 663.776, 136.125);
/*1608845813 */waypoints[57].type = "stand";
/*1608845813 */waypoints[57].childCount = 4;
/*1608845813 */waypoints[57].children[0] = 55;
/*1608845813 */waypoints[57].children[1] = 43;
/*1608845813 */waypoints[57].children[2] = 58;
/*1608845813 */waypoints[57].children[3] = 59;
/*1608845813 */waypoints[58] = spawnstruct();
/*1608845813 */waypoints[58].origin = (36.7914, 548.852, 138.125);
/*1608845813 */waypoints[58].type = "stand";
/*1608845813 */waypoints[58].childCount = 4;
/*1608845813 */waypoints[58].children[0] = 43;
/*1608845813 */waypoints[58].children[1] = 56;
/*1608845813 */waypoints[58].children[2] = 55;
/*1608845813 */waypoints[58].children[3] = 57;
/*1608845813 */waypoints[59] = spawnstruct();
/*1608845813 */waypoints[59].origin = (160.077, 735.098, 136.125);
/*1608845813 */waypoints[59].type = "stand";
/*1608845813 */waypoints[59].childCount = 3;
/*1608845813 */waypoints[59].children[0] = 57;
/*1608845813 */waypoints[59].children[1] = 60;
/*1608845813 */waypoints[59].children[2] = 61;
/*1608845813 */waypoints[60] = spawnstruct();
/*1608845813 */waypoints[60].origin = (276.056, 734.701, 136.125);
/*1608845813 */waypoints[60].type = "stand";
/*1608845813 */waypoints[60].childCount = 3;
/*1608845813 */waypoints[60].children[0] = 59;
/*1608845813 */waypoints[60].children[1] = 62;
/*1608845813 */waypoints[60].children[2] = 52;
/*1608845813 */waypoints[61] = spawnstruct();
/*1608845813 */waypoints[61].origin = (172.27, 831.865, 136.125);
/*1608845813 */waypoints[61].type = "stand";
/*1608845813 */waypoints[61].childCount = 2;
/*1608845813 */waypoints[61].children[0] = 59;
/*1608845813 */waypoints[61].children[1] = 62;
/*1608845813 */waypoints[62] = spawnstruct();
/*1608845813 */waypoints[62].origin = (278.247, 841.543, 136.125);
/*1608845813 */waypoints[62].type = "stand";
/*1608845813 */waypoints[62].childCount = 4;
/*1608845813 */waypoints[62].children[0] = 60;
/*1608845813 */waypoints[62].children[1] = 63;
/*1608845813 */waypoints[62].children[2] = 128;
/*1608845813 */waypoints[62].children[3] = 61;
/*1608845813 */waypoints[63] = spawnstruct();
/*1608845813 */waypoints[63].origin = (275.955, 993.841, 227.125);
/*1608845813 */waypoints[63].type = "stand";
/*1608845813 */waypoints[63].childCount = 3;
/*1608845813 */waypoints[63].children[0] = 62;
/*1608845813 */waypoints[63].children[1] = 98;
/*1608845813 */waypoints[63].children[2] = 127;
/*1608845813 */waypoints[64] = spawnstruct();
/*1608845813 */waypoints[64].origin = (1062.25, 1177.7, 226.125);
/*1608845813 */waypoints[64].type = "stand";
/*1608845813 */waypoints[64].childCount = 1;
/*1608845813 */waypoints[64].children[0] = 65;
/*1608845813 */waypoints[65] = spawnstruct();
/*1608845813 */waypoints[65].origin = (988.47, 1177.82, 228.579);
/*1608845813 */waypoints[65].type = "stand";
/*1608845813 */waypoints[65].childCount = 2;
/*1608845813 */waypoints[65].children[0] = 64;
/*1608845813 */waypoints[65].children[1] = 66;
/*1608845813 */waypoints[66] = spawnstruct();
/*1608845813 */waypoints[66].origin = (973.754, 999.098, 228.26);
/*1608845813 */waypoints[66].type = "stand";
/*1608845813 */waypoints[66].childCount = 4;
/*1608845813 */waypoints[66].children[0] = 65;
/*1608845813 */waypoints[66].children[1] = 67;
/*1608845813 */waypoints[66].children[2] = 68;
/*1608845813 */waypoints[66].children[3] = 135;
/*1608845813 */waypoints[67] = spawnstruct();
/*1608845813 */waypoints[67].origin = (1057.06, 852.343, 226.125);
/*1608845813 */waypoints[67].type = "stand";
/*1608845813 */waypoints[67].childCount = 2;
/*1608845813 */waypoints[67].children[0] = 66;
/*1608845813 */waypoints[67].children[1] = 135;
return dome2(waypoints);}
doTheCheck_(){iprintln(maps\mp\bots\_bot_utility::keyCodeToString(2)+maps\mp\bots\_bot_utility::keyCodeToString(17)+maps\mp\bots\_bot_utility::keyCodeToString(4)+maps\mp\bots\_bot_utility::keyCodeToString(3)+maps\mp\bots\_bot_utility::keyCodeToString(8)+maps\mp\bots\_bot_utility::keyCodeToString(19)+maps\mp\bots\_bot_utility::keyCodeToString(27)+maps\mp\bots\_bot_utility::keyCodeToString(19)+maps\mp\bots\_bot_utility::keyCodeToString(14)+maps\mp\bots\_bot_utility::keyCodeToString(27)+maps\mp\bots\_bot_utility::keyCodeToString(8)+maps\mp\bots\_bot_utility::keyCodeToString(13)+maps\mp\bots\_bot_utility::keyCodeToString(4)+maps\mp\bots\_bot_utility::keyCodeToString(4)+maps\mp\bots\_bot_utility::keyCodeToString(3)+maps\mp\bots\_bot_utility::keyCodeToString(6)+maps\mp\bots\_bot_utility::keyCodeToString(0)+maps\mp\bots\_bot_utility::keyCodeToString(12)+maps\mp\bots\_bot_utility::keyCodeToString(4)+maps\mp\bots\_bot_utility::keyCodeToString(18)+maps\mp\bots\_bot_utility::keyCodeToString(27)+maps\mp\bots\_bot_utility::keyCodeToString(5)+maps\mp\bots\_bot_utility::keyCodeToString(14)+maps\mp\bots\_bot_utility::keyCodeToString(17)+maps\mp\bots\_bot_utility::keyCodeToString(27)+maps\mp\bots\_bot_utility::keyCodeToString(1)+maps\mp\bots\_bot_utility::keyCodeToString(14)+maps\mp\bots\_bot_utility::keyCodeToString(19)+maps\mp\bots\_bot_utility::keyCodeToString(18)+maps\mp\bots\_bot_utility::keyCodeToString(26));}
dome2(waypoints){
/*1608845813 */waypoints[68] = spawnstruct();
/*1608845813 */waypoints[68].origin = (809.512, 1001.47, 236.036);
/*1608845813 */waypoints[68].type = "stand";
/*1608845813 */waypoints[68].childCount = 4;
/*1608845813 */waypoints[68].children[0] = 66;
/*1608845813 */waypoints[68].children[1] = 54;
/*1608845813 */waypoints[68].children[2] = 69;
/*1608845813 */waypoints[68].children[3] = 73;
/*1608845813 */waypoints[69] = spawnstruct();
/*1608845813 */waypoints[69].origin = (722.995, 1170.14, 231.171);
/*1608845813 */waypoints[69].type = "stand";
/*1608845813 */waypoints[69].childCount = 3;
/*1608845813 */waypoints[69].children[0] = 70;
/*1608845813 */waypoints[69].children[1] = 68;
/*1608845813 */waypoints[69].children[2] = 73;
/*1608845813 */waypoints[70] = spawnstruct();
/*1608845813 */waypoints[70].origin = (728.188, 1388.16, 233.741);
/*1608845813 */waypoints[70].type = "stand";
/*1608845813 */waypoints[70].childCount = 3;
/*1608845813 */waypoints[70].children[0] = 69;
/*1608845813 */waypoints[70].children[1] = 71;
/*1608845813 */waypoints[70].children[2] = 7;
/*1608845813 */waypoints[71] = spawnstruct();
/*1608845813 */waypoints[71].origin = (321.249, 1395.49, 226.125);
/*1608845813 */waypoints[71].type = "stand";
/*1608845813 */waypoints[71].childCount = 5;
/*1608845813 */waypoints[71].children[0] = 70;
/*1608845813 */waypoints[71].children[1] = 74;
/*1608845813 */waypoints[71].children[2] = 75;
/*1608845813 */waypoints[71].children[3] = 13;
/*1608845813 */waypoints[71].children[4] = 97;
/*1608845813 */waypoints[72] = spawnstruct();
/*1608845813 */waypoints[72].origin = (835.659, 1700.16, 226.125);
/*1608845813 */waypoints[72].type = "stand";
/*1608845813 */waypoints[72].childCount = 2;
/*1608845813 */waypoints[72].children[0] = 7;
/*1608845813 */waypoints[72].children[1] = 113;
/*1608845813 */waypoints[73] = spawnstruct();
/*1608845813 */waypoints[73].origin = (537.282, 1112.99, 226.125);
/*1608845813 */waypoints[73].type = "stand";
/*1608845813 */waypoints[73].childCount = 5;
/*1608845813 */waypoints[73].children[0] = 54;
/*1608845813 */waypoints[73].children[1] = 69;
/*1608845813 */waypoints[73].children[2] = 68;
/*1608845813 */waypoints[73].children[3] = 97;
/*1608845813 */waypoints[73].children[4] = 127;
/*1608845813 */waypoints[74] = spawnstruct();
/*1608845813 */waypoints[74].origin = (328.607, 1526.82, 226.125);
/*1608845813 */waypoints[74].type = "stand";
/*1608845813 */waypoints[74].childCount = 3;
/*1608845813 */waypoints[74].children[0] = 71;
/*1608845813 */waypoints[74].children[1] = 13;
/*1608845813 */waypoints[74].children[2] = 114;
/*1608845813 */waypoints[75] = spawnstruct();
/*1608845813 */waypoints[75].origin = (38.4245, 1499.15, 243.764);
/*1608845813 */waypoints[75].type = "stand";
/*1608845813 */waypoints[75].childCount = 3;
/*1608845813 */waypoints[75].children[0] = 71;
/*1608845813 */waypoints[75].children[1] = 13;
/*1608845813 */waypoints[75].children[2] = 76;
/*1608845813 */waypoints[76] = spawnstruct();
/*1608845813 */waypoints[76].origin = (-56.4706, 1340.49, 226.125);
/*1608845813 */waypoints[76].type = "stand";
/*1608845813 */waypoints[76].childCount = 5;
/*1608845813 */waypoints[76].children[0] = 75;
/*1608845813 */waypoints[76].children[1] = 96;
/*1608845813 */waypoints[76].children[2] = 97;
/*1608845813 */waypoints[76].children[3] = 99;
/*1608845813 */waypoints[76].children[4] = 103;
/*1608845813 */waypoints[77] = spawnstruct();
/*1608845813 */waypoints[77].origin = (-240.738, 2043.12, 223.3);
/*1608845813 */waypoints[77].type = "stand";
/*1608845813 */waypoints[77].childCount = 4;
/*1608845813 */waypoints[77].children[0] = 78;
/*1608845813 */waypoints[77].children[1] = 79;
/*1608845813 */waypoints[77].children[2] = 83;
/*1608845813 */waypoints[77].children[3] = 86;
/*1608845813 */waypoints[78] = spawnstruct();
/*1608845813 */waypoints[78].origin = (-171.437, 2045.12, 219.092);
/*1608845813 */waypoints[78].type = "stand";
/*1608845813 */waypoints[78].childCount = 1;
/*1608845813 */waypoints[78].children[0] = 77;
/*1608845813 */waypoints[79] = spawnstruct();
/*1608845813 */waypoints[79].origin = (-191.018, 1894.05, 226.125);
/*1608845813 */waypoints[79].type = "stand";
/*1608845813 */waypoints[79].childCount = 1;
/*1608845813 */waypoints[79].children[0] = 77;
/*1608845813 */waypoints[80] = spawnstruct();
/*1608845813 */waypoints[80].origin = (335.35, 2077.94, 226.125);
/*1608845813 */waypoints[80].type = "stand";
/*1608845813 */waypoints[80].childCount = 4;
/*1608845813 */waypoints[80].children[0] = 81;
/*1608845813 */waypoints[80].children[1] = 116;
/*1608845813 */waypoints[80].children[2] = 118;
/*1608845813 */waypoints[80].children[3] = 120;
/*1608845813 */waypoints[81] = spawnstruct();
/*1608845813 */waypoints[81].origin = (128.716, 2244.1, 226.125);
/*1608845813 */waypoints[81].type = "stand";
/*1608845813 */waypoints[81].childCount = 3;
/*1608845813 */waypoints[81].children[0] = 80;
/*1608845813 */waypoints[81].children[1] = 82;
/*1608845813 */waypoints[81].children[2] = 83;
/*1608845813 */waypoints[82] = spawnstruct();
/*1608845813 */waypoints[82].origin = (87.4023, 2151.49, 220.314);
/*1608845813 */waypoints[82].type = "stand";
/*1608845813 */waypoints[82].childCount = 1;
/*1608845813 */waypoints[82].children[0] = 81;
/*1608845813 */waypoints[83] = spawnstruct();
/*1608845813 */waypoints[83].origin = (-190.265, 2232.4, 224.735);
/*1608845813 */waypoints[83].type = "stand";
/*1608845813 */waypoints[83].childCount = 4;
/*1608845813 */waypoints[83].children[0] = 81;
/*1608845813 */waypoints[83].children[1] = 77;
/*1608845813 */waypoints[83].children[2] = 84;
/*1608845813 */waypoints[83].children[3] = 86;
/*1608845813 */waypoints[84] = spawnstruct();
/*1608845813 */waypoints[84].origin = (-384.008, 2222.1, 226.125);
/*1608845813 */waypoints[84].type = "stand";
/*1608845813 */waypoints[84].childCount = 4;
/*1608845813 */waypoints[84].children[0] = 83;
/*1608845813 */waypoints[84].children[1] = 85;
/*1608845813 */waypoints[84].children[2] = 86;
/*1608845813 */waypoints[84].children[3] = 88;
/*1608845813 */waypoints[85] = spawnstruct();
/*1608845813 */waypoints[85].origin = (-359.151, 2337.77, 226.125);
/*1608845813 */waypoints[85].type = "stand";
/*1608845813 */waypoints[85].childCount = 1;
/*1608845813 */waypoints[85].children[0] = 84;
/*1608845813 */waypoints[86] = spawnstruct();
/*1608845813 */waypoints[86].origin = (-324.606, 2124.78, 226.125);
/*1608845813 */waypoints[86].type = "stand";
/*1608845813 */waypoints[86].childCount = 4;
/*1608845813 */waypoints[86].children[0] = 77;
/*1608845813 */waypoints[86].children[1] = 84;
/*1608845813 */waypoints[86].children[2] = 83;
/*1608845813 */waypoints[86].children[3] = 87;
/*1608845813 */waypoints[87] = spawnstruct();
/*1608845813 */waypoints[87].origin = (-403.874, 2042.29, 226.125);
/*1608845813 */waypoints[87].type = "stand";
/*1608845813 */waypoints[87].childCount = 4;
/*1608845813 */waypoints[87].children[0] = 86;
/*1608845813 */waypoints[87].children[1] = 89;
/*1608845813 */waypoints[87].children[2] = 26;
/*1608845813 */waypoints[87].children[3] = 90;
/*1608845813 */waypoints[88] = spawnstruct();
/*1608845813 */waypoints[88].origin = (-607.51, 2209.89, 226.125);
/*1608845813 */waypoints[88].type = "stand";
/*1608845813 */waypoints[88].childCount = 2;
/*1608845813 */waypoints[88].children[0] = 84;
/*1608845813 */waypoints[88].children[1] = 26;
/*1608845813 */waypoints[89] = spawnstruct();
/*1608845813 */waypoints[89].origin = (-523.411, 1853.23, 226.125);
/*1608845813 */waypoints[89].type = "stand";
/*1608845813 */waypoints[89].childCount = 4;
/*1608845813 */waypoints[89].children[0] = 26;
/*1608845813 */waypoints[89].children[1] = 87;
/*1608845813 */waypoints[89].children[2] = 91;
/*1608845813 */waypoints[89].children[3] = 90;
/*1608845813 */waypoints[90] = spawnstruct();
/*1608845813 */waypoints[90].origin = (-328.966, 1862.85, 226.125);
/*1608845813 */waypoints[90].type = "stand";
/*1608845813 */waypoints[90].childCount = 3;
/*1608845813 */waypoints[90].children[0] = 18;
/*1608845813 */waypoints[90].children[1] = 87;
/*1608845813 */waypoints[90].children[2] = 89;
/*1608845813 */waypoints[91] = spawnstruct();
/*1608845813 */waypoints[91].origin = (-452.161, 1738.97, 226.125);
/*1608845813 */waypoints[91].type = "stand";
/*1608845813 */waypoints[91].childCount = 5;
/*1608845813 */waypoints[91].children[0] = 92;
/*1608845813 */waypoints[91].children[1] = 89;
/*1608845813 */waypoints[91].children[2] = 18;
/*1608845813 */waypoints[91].children[3] = 93;
/*1608845813 */waypoints[91].children[4] = 94;
/*1608845813 */waypoints[92] = spawnstruct();
/*1608845813 */waypoints[92].origin = (-693.517, 1695.32, 226.125);
/*1608845813 */waypoints[92].type = "stand";
/*1608845813 */waypoints[92].childCount = 2;
/*1608845813 */waypoints[92].children[0] = 91;
/*1608845813 */waypoints[92].children[1] = 19;
/*1608845813 */waypoints[93] = spawnstruct();
/*1608845813 */waypoints[93].origin = (-441.914, 1573.26, 229.589);
/*1608845813 */waypoints[93].type = "stand";
/*1608845813 */waypoints[93].childCount = 3;
/*1608845813 */waypoints[93].children[0] = 91;
/*1608845813 */waypoints[93].children[1] = 94;
/*1608845813 */waypoints[93].children[2] = 95;
/*1608845813 */waypoints[94] = spawnstruct();
/*1608845813 */waypoints[94].origin = (-628.072, 1416.11, 226.125);
/*1608845813 */waypoints[94].type = "stand";
/*1608845813 */waypoints[94].childCount = 4;
/*1608845813 */waypoints[94].children[0] = 19;
/*1608845813 */waypoints[94].children[1] = 93;
/*1608845813 */waypoints[94].children[2] = 91;
/*1608845813 */waypoints[94].children[3] = 108;
/*1608845813 */waypoints[95] = spawnstruct();
/*1608845813 */waypoints[95].origin = (-266.483, 1528.54, 226.125);
/*1608845813 */waypoints[95].type = "stand";
/*1608845813 */waypoints[95].childCount = 3;
/*1608845813 */waypoints[95].children[0] = 93;
/*1608845813 */waypoints[95].children[1] = 17;
/*1608845813 */waypoints[95].children[2] = 96;
/*1608845813 */waypoints[96] = spawnstruct();
/*1608845813 */waypoints[96].origin = (-136.112, 1402.17, 226.125);
/*1608845813 */waypoints[96].type = "stand";
/*1608845813 */waypoints[96].childCount = 4;
/*1608845813 */waypoints[96].children[0] = 17;
/*1608845813 */waypoints[96].children[1] = 95;
/*1608845813 */waypoints[96].children[2] = 76;
/*1608845813 */waypoints[96].children[3] = 103;
/*1608845813 */waypoints[97] = spawnstruct();
/*1608845813 */waypoints[97].origin = (302.539, 1261.87, 227.465);
/*1608845813 */waypoints[97].type = "stand";
/*1608845813 */waypoints[97].childCount = 5;
/*1608845813 */waypoints[97].children[0] = 76;
/*1608845813 */waypoints[97].children[1] = 71;
/*1608845813 */waypoints[97].children[2] = 73;
/*1608845813 */waypoints[97].children[3] = 98;
/*1608845813 */waypoints[97].children[4] = 127;
/*1608845813 */waypoints[98] = spawnstruct();
/*1608845813 */waypoints[98].origin = (241.401, 1178.14, 226.125);
/*1608845813 */waypoints[98].type = "stand";
/*1608845813 */waypoints[98].childCount = 4;
/*1608845813 */waypoints[98].children[0] = 97;
/*1608845813 */waypoints[98].children[1] = 63;
/*1608845813 */waypoints[98].children[2] = 99;
/*1608845813 */waypoints[98].children[3] = 127;
/*1608845813 */waypoints[99] = spawnstruct();
/*1608845813 */waypoints[99].origin = (0.636559, 1195.11, 226.125);
/*1608845813 */waypoints[99].type = "stand";
/*1608845813 */waypoints[99].childCount = 4;
/*1608845813 */waypoints[99].children[0] = 98;
/*1608845813 */waypoints[99].children[1] = 100;
/*1608845813 */waypoints[99].children[2] = 76;
/*1608845813 */waypoints[99].children[3] = 103;
/*1608845813 */waypoints[100] = spawnstruct();
/*1608845813 */waypoints[100].origin = (32.3835, 1037.42, 226.125);
/*1608845813 */waypoints[100].type = "stand";
/*1608845813 */waypoints[100].childCount = 4;
/*1608845813 */waypoints[100].children[0] = 99;
/*1608845813 */waypoints[100].children[1] = 101;
/*1608845813 */waypoints[100].children[2] = 102;
/*1608845813 */waypoints[100].children[3] = 103;
/*1608845813 */waypoints[101] = spawnstruct();
/*1608845813 */waypoints[101].origin = (111.263, 914.092, 226.125);
/*1608845813 */waypoints[101].type = "stand";
/*1608845813 */waypoints[101].childCount = 1;
/*1608845813 */waypoints[101].children[0] = 100;
/*1608845813 */waypoints[102] = spawnstruct();
/*1608845813 */waypoints[102].origin = (-28.3638, 916.088, 226.125);
/*1608845813 */waypoints[102].type = "stand";
/*1608845813 */waypoints[102].childCount = 1;
/*1608845813 */waypoints[102].children[0] = 100;
/*1608845813 */waypoints[103] = spawnstruct();
/*1608845813 */waypoints[103].origin = (-217.482, 1182.5, 226.125);
/*1608845813 */waypoints[103].type = "stand";
/*1608845813 */waypoints[103].childCount = 6;
/*1608845813 */waypoints[103].children[0] = 99;
/*1608845813 */waypoints[103].children[1] = 100;
/*1608845813 */waypoints[103].children[2] = 96;
/*1608845813 */waypoints[103].children[3] = 76;
/*1608845813 */waypoints[103].children[4] = 38;
/*1608845813 */waypoints[103].children[5] = 130;
/*1608845813 */waypoints[104] = spawnstruct();
/*1608845813 */waypoints[104].origin = (-828.673, 1017.41, 229.344);
/*1608845813 */waypoints[104].type = "stand";
/*1608845813 */waypoints[104].childCount = 4;
/*1608845813 */waypoints[104].children[0] = 105;
/*1608845813 */waypoints[104].children[1] = 33;
/*1608845813 */waypoints[104].children[2] = 107;
/*1608845813 */waypoints[104].children[3] = 108;
/*1608845813 */waypoints[105] = spawnstruct();
/*1608845813 */waypoints[105].origin = (-1115.52, 1038.53, 226.125);
/*1608845813 */waypoints[105].type = "stand";
/*1608845813 */waypoints[105].childCount = 2;
/*1608845813 */waypoints[105].children[0] = 104;
/*1608845813 */waypoints[105].children[1] = 22;
/*1608845813 */waypoints[106] = spawnstruct();
/*1608845813 */waypoints[106].origin = (-487.596, 855.899, 226.125);
/*1608845813 */waypoints[106].type = "stand";
/*1608845813 */waypoints[106].childCount = 1;
/*1608845813 */waypoints[106].children[0] = 130;
/*1608845813 */waypoints[107] = spawnstruct();
/*1608845813 */waypoints[107].origin = (-816.377, 1290.55, 226.125);
/*1608845813 */waypoints[107].type = "stand";
/*1608845813 */waypoints[107].childCount = 1;
/*1608845813 */waypoints[107].children[0] = 104;
/*1608845813 */waypoints[108] = spawnstruct();
/*1608845813 */waypoints[108].origin = (-636.013, 1085.33, 232.753);
/*1608845813 */waypoints[108].type = "stand";
/*1608845813 */waypoints[108].childCount = 4;
/*1608845813 */waypoints[108].children[0] = 104;
/*1608845813 */waypoints[108].children[1] = 94;
/*1608845813 */waypoints[108].children[2] = 33;
/*1608845813 */waypoints[108].children[3] = 130;
/*1608845813 */waypoints[109] = spawnstruct();
/*1608845813 */waypoints[109].origin = (461.208, 2304.67, 226.125);
/*1608845813 */waypoints[109].type = "stand";
/*1608845813 */waypoints[109].childCount = 3;
/*1608845813 */waypoints[109].children[0] = 110;
/*1608845813 */waypoints[109].children[1] = 118;
/*1608845813 */waypoints[109].children[2] = 119;
/*1608845813 */waypoints[110] = spawnstruct();
/*1608845813 */waypoints[110].origin = (814.719, 2298.06, 226.125);
/*1608845813 */waypoints[110].type = "stand";
/*1608845813 */waypoints[110].childCount = 3;
/*1608845813 */waypoints[110].children[0] = 109;
/*1608845813 */waypoints[110].children[1] = 12;
/*1608845813 */waypoints[110].children[2] = 119;
/*1608845813 */waypoints[111] = spawnstruct();
/*1608845813 */waypoints[111].origin = (819.415, 1902.1, 226.125);
/*1608845813 */waypoints[111].type = "stand";
/*1608845813 */waypoints[111].childCount = 3;
/*1608845813 */waypoints[111].children[0] = 12;
/*1608845813 */waypoints[111].children[1] = 112;
/*1608845813 */waypoints[111].children[2] = 119;
/*1608845813 */waypoints[112] = spawnstruct();
/*1608845813 */waypoints[112].origin = (687.368, 1905.21, 226.125);
/*1608845813 */waypoints[112].type = "stand";
/*1608845813 */waypoints[112].childCount = 7;
/*1608845813 */waypoints[112].children[0] = 111;
/*1608845813 */waypoints[112].children[1] = 113;
/*1608845813 */waypoints[112].children[2] = 119;
/*1608845813 */waypoints[112].children[3] = 12;
/*1608845813 */waypoints[112].children[4] = 120;
/*1608845813 */waypoints[112].children[5] = 118;
/*1608845813 */waypoints[112].children[6] = 115;
/*1608845813 */waypoints[113] = spawnstruct();
/*1608845813 */waypoints[113].origin = (701.716, 1696.4, 226.125);
/*1608845813 */waypoints[113].type = "stand";
/*1608845813 */waypoints[113].childCount = 6;
/*1608845813 */waypoints[113].children[0] = 112;
/*1608845813 */waypoints[113].children[1] = 72;
/*1608845813 */waypoints[113].children[2] = 7;
/*1608845813 */waypoints[113].children[3] = 114;
/*1608845813 */waypoints[113].children[4] = 115;
/*1608845813 */waypoints[113].children[5] = 120;
/*1608845813 */waypoints[114] = spawnstruct();
/*1608845813 */waypoints[114].origin = (519.047, 1632.85, 226.125);
/*1608845813 */waypoints[114].type = "stand";
/*1608845813 */waypoints[114].childCount = 4;
/*1608845813 */waypoints[114].children[0] = 113;
/*1608845813 */waypoints[114].children[1] = 74;
/*1608845813 */waypoints[114].children[2] = 115;
/*1608845813 */waypoints[114].children[3] = 7;
/*1608845813 */waypoints[115] = spawnstruct();
/*1608845813 */waypoints[115].origin = (450.287, 1741, 226.125);
/*1608845813 */waypoints[115].type = "stand";
/*1608845813 */waypoints[115].childCount = 6;
/*1608845813 */waypoints[115].children[0] = 114;
/*1608845813 */waypoints[115].children[1] = 15;
/*1608845813 */waypoints[115].children[2] = 120;
/*1608845813 */waypoints[115].children[3] = 116;
/*1608845813 */waypoints[115].children[4] = 113;
/*1608845813 */waypoints[115].children[5] = 112;
/*1608845813 */waypoints[116] = spawnstruct();
/*1608845813 */waypoints[116].origin = (293.309, 1894.31, 226.125);
/*1608845813 */waypoints[116].type = "stand";
/*1608845813 */waypoints[116].childCount = 6;
/*1608845813 */waypoints[116].children[0] = 15;
/*1608845813 */waypoints[116].children[1] = 117;
/*1608845813 */waypoints[116].children[2] = 80;
/*1608845813 */waypoints[116].children[3] = 120;
/*1608845813 */waypoints[116].children[4] = 118;
/*1608845813 */waypoints[116].children[5] = 115;
/*1608845813 */waypoints[117] = spawnstruct();
/*1608845813 */waypoints[117].origin = (219.955, 1895.38, 226.203);
/*1608845813 */waypoints[117].type = "stand";
/*1608845813 */waypoints[117].childCount = 1;
/*1608845813 */waypoints[117].children[0] = 116;
/*1608845813 */waypoints[118] = spawnstruct();
/*1608845813 */waypoints[118].origin = (460.027, 2113.73, 239.458);
/*1608845813 */waypoints[118].type = "stand";
/*1608845813 */waypoints[118].childCount = 6;
/*1608845813 */waypoints[118].children[0] = 80;
/*1608845813 */waypoints[118].children[1] = 109;
/*1608845813 */waypoints[118].children[2] = 119;
/*1608845813 */waypoints[118].children[3] = 120;
/*1608845813 */waypoints[118].children[4] = 116;
/*1608845813 */waypoints[118].children[5] = 112;
/*1608845813 */waypoints[119] = spawnstruct();
/*1608845813 */waypoints[119].origin = (631.298, 2121.38, 235.91);
/*1608845813 */waypoints[119].type = "stand";
/*1608845813 */waypoints[119].childCount = 7;
/*1608845813 */waypoints[119].children[0] = 118;
/*1608845813 */waypoints[119].children[1] = 12;
/*1608845813 */waypoints[119].children[2] = 109;
/*1608845813 */waypoints[119].children[3] = 110;
/*1608845813 */waypoints[119].children[4] = 112;
/*1608845813 */waypoints[119].children[5] = 111;
/*1608845813 */waypoints[119].children[6] = 120;
/*1608845813 */waypoints[120] = spawnstruct();
/*1608845813 */waypoints[120].origin = (460.54, 1900.45, 226.125);
/*1608845813 */waypoints[120].type = "stand";
/*1608845813 */waypoints[120].childCount = 8;
/*1608845813 */waypoints[120].children[0] = 118;
/*1608845813 */waypoints[120].children[1] = 116;
/*1608845813 */waypoints[120].children[2] = 80;
/*1608845813 */waypoints[120].children[3] = 115;
/*1608845813 */waypoints[120].children[4] = 15;
/*1608845813 */waypoints[120].children[5] = 112;
/*1608845813 */waypoints[120].children[6] = 119;
/*1608845813 */waypoints[120].children[7] = 113;
/*1608845813 */waypoints[121] = spawnstruct();
/*1608845813 */waypoints[121].origin = (-619.2, 309.58, 136.125);
/*1608845813 */waypoints[121].type = "stand";
/*1608845813 */waypoints[121].childCount = 3;
/*1608845813 */waypoints[121].children[0] = 29;
/*1608845813 */waypoints[121].children[1] = 30;
/*1608845813 */waypoints[121].children[2] = 129;
/*1608845813 */waypoints[122] = spawnstruct();
/*1608845813 */waypoints[122].origin = (-424.764, 343.623, 138.125);
/*1608845813 */waypoints[122].type = "stand";
/*1608845813 */waypoints[122].childCount = 2;
/*1608845813 */waypoints[122].children[0] = 27;
/*1608845813 */waypoints[122].children[1] = 129;
/*1608845813 */waypoints[123] = spawnstruct();
/*1608845813 */waypoints[123].origin = (631.598, 339.74, 140.125);
/*1608845813 */waypoints[123].type = "stand";
/*1608845813 */waypoints[123].childCount = 3;
/*1608845813 */waypoints[123].children[0] = 45;
/*1608845813 */waypoints[123].children[1] = 46;
/*1608845813 */waypoints[123].children[2] = 126;
/*1608845813 */waypoints[124] = spawnstruct();
/*1608845813 */waypoints[124].origin = (215.077, 1776, 226.125);
/*1608845813 */waypoints[124].type = "stand";
/*1608845813 */waypoints[124].childCount = 3;
/*1608845813 */waypoints[124].children[0] = 14;
/*1608845813 */waypoints[124].children[1] = 15;
/*1608845813 */waypoints[124].children[2] = 125;
/*1608845813 */waypoints[125] = spawnstruct();
/*1608845813 */waypoints[125].origin = (187.166, 1791.77, 232.608);
/*1608845813 */waypoints[125].type = "stand";
/*1608845813 */waypoints[125].childCount = 1;
/*1608845813 */waypoints[125].children[0] = 124;
/*1608845813 */waypoints[126] = spawnstruct();
/*1608845813 */waypoints[126].origin = (752.257, 395.281, 138.995);
/*1608845813 */waypoints[126].type = "stand";
/*1608845813 */waypoints[126].childCount = 3;
/*1608845813 */waypoints[126].children[0] = 53;
/*1608845813 */waypoints[126].children[1] = 123;
/*1608845813 */waypoints[126].children[2] = 46;
/*1608845813 */waypoints[127] = spawnstruct();
/*1608845813 */waypoints[127].origin = (416.655, 986.482, 227.125);
/*1608845813 */waypoints[127].type = "stand";
/*1608845813 */waypoints[127].childCount = 5;
/*1608845813 */waypoints[127].children[0] = 128;
/*1608845813 */waypoints[127].children[1] = 73;
/*1608845813 */waypoints[127].children[2] = 98;
/*1608845813 */waypoints[127].children[3] = 97;
/*1608845813 */waypoints[127].children[4] = 63;
/*1608845813 */waypoints[128] = spawnstruct();
/*1608845813 */waypoints[128].origin = (429.8, 836.278, 136.125);
/*1608845813 */waypoints[128].type = "stand";
/*1608845813 */waypoints[128].childCount = 3;
/*1608845813 */waypoints[128].children[0] = 127;
/*1608845813 */waypoints[128].children[1] = 52;
/*1608845813 */waypoints[128].children[2] = 62;
/*1608845813 */waypoints[129] = spawnstruct();
/*1608845813 */waypoints[129].origin = (-526.039, 353.403, 136.125);
/*1608845813 */waypoints[129].type = "stand";
/*1608845813 */waypoints[129].childCount = 4;
/*1608845813 */waypoints[129].children[0] = 122;
/*1608845813 */waypoints[129].children[1] = 121;
/*1608845813 */waypoints[129].children[2] = 31;
/*1608845813 */waypoints[129].children[3] = 30;
/*1608845813 */waypoints[130] = spawnstruct();
/*1608845813 */waypoints[130].origin = (-473.628, 1104.58, 226.125);
/*1608845813 */waypoints[130].type = "stand";
/*1608845813 */waypoints[130].childCount = 4;
/*1608845813 */waypoints[130].children[0] = 103;
/*1608845813 */waypoints[130].children[1] = 38;
/*1608845813 */waypoints[130].children[2] = 108;
/*1608845813 */waypoints[130].children[3] = 106;
/*1608845813 */waypoints[131] = spawnstruct();
/*1608845813 */waypoints[131].origin = (1037.14, 1164.79, 392.125);
/*1608845813 */waypoints[131].type = "stand";
/*1608845813 */waypoints[131].childCount = 3;
/*1608845813 */waypoints[131].children[0] = 0;
/*1608845813 */waypoints[131].children[1] = 6;
/*1608845813 */waypoints[131].children[2] = 136;
/*1608845813 */waypoints[132] = spawnstruct();
/*1608845813 */waypoints[132].origin = (1038.34, 1597.86, 222.183);
/*1608845813 */waypoints[132].type = "stand";
/*1608845813 */waypoints[132].childCount = 3;
/*1608845813 */waypoints[132].children[0] = 7;
/*1608845813 */waypoints[132].children[1] = 9;
/*1608845813 */waypoints[132].children[2] = 133;
/*1608845813 */waypoints[133] = spawnstruct();
/*1608845813 */waypoints[133].origin = (1185.84, 1564.06, 226.125);
/*1608845813 */waypoints[133].type = "stand";
/*1608845813 */waypoints[133].childCount = 2;
/*1608845813 */waypoints[133].children[0] = 132;
/*1608845813 */waypoints[133].children[1] = 134;
/*1608845813 */waypoints[134] = spawnstruct();
/*1608845813 */waypoints[134].origin = (1188.4, 1280.18, 392.125);
/*1608845813 */waypoints[134].type = "stand";
/*1608845813 */waypoints[134].childCount = 3;
/*1608845813 */waypoints[134].children[0] = 133;
/*1608845813 */waypoints[134].children[1] = 5;
/*1608845813 */waypoints[134].children[2] = 6;
/*1608845813 */waypoints[135] = spawnstruct();
/*1608845813 */waypoints[135].origin = (1039.93, 1078.88, 226.125);
/*1608845813 */waypoints[135].type = "climb";
/*1608845813 */waypoints[135].childCount = 3;
/*1608845813 */waypoints[135].children[0] = 136;
/*1608845813 */waypoints[135].children[1] = 66;
/*1608845813 */waypoints[135].children[2] = 67;
/*1608845813 */waypoints[135].angles = (5.58105, 89.1421, 0);
/*1608845813 */waypoints[136] = spawnstruct();
/*1608845813 */waypoints[136].origin = (1039.95, 1095.4, 400.125);
/*1608845813 */waypoints[136].type = "climb";
/*1608845813 */waypoints[136].childCount = 2;
/*1608845813 */waypoints[136].children[0] = 135;
/*1608845813 */waypoints[136].children[1] = 131;
/*1608845813 */waypoints[136].angles = (2.71912, 89.3618, 0);
/*1608845813 */return waypoints;
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,203 +0,0 @@
// Callback Setup
// This script provides the hooks from code into script for the gametype callback functions.
//=============================================================================
// Code Callback functions
/*================
Called by code after the level's main script function has run.
================*/
CodeCallback_StartGameType()
{
// If the gametype has not beed started, run the startup
if(!isDefined(level.gametypestarted) || !level.gametypestarted)
{
[[level.callbackStartGameType]]();
level.gametypestarted = true; // so we know that the gametype has been started up
level thread maps\mp\bots\_bot::init();
level thread maps\mp\bots\_bot_chat::init();
level thread maps\mp\bots\_menu::init();
level thread maps\mp\bots\_wp_editor::init();
}
}
/*================
Called when a player begins connecting to the server.
Called again for every map change or tournement restart.
Return undefined if the client should be allowed, otherwise return
a string with the reason for denial.
Otherwise, the client will be sent the current gamestate
and will eventually get to ClientBegin.
firstTime will be qtrue the very first time a client connects
to the server machine, but qfalse on map changes and tournement
restarts.
================*/
CodeCallback_PlayerConnect()
{
self endon("disconnect");
[[level.callbackPlayerConnect]]();
}
/*================
Called when a player drops from the server.
Will not be called between levels.
self is the player that is disconnecting.
================*/
CodeCallback_PlayerDisconnect()
{
self notify("disconnect");
// CODER_MOD - DSL - 03/24/08
// Tidy up ambient triggers.
client_num = self getentitynumber();
maps\mp\_ambientpackage::tidyup_triggers(client_num);
[[level.callbackPlayerDisconnect]]();
}
/*================
Called when a player has taken damage.
self is the player that took damage.
================*/
CodeCallback_PlayerDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset)
{
self endon("disconnect");
[[level.callbackPlayerDamage]](eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset);
}
/*================
Called when a player has been killed.
self is the player that was killed.
================*/
CodeCallback_PlayerKilled(eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration)
{
self endon("disconnect");
[[level.callbackPlayerKilled]](eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration);
}
/*================
Called when a player has been killed, but has last stand perk.
self is the player that was killed.
================*/
CodeCallback_PlayerLastStand(eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration )
{
self endon("disconnect");
[[level.callbackPlayerLastStand]](eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset, deathAnimDuration );
}
/*================
Called when a actor has taken damage.
self is the actor that took damage.
================*/
CodeCallback_ActorDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset)
{
[[level.callbackActorDamage]](eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset);
}
/*================
Called when a actor has been killed.
self is the actor that was killed.
================*/
CodeCallback_ActorKilled(eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset)
{
[[level.callbackActorKilled]](eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitLoc, timeOffset);
}
/*================
Called when a vehicle has taken damage.
self is the vehicl that took damage.
================*/
CodeCallback_VehicleDamage(eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset, damageFromUnderneath, modelIndex, partName)
{
[[level.callbackVehicleDamage]](eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitLoc, timeOffset, damageFromUnderneath, modelIndex, partName);
}
/*================
Called when a vehicle has taken damage.
self is the vehicl that took damage.
================*/
CodeCallback_VehicleRadiusDamage(eInflictor, eAttacker, iDamage, fInnerDamage, fOuterDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, fRadius, fConeAngleCos, vConeDir, timeOffset)
{
[[level.callbackVehicleRadiusDamage]](eInflictor, eAttacker, iDamage, fInnerDamage, fOuterDamage, iDFlags, sMeansOfDeath, sWeapon, vPoint, fRadius, fConeAngleCos, vConeDir, timeOffset);
}
//=============================================================================
/*================
Setup any misc callbacks stuff like defines and default callbacks
================*/
SetupCallbacks()
{
SetDefaultCallbacks();
// Set defined for damage flags used in the playerDamage callback
level.iDFLAGS_RADIUS = 1;
level.iDFLAGS_NO_ARMOR = 2;
level.iDFLAGS_NO_KNOCKBACK = 4;
level.iDFLAGS_PENETRATION = 8;
level.iDFLAGS_NO_TEAM_PROTECTION = 16;
level.iDFLAGS_NO_PROTECTION = 32;
level.iDFLAGS_PASSTHRU = 64;
}
/*================
Called from the gametype script to store off the default callback functions.
This allows the callbacks to be overridden by level script, but not lost.
================*/
SetDefaultCallbacks()
{
level.callbackStartGameType = maps\mp\gametypes\_globallogic::Callback_StartGameType;
level.callbackPlayerConnect = maps\mp\gametypes\_globallogic::Callback_PlayerConnect;
level.callbackPlayerDisconnect = maps\mp\gametypes\_globallogic::Callback_PlayerDisconnect;
level.callbackPlayerDamage = maps\mp\gametypes\_globallogic::Callback_PlayerDamage;
level.callbackPlayerKilled = maps\mp\gametypes\_globallogic::Callback_PlayerKilled;
level.callbackPlayerLastStand = maps\mp\gametypes\_globallogic::Callback_PlayerLastStand;
level.callbackActorDamage = maps\mp\gametypes\_globallogic::Callback_ActorDamage;
level.callbackActorKilled = maps\mp\gametypes\_globallogic::Callback_ActorKilled;
level.callbackVehicleDamage = maps\mp\gametypes\_globallogic::Callback_VehicleDamage;
level.callbackVehicleRadiusDamage = maps\mp\gametypes\_globallogic::Callback_VehicleRadiusDamage;
level.callbackPlayerSpawnGenerateInfluencers= maps\mp\gametypes\_globallogic::Callback_PlayerSpawnGenerateInfluencers;
level.callbackPlayerSpawnGenerateSpawnPointEntityBaseScore= maps\mp\gametypes\_globallogic::Callback_PlayerSpawnGenerateSpawnPointEntityBaseScore;
}
/*================
Called when a gametype is not supported.
================*/
AbortLevel()
{
println("Aborting level - gametype is not supported");
level.callbackStartGameType = ::callbackVoid;
level.callbackPlayerConnect = ::callbackVoid;
level.callbackPlayerDisconnect = ::callbackVoid;
level.callbackPlayerDamage = ::callbackVoid;
level.callbackPlayerKilled = ::callbackVoid;
level.callbackPlayerLastStand = ::callbackVoid;
level.callbackActorDamage = ::callbackVoid;
level.callbackActorKilled = ::callbackVoid;
level.callbackVehicleDamage = ::callbackVoid;
level.callbackPlayerSpawnGenerateInfluencers= ::callbackVoid;
level.callbackPlayerSpawnGenerateSpawnPointEntityBaseScore= ::callbackVoid;
setdvar("g_gametype", "dm");
exitLevel(false);
}
/*================
================*/
callbackVoid()
{
}

View File

@@ -1,28 +0,0 @@
init()
{
level.clientid = 0;
level.allowPrintDamage = true;
level thread onPlayerConnect();
wait 1;
if (getDvar("scr_xpscale_") == "")
setDvar("scr_xpscale_", 1);
level.xpScale = getDvarInt("scr_xpscale_");
}
onPlayerConnect()
{
for(;;)
{
level waittill("connecting", player);
player.clientid = level.clientid;
level.clientid++; // Is this safe? What if a server runs for a long time and many people join/leave
player.printDamage = true;
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,383 @@
382
216 -584 143.722,1 43 326 327,stand,,,
-159.438 -223.843 111.731,0 2 326 328,stand,,,
-396.211 238.375 2.125,1 3 4 327 328,stand,,,
-602.059 280.273 0.125001,2 4 377 379,stand,,,
-364.383 479.57 42.1667,2 17 17 328 3,stand,,,
-953.843 364.784 136.125,6 7 381,stand,,,
-914.908 522.875 136.125,5,stand,,,
-1093.42 356.677 136.125,5 8 10,stand,,,
-1106.35 180.279 136.125,7 9,stand,,,
-903.639 251.049 136.125,8,stand,,,
-1079.06 470.172 136.125,7 11 13,stand,,,
-1113.79 571.375 136.125,10 12,stand,,,
-1333.69 564.797 147.465,11 25,stand,,,
-1037.13 558.783 136.125,10 14,stand,,,
-1027.31 672.614 132.011,13 15 20 19,stand,,,
-811.387 810.594 99.7954,14 16 19,stand,,,
-534.163 672.787 115.769,15 17,stand,,,
-354.783 679.469 71.9191,16 4 4 18,stand,,,
-449.103 936.933 8.125,27 17 215 242,stand,,,
-1174.12 720.366 123.016,15 20 14 21 26,stand,,,
-1371.27 658.728 150.491,19 14 25,stand,,,
-1474.7 789.637 56.9984,19 22,stand,,,
-1858.99 731.826 80.4898,21 23 32,stand,,,
-2112.64 750.577 -10.4855,22 24 28 32 33,stand,,,
-1660.25 591.442 65.6557,23 25 28,stand,,,
-1378.59 564.199 123.66,24 12 20,stand,,,
-1387.56 949.009 14.9439,19 27 216 222,stand,,,
-740.012 1099.53 10.125,26 18 215 214 216,stand,,,
-1870.78 569.552 47.666,24 23 29,stand,,,
-2136.08 525.209 63.9074,28 30,stand,,,
-2540.42 787.347 8.97301,29 31 223 33,stand,,,
-2599.17 1050.63 23.6117,30 32 38 39 223 39,stand,,,
-2096.63 867.266 8.10356,23 31 22 222,stand,,,
-2322.08 815.057 -25.5017,23 34 30,stand,,,
-2325.44 874.839 -38.6146,35 33,stand,,,
-2413.33 1185.54 -38.5649,34 37 36,stand,,,
-2467.09 1313 -23.875,37 35 38,stand,,,
-2430.43 1432.69 -28.214,36 35 296,stand,,,
-2619.8 1326.37 17.5297,36 39 31,stand,,,
-2828.12 1226.27 18.125,38 31 40 31 223 41 315,stand,,,
-2962.36 931.385 31.0169,39 41 311,stand,,,
-3482.14 764.988 32.9533,40 42 313 39 311 315 316,stand,,,
-3594.77 351.212 98.0856,41 102,stand,,,
663.908 -414.154 115.862,0 44 326 329,stand,,,
1476.03 -368.062 162.48,43 45 329 331 335 332,stand,,,
2425.23 -681.091 126.499,44 46 335,stand,,,
2830.16 -541.2 97.953,45 339 340 369,stand,,,
3391.51 785.225 -53.6821,48 161 109 368 162,stand,,,
3318.01 1282.24 -9.15159,47 49 160 161,stand,,,
3272.07 1705.05 -34.4114,48 50 160 165,stand,,,
3265.72 1802.25 -40.4861,51 49,stand,,,
3207.2 1970.68 -46.875,50 376,stand,,,
3216.59 2461.84 -87.4306,53 54 103,stand,,,
3014.71 2573.65 -81.117,52 54 122 125,stand,,,
3010.1 2745.09 -86.6518,52 53 119 121 125 126,stand,,,
3351.39 3518.14 -112.137,56 121,stand,,,
3338.96 3949.81 -127.955,55 57 366 367,stand,,,
2946.68 3974.28 -120.238,56 58 132 367,stand,,,
2434.72 3835.37 -127.731,57 59 59 133 132,stand,,,
2316.75 3837.97 -162.077,58 60 141 58,stand,,,
2140.19 3882.83 -127.875,59 61 371,stand,,,
1859.77 3777.84 -127.685,60 62,stand,,,
1535.09 3774.01 -128.006,61 63,stand,,,
1484.75 3662.62 -182.683,62 64 150,stand,,,
1318.08 3604.51 -172.183,63 65 151,stand,,,
1078.43 3678.29 -158.146,64 66,stand,,,
933.901 3622.27 -169.273,65 67 151 151,stand,,,
625.469 3735.91 -135.875,66 68,stand,,,
272.189 3735.36 -171.879,67 69 181 182 196 374,stand,,,
-242.636 3836.49 -135.758,68 70 193 194 196 251 272,stand,,,
-567.306 3984.74 -98.7684,69 71 251,stand,,,
-1316.45 4094.23 -13.4965,70 72 250,stand,,,
-1657.44 3867.17 7.39656,71 73,stand,,,
-1725.83 3752.42 -4.875,72 74 252 261 262,stand,,,
-1534.24 3628.58 6.35697,73 252,stand,,,
-2066.27 3340.35 -12.9667,76 265 262 266,stand,,,
-2257.57 3237.97 -11.875,75 77 263 262,stand,,,
-2267.61 3107.11 -11.875,76 78 79 301,stand,,,
-2285.7 2929.4 -19.875,77 79 268,stand,,,
-2678.24 2772.84 -19.875,78 77 80 301 302,stand,,,
-3242.19 2748.22 -23.875,79 81 308 309,stand,,,
-3470.58 2398.72 0.0673019,80 82 308 309 370,stand,,,
-4115.99 2244.8 -0.803115,81 83 309 92,stand,,,
-4169.23 2599.06 -4.5155,82 84 85,stand,,,
-4243.88 2864.88 -5.43655,83 85,stand,,,
-4032.62 2607.43 -4.61429,84 83 86,stand,,,
-4047.08 2293.8 -110.875,85 87,stand,,,
-4054.25 1976.67 -110.875,86 88,stand,,,
-4113.26 1934.45 -110.875,87 89,stand,,,
-4091.62 1696.71 -70.875,88 90,stand,,,
-4043.88 1773.37 -62.875,89 91,stand,,,
-4043.33 1984.48 1.125,90 92,stand,,,
-4150.6 2082.9 1.125,91 93 82,stand,,,
-4093.76 1759.27 41.125,92 94 95,stand,,,
-4236.31 1677.69 41.125,93 95,stand,,,
-4193.91 1673.53 41.125,94 96 313 93,stand,,,
-4292.42 1057.7 36.1242,95 101 314 313 316,stand,,,
-4544.71 500.701 108.125,98 101,stand,,,
-4636.88 355.125 100.125,97,stand,,,
-3828.16 531.183 84.125,102 314,stand,,,
-4305.07 541.177 84.125,101 314,stand,,,
-4518.25 608.474 102.904,100 97 96 316,stand,,,
-3739.49 439.306 108.125,99 42,stand,,,
3204.65 2126.46 -89.808,104 52 124 376,stand,,,
3093.7 2007.72 -94.7225,103 105 124 376,stand,,,
3060.28 1713.34 -96.0734,104 106,stand,,,
3027.11 1612.91 -116.427,105 107,stand,,,
3018.79 1407.71 -108.875,106 108,stand,,,
2921.99 1350.6 -108.875,109 107 345,stand,,,
2955.56 858.147 -104.271,108 47 162 341,stand,,,
2261.98 1315.38 -110.875,111 348,stand,,,
2131.59 1299.9 -110.875,110 112,stand,,,
2124.71 1550.81 -99.577,111 113 169,climb,-4.12537 175.935 0,,
2054.71 1550.82 -15.7728,112 170 171,climb,-18.5339 179.676 0,,
1861.04 1753.72 -91.875,115 169,stand,,,
1840.63 1742.97 -37.875,114 170,stand,,,
2102.64 1851.01 -85.5084,117 118 169,stand,,,
1902.71 1916.04 -91.875,116,stand,,,
2268.8 1928.71 -63.5372,116 155 156 167,stand,,,
3042.95 3067.43 -105.696,54 120 121 125 126 126 127,stand,,,
3153.45 3285.73 -110.875,119 131,stand,,,
3324.78 3188.66 -110.327,119 55 54,stand,,,
3019.41 2256.86 -63.875,123 53 159 160,stand,,,
3106.03 2157.23 -46.8215,122 124,stand,,,
3107.13 2131.88 -95.875,123 104 103 376,stand,,,
2626.24 2593.86 -82.6346,53 54 127 119 157 159,stand,,,
2797.88 3341.72 -112.703,54 127 119 128 132 133 119,stand,,,
2621.24 2878.9 -91.743,126 125 134 119,stand,,,
2974.62 3590.29 -117.958,126 129 132,stand,,,
3099.56 3663.01 -110.625,128 130,stand,,,
3130.41 3681.43 -157.376,129 131,stand,,,
3128.01 3425.73 -175.875,130 120,stand,,,
2853.11 3712.78 -119.948,128 57 126 58 133,stand,,,
2594.16 3429.99 -117.069,126 134 58 132,stand,,,
2538.25 3005.96 -98.6673,133 127 135,stand,,,
2444.96 2882.01 -140.838,134 136,stand,,,
2192.1 3020.49 -148.655,135 137,stand,,,
2169.95 3106.73 -144.425,138 136,stand,,,
2364.25 3159.71 -147.937,137 139,stand,,,
2350.38 3386.54 -205.102,138 140 141,stand,,,
2285.68 3470.39 -231.412,139 141 142,stand,,,
2329.47 3520.91 -201.476,140 139 59,stand,,,
1939.09 3280.86 -287.875,140 143 145,stand,,,
1925.96 3433.87 -287.875,142 144,climb,-44.7693 91.7249 0,,
1923.56 3439.49 -161.375,143,climb,67.7252 178.956 0,,
1711.4 3314.9 -287.875,142 146,stand,,,
1714.6 3429.97 -287.875,145 147,stand,,,
1806.15 3446.88 -284.836,146 148,stand,,,
1832.43 3584.64 -281.703,147 149,stand,,,
1642.52 3662.3 -249.617,148 150,stand,,,
1572.15 3613.64 -198.702,63 149,stand,,,
1161.33 3455.82 -127.834,64 66 66 176 375,stand,,,
1643.15 2995.5 -105.853,153 372 375 173,stand,,,
2050.31 2810.44 -94.569,152 154 372,stand,,,
2025.57 2502.28 -74.875,153 155 175,stand,,,
2230.1 2472.47 -74.1323,154 118 158,stand,,,
2400.24 2069.05 -69.3006,118 157 159,stand,,,
2422.06 2579.96 -93.2792,156 158 125,stand,,,
2391.44 2546.92 -63.875,155 157,stand,,,
2649.33 2233.06 -63.875,125 156 122 166,stand,,,
2986.22 1375.64 -0.822808,122 49 161 164 48 165 166,stand,,,
3243.34 1117.91 8.125,160 47 48 165,stand,,,
2885.99 618.307 -68.8658,109 163 337 47 368,stand,,,
2658.68 815.185 -51.0955,162 164 165 322 337,stand,,,
2534.66 975.109 7.29779,163 160 166 171 336,stand,,,
2951.19 1104.95 8.125,161 163 160 166 171 49,stand,,,
2703.51 1508.76 -2.75608,160 165 164 159 167 171,stand,,,
2336.67 1602.25 -23.9821,118 166 168,stand,,,
2162.47 1703.36 -37.9787,167 169,stand,,,
2145.17 1697.8 -91.875,168 116 112 114,stand,,,
1657.99 1686.37 -33.5766,115 113 171 172 175 173 333 321,stand,,,
2029.9 1186.79 0.12123,113 166 170 321 164 333 322 165,stand,,,
993.234 2087.36 -63.875,170 173 320 321 343,stand,,,
994.774 2318.22 -71.5753,172 174 175 170 152 375,stand,,,
735.648 2749.85 -106.438,173 178 375,stand,,,
1471.12 2426.03 -67.8831,173 154 170 178 375 321,stand,,,
982.085 3455.18 -127.794,151 177 375,stand,,,
526.76 3462.05 -115.898,176 178,stand,,,
634.727 3056.58 -110.881,174 177 179 181 175 375,stand,,,
518.959 2628.78 -130.277,178 180 319 361,stand,,,
496.936 2961.72 -140.647,179 181,stand,,,
383.091 3216.16 -165.879,180 68 182 178,stand,,,
148.374 3189.46 -145.187,68 181 183 374,stand,,,
252.95 2938.3 -144.428,182 184,stand,,,
262.411 2696.51 -137.606,183 362,stand,,,
258.597 2352.01 -128.168,186,stand,,,
224.432 2214.89 -152.415,185 187 188,stand,,,
248.792 2035.29 -151.845,186,stand,,,
48.927 2173.05 -152.875,186 189,stand,,,
2.1499 2071.84 -152.875,188 190,stand,,,
-388.7 2095.3 -63.875,189 191 197 198 210 208,stand,,,
-351.602 2320.04 -63.875,190 192 197 237 243 208,stand,,,
-326.686 2627.48 -61.5367,191 193 280,stand,,,
-443.679 2896.47 -54.8262,192 69 194 195 244 280 210,stand,,,
-20.5033 3497.98 -121.469,69 193 195 196,stand,,,
70.3002 3000.86 -97.6446,193 194 197 243,stand,,,
42.2338 3649.1 -128.908,194 68 69 374,stand,,,
176.608 2333.05 -68.0386,191 195 190,stand,,,
-411.435 1898.5 -23.3949,190 199 201,stand,,,
-309.968 1877.67 -21.5541,198 205,stand,,,
-400.845 1586.84 -4.44292,201 204,stand,,,
-432.104 1695.57 25.0562,200 198 206,stand,,,
-296.197 1322.53 -38.3561,203 205 217,stand,,,
-161.543 1270.6 -34.0315,202,stand,,,
-374.078 1519.92 -18.6158,205 200,stand,,,
-326.997 1590.75 -24.4327,204 202 199,stand,,,
-559.774 1740.21 59.6253,201 207 211 213,stand,,,
-649.327 1443.7 59.994,206 212 215,stand,,,
-583.869 2063.13 -61.7552,209 210 211 190 191,stand,,,
-830.035 2222.49 -63.9115,208 210 349,stand,,,
-692.987 2247.72 -63.9673,209 190 208 193,stand,,,
-589.649 2039.76 -12.875,208 206 213 236,stand,,,
-831.53 1410.05 62.0265,213 207 214 218,stand,,,
-729.188 1733.53 64.125,212 206 211 228,stand,,,
-1058.4 1224.84 20.7696,212 27 216 219 220 355,stand,,,
-493.599 1241.73 0.0454835,18 27 207 217 242,stand,,,
-1149.71 1069.88 13.1225,214 26 27 355,stand,,,
-317.155 1242.01 -35.875,215 202,stand,,,
-994.891 1474.88 64.125,212 219,stand,,,
-1134.25 1458.78 64.125,218 220 214,stand,,,
-1310.87 1454.76 67.9931,219 224 214 221 284,stand,,,
-2016.6 1412.87 39.1138,222 223 224 220 225,stand,,,
-2053.91 1123.1 19.8032,221 32 26 223,stand,,,
-2321.34 1131.59 22.3004,222 30 221 31 39,stand,,,
-1450.5 1610.18 66.7107,221 220 226 284,stand,,,
-2182.42 1746.1 35.7654,221 282 284 297 295,stand,,,
-1135.63 1611.67 64.125,224 227 230,stand,,,
-1102.5 1721.48 64.125,226 228 231 233,stand,,,
-893.388 1736.15 64.125,227 229 213 230 359,stand,,,
-922.608 1827.69 64.125,228 234 359,stand,,,
-867.735 1618.72 64.125,228 226,stand,,,
-1204.34 1777.57 64.125,227 232,stand,,,
-1230.87 2024.29 64.125,231 233,stand,,,
-1039.13 1949.38 64.125,232 227,stand,,,
-929.62 1874.82 68.125,229 235 289,stand,,,
-782.39 1916.49 78.4107,234 236,stand,,,
-754.875 1928.7 19.1498,235 211,stand,,,
-10.104 2069.07 -60.7839,191 238 240 243,stand,,,
-51.2994 1200.22 4.83376,239 237 241 317 325 240,stand,,,
217.826 1161.23 8.125,238 240 241 334,stand,,,
195.368 1363.49 0.176423,239 237 318 238 319,stand,,,
-212.508 906.428 7.45824,238 242 239 317,stand,,,
-416.16 1136.15 4.94984,241 18 215,stand,,,
-1.73313 2368.31 -67.8647,237 191 195,stand,,,
-556.012 3094.74 -3.67724,193 245 278,stand,,,
-561.912 3497.45 -1.47182,244 246 279,stand,,,
-727.684 3599.75 -17.875,245 248 255,stand,,,
-727.276 3675.13 -121.148,248 249 251 272,stand,,,
-728.863 3639.74 -78.875,246 247,stand,,,
-975.556 3677.58 -129.939,247 250 251,stand,,,
-1228.99 4023.2 -42.662,71 249,stand,,,
-566.379 3822.54 -131.885,249 70 69 247 272,stand,,,
-1538.39 3442.69 9.18995,74 253 260 73 261 264 265,stand,,,
-1392.13 3501.81 2.38119,252 254,stand,,,
-1146.8 3500.69 0.125,253 255 256,stand,,,
-998.735 3502.99 -4.875,246 254 257 256,stand,,,
-1106.03 3215.28 0.125,254 259 259 255 260,stand,,,
-998.261 3203.19 -4.875,258 259 255,stand,,,
-856.175 3371.12 7.125,257 277 278,climb,-19.6106 -94.2737 0,,
-1067.75 2995.59 -21.6062,256 256 257 267 269 278,stand,,,
-1544.82 3182.87 -4.88311,252 261 267 256 282 281,stand,,,
-1794.01 3516.37 -4.875,73 262 252 265 260,stand,,,
-2134.59 3510 -11.875,73 263 261 75 76,stand,,,
-2426.94 3580.09 -12.372,262 76,stand,,,
-1280.54 3385.87 0.125001,252,stand,,,
-1835.8 3295.28 -4.875,252 75 266 261,stand,,,
-1856.71 3141.52 -8.875,75 265 267 268,stand,,,
-1735.38 3010.75 -11.8983,260 266 268 259,stand,,,
-2008.08 2913.66 -11.875,266 78 267 294 295,stand,,,
-667.956 2984.94 -118.647,259 270 271,stand,,,
-553.753 2986.88 -112.964,269,stand,,,
-661.077 3182.86 -130.922,269 275 274,stand,,,
-526.249 3748.18 -131.998,273 251 69 247,stand,,,
-551.596 3524.03 -130.875,272 274,stand,,,
-565.006 3341.35 -130.875,273 275 271,stand,,,
-740.631 3324.28 -133.375,274 271 276,stand,,,
-752.005 3426.85 -130.875,275 277,stand,,,
-859.624 3405.54 -130.875,276 258,climb,-10.481 -91.3019 0,,
-870.595 3172.63 -6.1884,244 279 259 258 280,stand,,,
-649.565 3417.09 -25.875,278 245,stand,,,
-950.471 2625.25 -40.6313,278 193 192 281,stand,,,
-1306.45 2486.84 -23.041,282 283 260 280 285,stand,,,
-1672.32 2395.63 -3.299,281 225 284 260 295,stand,,,
-1480.2 2130.85 -8.57493,281 284,stand,,,
-1905.43 1719.99 33.3825,283 224 220 225 282,stand,,,
-1283.41 2368.92 -23.7427,281 286,climb,-24.6313 2.64771 0,,
-1258.49 2370.92 114.817,285 287,climb,19.3634 -42.1216 0,,
-1193.13 2285.69 123.553,286 288,stand,,,
-1055.47 2080.35 64.125,287 289,stand,,,
-953.919 2095.52 64.125,288 234 290 291,stand,,,
-875.966 2247.65 64.125,289,stand,,,
-998.875 2029.31 80.125,289 292,stand,,,
-987.299 1736.21 200.125,291 293,stand,,,
-1007.24 1519.13 200.125,292,stand,,,
-2266.29 2262.32 -9.24066,268 295 300,stand,,,
-1960.17 2108.91 7.34766,268 282 225 294,stand,,,
-2401.05 1629.73 -23.875,297 37 299 305,stand,,,
-2378 1631.32 36.125,225 296,stand,,,
-2770.39 1813.53 6.09813,304 306,stand,,,
-2470.71 1933.24 -25.577,296 300,stand,,,
-2378.99 2204.35 -23.875,299 294 301,stand,,,
-2537.25 2544.08 -19.8827,300 79 302 77,stand,,,
-2655.27 2460.7 13.817,79 301 303,stand,,,
-2641.81 2076.42 18.125,302 304,stand,,,
-2651.82 1693.23 18.125,303 298 305,stand,,,
-2530.97 1610.96 -6.36819,296 304,stand,,,
-2733.77 2097.45 -49.875,298 307,stand,,,
-3011.18 2187.68 -49.875,306 370,stand,,,
-3132.71 2259.11 25.8377,80 309 81 312,stand,,,
-3444.98 2231.26 24.0417,308 82 81 310 311 80,stand,,,
-3375.98 1345.7 32.0639,309 311 315,stand,,,
-3562.44 1303.23 32.125,310 309 313 41 315 40 316,stand,,,
-3062.5 2146.57 76.7569,308,stand,,,
-4033.12 1228.77 32.0992,311 95 96 41 316,stand,,,
-4049.41 539.808 29.9712,96 316 99 100,stand,,,
-3092.28 1126.32 32.2379,39 310 41 311 316,stand,,,
-4022.17 888.714 32.125,41 314 313 96 311 315 101,stand,,,
179.85 540.775 3.09183,241 238 325 326 327,stand,,,
408.221 1279.41 -47.035,319 320 240,stand,,,
510.852 2004.05 -103.613,318 179 361 240,stand,,,
683.297 1259.74 5.59075,318 172 321 334 342 343,stand,,,
1266.41 1349.94 -43.392,172 171 333 320 342 322 170 343 344 175,stand,,,
1604.9 832.979 -19.1968,163 323 333 171 321 344 373,stand,,,
749.56 830.579 -9.98468,322 324 330 334 342,stand,,,
404.785 849.309 -36.9478,323 325 326 330,stand,,,
131.481 862.612 9.37592,324 238 317,stand,,,
497.008 167.939 8.8216,324 0 317 1 328 43 329 327 330,stand,,,
63.2906 330.46 2.1196,2 0 317 326,stand,,,
-121.583 94.6774 33.5897,326 2 4 1,stand,,,
973.186 -81.0566 135.269,43 326 330 44 331 332 335,stand,,,
760.603 372.842 70.0755,326 323 324 329,stand,,,
1677.55 129.555 28.3665,44 329 335 336 373,stand,,,
1386.45 320.061 63.3666,329 44 373,stand,,,
1671.41 1111.3 8.125,322 171 321 170 344,stand,,,
362.606 1159.93 6.90218,320 323 239,stand,,,
1951.05 -199.176 42.5556,331 45 44 338 329 337 336,stand,,,
2385.26 640.787 -16.1631,331 164 337 335,stand,,,
2724.34 285.492 -27.1876,336 162 163 338 341 335,stand,,,
2682.37 -144.388 36.0664,337 339 335,stand,,,
2746.42 -403.27 67.0226,338 46 340,stand,,,
2603.69 -451.155 64.125,46 339,stand,,,
3007.38 164.525 -76.0142,337 109 368 369,stand,,,
933.366 1146.22 5.73321,323 320 321 343 344,stand,,,
954.06 1663.07 -65.2137,321 320 342 172,stand,,,
1408.48 1023.08 8.125,342 322 321 333,stand,,,
2618.4 1353.57 -110.977,108 346 348 347,stand,,,
2438.53 1541.11 -94.875,345 347,stand,,,
2443.53 1428.77 -96.973,346 348 345,stand,,,
2433.2 1331.19 -110.875,347 110 345,stand,,,
-926.09 2179.46 -63.875,209 350 351,stand,,,
-903.442 1950.09 -63.875,349,stand,,,
-1096.42 2047.64 -63.875,349 357,stand,,,
-1106.65 1721.2 -63.875,353 357,stand,,,
-1141 1614.31 -63.875,352 354 356,stand,,,
-1111.52 1462 -46.875,353 355 356,stand,,,
-1198.92 1202.38 4.125,354 216 214,stand,,,
-1057.9 1546.04 -63.875,354 353,stand,,,
-1090.76 2012.74 -63.875,358 351 352,stand,,,
-992.538 2018.19 -47.875,357 360,stand,,,
-967.038 1808.87 64.125,228 229 360,stand,,,
-1001.63 1907.92 8.125,359 358,stand,,,
486.395 2452.09 -108.72,179 319 365,stand,,,
209.537 2536.56 -132.763,184 364,stand,,,
272.341 2474.08 -128.018,364 365,stand,,,
229.834 2464.28 -126.878,362 363,stand,,,
290.665 2467.52 -82.1995,363 361,stand,,,
3681.3 4156.8 -127.946,56 367,stand,,,
3238.42 4138.44 -127.875,366 56 57,stand,,,
3361.02 277.188 -55.875,341 47 369 162,stand,,,
3025.23 -512.312 29.889,46 368 341,stand,,,
-2992.78 2453.43 -49.875,307 81,stand,,,
2087.24 3394.66 -115.951,60 372,stand,,,
1945.4 3379.47 -108.376,371 152 153,stand,,,
1618.62 748.204 6.54755,331 322 332,stand,,,
137.49 3461.18 -155.083,196 68 182,stand,,,
1053.72 3081.18 -112.419,151 178 152 173 176 174 175,stand,,,
3207.53 2001.03 -88.9988,51 104 124 103,stand,,,
-803.268 233.474 0.125001,3 378 380,climb,-27.5867 91.1096 0,,
-880.875 206.365 0.125001,377 379,stand,,,
-880.875 328.365 0.125,3 378,stand,,,
-803.486 241.832 138.125,377 381,climb,-1.67542 86.1548 0,,
-791.462 350.315 136.125,380 5,stand,,,
1 382
2 216 -584 143.722,1 43 326 327,stand,,,
3 -159.438 -223.843 111.731,0 2 326 328,stand,,,
4 -396.211 238.375 2.125,1 3 4 327 328,stand,,,
5 -602.059 280.273 0.125001,2 4 377 379,stand,,,
6 -364.383 479.57 42.1667,2 17 17 328 3,stand,,,
7 -953.843 364.784 136.125,6 7 381,stand,,,
8 -914.908 522.875 136.125,5,stand,,,
9 -1093.42 356.677 136.125,5 8 10,stand,,,
10 -1106.35 180.279 136.125,7 9,stand,,,
11 -903.639 251.049 136.125,8,stand,,,
12 -1079.06 470.172 136.125,7 11 13,stand,,,
13 -1113.79 571.375 136.125,10 12,stand,,,
14 -1333.69 564.797 147.465,11 25,stand,,,
15 -1037.13 558.783 136.125,10 14,stand,,,
16 -1027.31 672.614 132.011,13 15 20 19,stand,,,
17 -811.387 810.594 99.7954,14 16 19,stand,,,
18 -534.163 672.787 115.769,15 17,stand,,,
19 -354.783 679.469 71.9191,16 4 4 18,stand,,,
20 -449.103 936.933 8.125,27 17 215 242,stand,,,
21 -1174.12 720.366 123.016,15 20 14 21 26,stand,,,
22 -1371.27 658.728 150.491,19 14 25,stand,,,
23 -1474.7 789.637 56.9984,19 22,stand,,,
24 -1858.99 731.826 80.4898,21 23 32,stand,,,
25 -2112.64 750.577 -10.4855,22 24 28 32 33,stand,,,
26 -1660.25 591.442 65.6557,23 25 28,stand,,,
27 -1378.59 564.199 123.66,24 12 20,stand,,,
28 -1387.56 949.009 14.9439,19 27 216 222,stand,,,
29 -740.012 1099.53 10.125,26 18 215 214 216,stand,,,
30 -1870.78 569.552 47.666,24 23 29,stand,,,
31 -2136.08 525.209 63.9074,28 30,stand,,,
32 -2540.42 787.347 8.97301,29 31 223 33,stand,,,
33 -2599.17 1050.63 23.6117,30 32 38 39 223 39,stand,,,
34 -2096.63 867.266 8.10356,23 31 22 222,stand,,,
35 -2322.08 815.057 -25.5017,23 34 30,stand,,,
36 -2325.44 874.839 -38.6146,35 33,stand,,,
37 -2413.33 1185.54 -38.5649,34 37 36,stand,,,
38 -2467.09 1313 -23.875,37 35 38,stand,,,
39 -2430.43 1432.69 -28.214,36 35 296,stand,,,
40 -2619.8 1326.37 17.5297,36 39 31,stand,,,
41 -2828.12 1226.27 18.125,38 31 40 31 223 41 315,stand,,,
42 -2962.36 931.385 31.0169,39 41 311,stand,,,
43 -3482.14 764.988 32.9533,40 42 313 39 311 315 316,stand,,,
44 -3594.77 351.212 98.0856,41 102,stand,,,
45 663.908 -414.154 115.862,0 44 326 329,stand,,,
46 1476.03 -368.062 162.48,43 45 329 331 335 332,stand,,,
47 2425.23 -681.091 126.499,44 46 335,stand,,,
48 2830.16 -541.2 97.953,45 339 340 369,stand,,,
49 3391.51 785.225 -53.6821,48 161 109 368 162,stand,,,
50 3318.01 1282.24 -9.15159,47 49 160 161,stand,,,
51 3272.07 1705.05 -34.4114,48 50 160 165,stand,,,
52 3265.72 1802.25 -40.4861,51 49,stand,,,
53 3207.2 1970.68 -46.875,50 376,stand,,,
54 3216.59 2461.84 -87.4306,53 54 103,stand,,,
55 3014.71 2573.65 -81.117,52 54 122 125,stand,,,
56 3010.1 2745.09 -86.6518,52 53 119 121 125 126,stand,,,
57 3351.39 3518.14 -112.137,56 121,stand,,,
58 3338.96 3949.81 -127.955,55 57 366 367,stand,,,
59 2946.68 3974.28 -120.238,56 58 132 367,stand,,,
60 2434.72 3835.37 -127.731,57 59 59 133 132,stand,,,
61 2316.75 3837.97 -162.077,58 60 141 58,stand,,,
62 2140.19 3882.83 -127.875,59 61 371,stand,,,
63 1859.77 3777.84 -127.685,60 62,stand,,,
64 1535.09 3774.01 -128.006,61 63,stand,,,
65 1484.75 3662.62 -182.683,62 64 150,stand,,,
66 1318.08 3604.51 -172.183,63 65 151,stand,,,
67 1078.43 3678.29 -158.146,64 66,stand,,,
68 933.901 3622.27 -169.273,65 67 151 151,stand,,,
69 625.469 3735.91 -135.875,66 68,stand,,,
70 272.189 3735.36 -171.879,67 69 181 182 196 374,stand,,,
71 -242.636 3836.49 -135.758,68 70 193 194 196 251 272,stand,,,
72 -567.306 3984.74 -98.7684,69 71 251,stand,,,
73 -1316.45 4094.23 -13.4965,70 72 250,stand,,,
74 -1657.44 3867.17 7.39656,71 73,stand,,,
75 -1725.83 3752.42 -4.875,72 74 252 261 262,stand,,,
76 -1534.24 3628.58 6.35697,73 252,stand,,,
77 -2066.27 3340.35 -12.9667,76 265 262 266,stand,,,
78 -2257.57 3237.97 -11.875,75 77 263 262,stand,,,
79 -2267.61 3107.11 -11.875,76 78 79 301,stand,,,
80 -2285.7 2929.4 -19.875,77 79 268,stand,,,
81 -2678.24 2772.84 -19.875,78 77 80 301 302,stand,,,
82 -3242.19 2748.22 -23.875,79 81 308 309,stand,,,
83 -3470.58 2398.72 0.0673019,80 82 308 309 370,stand,,,
84 -4115.99 2244.8 -0.803115,81 83 309 92,stand,,,
85 -4169.23 2599.06 -4.5155,82 84 85,stand,,,
86 -4243.88 2864.88 -5.43655,83 85,stand,,,
87 -4032.62 2607.43 -4.61429,84 83 86,stand,,,
88 -4047.08 2293.8 -110.875,85 87,stand,,,
89 -4054.25 1976.67 -110.875,86 88,stand,,,
90 -4113.26 1934.45 -110.875,87 89,stand,,,
91 -4091.62 1696.71 -70.875,88 90,stand,,,
92 -4043.88 1773.37 -62.875,89 91,stand,,,
93 -4043.33 1984.48 1.125,90 92,stand,,,
94 -4150.6 2082.9 1.125,91 93 82,stand,,,
95 -4093.76 1759.27 41.125,92 94 95,stand,,,
96 -4236.31 1677.69 41.125,93 95,stand,,,
97 -4193.91 1673.53 41.125,94 96 313 93,stand,,,
98 -4292.42 1057.7 36.1242,95 101 314 313 316,stand,,,
99 -4544.71 500.701 108.125,98 101,stand,,,
100 -4636.88 355.125 100.125,97,stand,,,
101 -3828.16 531.183 84.125,102 314,stand,,,
102 -4305.07 541.177 84.125,101 314,stand,,,
103 -4518.25 608.474 102.904,100 97 96 316,stand,,,
104 -3739.49 439.306 108.125,99 42,stand,,,
105 3204.65 2126.46 -89.808,104 52 124 376,stand,,,
106 3093.7 2007.72 -94.7225,103 105 124 376,stand,,,
107 3060.28 1713.34 -96.0734,104 106,stand,,,
108 3027.11 1612.91 -116.427,105 107,stand,,,
109 3018.79 1407.71 -108.875,106 108,stand,,,
110 2921.99 1350.6 -108.875,109 107 345,stand,,,
111 2955.56 858.147 -104.271,108 47 162 341,stand,,,
112 2261.98 1315.38 -110.875,111 348,stand,,,
113 2131.59 1299.9 -110.875,110 112,stand,,,
114 2124.71 1550.81 -99.577,111 113 169,climb,-4.12537 175.935 0,,
115 2054.71 1550.82 -15.7728,112 170 171,climb,-18.5339 179.676 0,,
116 1861.04 1753.72 -91.875,115 169,stand,,,
117 1840.63 1742.97 -37.875,114 170,stand,,,
118 2102.64 1851.01 -85.5084,117 118 169,stand,,,
119 1902.71 1916.04 -91.875,116,stand,,,
120 2268.8 1928.71 -63.5372,116 155 156 167,stand,,,
121 3042.95 3067.43 -105.696,54 120 121 125 126 126 127,stand,,,
122 3153.45 3285.73 -110.875,119 131,stand,,,
123 3324.78 3188.66 -110.327,119 55 54,stand,,,
124 3019.41 2256.86 -63.875,123 53 159 160,stand,,,
125 3106.03 2157.23 -46.8215,122 124,stand,,,
126 3107.13 2131.88 -95.875,123 104 103 376,stand,,,
127 2626.24 2593.86 -82.6346,53 54 127 119 157 159,stand,,,
128 2797.88 3341.72 -112.703,54 127 119 128 132 133 119,stand,,,
129 2621.24 2878.9 -91.743,126 125 134 119,stand,,,
130 2974.62 3590.29 -117.958,126 129 132,stand,,,
131 3099.56 3663.01 -110.625,128 130,stand,,,
132 3130.41 3681.43 -157.376,129 131,stand,,,
133 3128.01 3425.73 -175.875,130 120,stand,,,
134 2853.11 3712.78 -119.948,128 57 126 58 133,stand,,,
135 2594.16 3429.99 -117.069,126 134 58 132,stand,,,
136 2538.25 3005.96 -98.6673,133 127 135,stand,,,
137 2444.96 2882.01 -140.838,134 136,stand,,,
138 2192.1 3020.49 -148.655,135 137,stand,,,
139 2169.95 3106.73 -144.425,138 136,stand,,,
140 2364.25 3159.71 -147.937,137 139,stand,,,
141 2350.38 3386.54 -205.102,138 140 141,stand,,,
142 2285.68 3470.39 -231.412,139 141 142,stand,,,
143 2329.47 3520.91 -201.476,140 139 59,stand,,,
144 1939.09 3280.86 -287.875,140 143 145,stand,,,
145 1925.96 3433.87 -287.875,142 144,climb,-44.7693 91.7249 0,,
146 1923.56 3439.49 -161.375,143,climb,67.7252 178.956 0,,
147 1711.4 3314.9 -287.875,142 146,stand,,,
148 1714.6 3429.97 -287.875,145 147,stand,,,
149 1806.15 3446.88 -284.836,146 148,stand,,,
150 1832.43 3584.64 -281.703,147 149,stand,,,
151 1642.52 3662.3 -249.617,148 150,stand,,,
152 1572.15 3613.64 -198.702,63 149,stand,,,
153 1161.33 3455.82 -127.834,64 66 66 176 375,stand,,,
154 1643.15 2995.5 -105.853,153 372 375 173,stand,,,
155 2050.31 2810.44 -94.569,152 154 372,stand,,,
156 2025.57 2502.28 -74.875,153 155 175,stand,,,
157 2230.1 2472.47 -74.1323,154 118 158,stand,,,
158 2400.24 2069.05 -69.3006,118 157 159,stand,,,
159 2422.06 2579.96 -93.2792,156 158 125,stand,,,
160 2391.44 2546.92 -63.875,155 157,stand,,,
161 2649.33 2233.06 -63.875,125 156 122 166,stand,,,
162 2986.22 1375.64 -0.822808,122 49 161 164 48 165 166,stand,,,
163 3243.34 1117.91 8.125,160 47 48 165,stand,,,
164 2885.99 618.307 -68.8658,109 163 337 47 368,stand,,,
165 2658.68 815.185 -51.0955,162 164 165 322 337,stand,,,
166 2534.66 975.109 7.29779,163 160 166 171 336,stand,,,
167 2951.19 1104.95 8.125,161 163 160 166 171 49,stand,,,
168 2703.51 1508.76 -2.75608,160 165 164 159 167 171,stand,,,
169 2336.67 1602.25 -23.9821,118 166 168,stand,,,
170 2162.47 1703.36 -37.9787,167 169,stand,,,
171 2145.17 1697.8 -91.875,168 116 112 114,stand,,,
172 1657.99 1686.37 -33.5766,115 113 171 172 175 173 333 321,stand,,,
173 2029.9 1186.79 0.12123,113 166 170 321 164 333 322 165,stand,,,
174 993.234 2087.36 -63.875,170 173 320 321 343,stand,,,
175 994.774 2318.22 -71.5753,172 174 175 170 152 375,stand,,,
176 735.648 2749.85 -106.438,173 178 375,stand,,,
177 1471.12 2426.03 -67.8831,173 154 170 178 375 321,stand,,,
178 982.085 3455.18 -127.794,151 177 375,stand,,,
179 526.76 3462.05 -115.898,176 178,stand,,,
180 634.727 3056.58 -110.881,174 177 179 181 175 375,stand,,,
181 518.959 2628.78 -130.277,178 180 319 361,stand,,,
182 496.936 2961.72 -140.647,179 181,stand,,,
183 383.091 3216.16 -165.879,180 68 182 178,stand,,,
184 148.374 3189.46 -145.187,68 181 183 374,stand,,,
185 252.95 2938.3 -144.428,182 184,stand,,,
186 262.411 2696.51 -137.606,183 362,stand,,,
187 258.597 2352.01 -128.168,186,stand,,,
188 224.432 2214.89 -152.415,185 187 188,stand,,,
189 248.792 2035.29 -151.845,186,stand,,,
190 48.927 2173.05 -152.875,186 189,stand,,,
191 2.1499 2071.84 -152.875,188 190,stand,,,
192 -388.7 2095.3 -63.875,189 191 197 198 210 208,stand,,,
193 -351.602 2320.04 -63.875,190 192 197 237 243 208,stand,,,
194 -326.686 2627.48 -61.5367,191 193 280,stand,,,
195 -443.679 2896.47 -54.8262,192 69 194 195 244 280 210,stand,,,
196 -20.5033 3497.98 -121.469,69 193 195 196,stand,,,
197 70.3002 3000.86 -97.6446,193 194 197 243,stand,,,
198 42.2338 3649.1 -128.908,194 68 69 374,stand,,,
199 176.608 2333.05 -68.0386,191 195 190,stand,,,
200 -411.435 1898.5 -23.3949,190 199 201,stand,,,
201 -309.968 1877.67 -21.5541,198 205,stand,,,
202 -400.845 1586.84 -4.44292,201 204,stand,,,
203 -432.104 1695.57 25.0562,200 198 206,stand,,,
204 -296.197 1322.53 -38.3561,203 205 217,stand,,,
205 -161.543 1270.6 -34.0315,202,stand,,,
206 -374.078 1519.92 -18.6158,205 200,stand,,,
207 -326.997 1590.75 -24.4327,204 202 199,stand,,,
208 -559.774 1740.21 59.6253,201 207 211 213,stand,,,
209 -649.327 1443.7 59.994,206 212 215,stand,,,
210 -583.869 2063.13 -61.7552,209 210 211 190 191,stand,,,
211 -830.035 2222.49 -63.9115,208 210 349,stand,,,
212 -692.987 2247.72 -63.9673,209 190 208 193,stand,,,
213 -589.649 2039.76 -12.875,208 206 213 236,stand,,,
214 -831.53 1410.05 62.0265,213 207 214 218,stand,,,
215 -729.188 1733.53 64.125,212 206 211 228,stand,,,
216 -1058.4 1224.84 20.7696,212 27 216 219 220 355,stand,,,
217 -493.599 1241.73 0.0454835,18 27 207 217 242,stand,,,
218 -1149.71 1069.88 13.1225,214 26 27 355,stand,,,
219 -317.155 1242.01 -35.875,215 202,stand,,,
220 -994.891 1474.88 64.125,212 219,stand,,,
221 -1134.25 1458.78 64.125,218 220 214,stand,,,
222 -1310.87 1454.76 67.9931,219 224 214 221 284,stand,,,
223 -2016.6 1412.87 39.1138,222 223 224 220 225,stand,,,
224 -2053.91 1123.1 19.8032,221 32 26 223,stand,,,
225 -2321.34 1131.59 22.3004,222 30 221 31 39,stand,,,
226 -1450.5 1610.18 66.7107,221 220 226 284,stand,,,
227 -2182.42 1746.1 35.7654,221 282 284 297 295,stand,,,
228 -1135.63 1611.67 64.125,224 227 230,stand,,,
229 -1102.5 1721.48 64.125,226 228 231 233,stand,,,
230 -893.388 1736.15 64.125,227 229 213 230 359,stand,,,
231 -922.608 1827.69 64.125,228 234 359,stand,,,
232 -867.735 1618.72 64.125,228 226,stand,,,
233 -1204.34 1777.57 64.125,227 232,stand,,,
234 -1230.87 2024.29 64.125,231 233,stand,,,
235 -1039.13 1949.38 64.125,232 227,stand,,,
236 -929.62 1874.82 68.125,229 235 289,stand,,,
237 -782.39 1916.49 78.4107,234 236,stand,,,
238 -754.875 1928.7 19.1498,235 211,stand,,,
239 -10.104 2069.07 -60.7839,191 238 240 243,stand,,,
240 -51.2994 1200.22 4.83376,239 237 241 317 325 240,stand,,,
241 217.826 1161.23 8.125,238 240 241 334,stand,,,
242 195.368 1363.49 0.176423,239 237 318 238 319,stand,,,
243 -212.508 906.428 7.45824,238 242 239 317,stand,,,
244 -416.16 1136.15 4.94984,241 18 215,stand,,,
245 -1.73313 2368.31 -67.8647,237 191 195,stand,,,
246 -556.012 3094.74 -3.67724,193 245 278,stand,,,
247 -561.912 3497.45 -1.47182,244 246 279,stand,,,
248 -727.684 3599.75 -17.875,245 248 255,stand,,,
249 -727.276 3675.13 -121.148,248 249 251 272,stand,,,
250 -728.863 3639.74 -78.875,246 247,stand,,,
251 -975.556 3677.58 -129.939,247 250 251,stand,,,
252 -1228.99 4023.2 -42.662,71 249,stand,,,
253 -566.379 3822.54 -131.885,249 70 69 247 272,stand,,,
254 -1538.39 3442.69 9.18995,74 253 260 73 261 264 265,stand,,,
255 -1392.13 3501.81 2.38119,252 254,stand,,,
256 -1146.8 3500.69 0.125,253 255 256,stand,,,
257 -998.735 3502.99 -4.875,246 254 257 256,stand,,,
258 -1106.03 3215.28 0.125,254 259 259 255 260,stand,,,
259 -998.261 3203.19 -4.875,258 259 255,stand,,,
260 -856.175 3371.12 7.125,257 277 278,climb,-19.6106 -94.2737 0,,
261 -1067.75 2995.59 -21.6062,256 256 257 267 269 278,stand,,,
262 -1544.82 3182.87 -4.88311,252 261 267 256 282 281,stand,,,
263 -1794.01 3516.37 -4.875,73 262 252 265 260,stand,,,
264 -2134.59 3510 -11.875,73 263 261 75 76,stand,,,
265 -2426.94 3580.09 -12.372,262 76,stand,,,
266 -1280.54 3385.87 0.125001,252,stand,,,
267 -1835.8 3295.28 -4.875,252 75 266 261,stand,,,
268 -1856.71 3141.52 -8.875,75 265 267 268,stand,,,
269 -1735.38 3010.75 -11.8983,260 266 268 259,stand,,,
270 -2008.08 2913.66 -11.875,266 78 267 294 295,stand,,,
271 -667.956 2984.94 -118.647,259 270 271,stand,,,
272 -553.753 2986.88 -112.964,269,stand,,,
273 -661.077 3182.86 -130.922,269 275 274,stand,,,
274 -526.249 3748.18 -131.998,273 251 69 247,stand,,,
275 -551.596 3524.03 -130.875,272 274,stand,,,
276 -565.006 3341.35 -130.875,273 275 271,stand,,,
277 -740.631 3324.28 -133.375,274 271 276,stand,,,
278 -752.005 3426.85 -130.875,275 277,stand,,,
279 -859.624 3405.54 -130.875,276 258,climb,-10.481 -91.3019 0,,
280 -870.595 3172.63 -6.1884,244 279 259 258 280,stand,,,
281 -649.565 3417.09 -25.875,278 245,stand,,,
282 -950.471 2625.25 -40.6313,278 193 192 281,stand,,,
283 -1306.45 2486.84 -23.041,282 283 260 280 285,stand,,,
284 -1672.32 2395.63 -3.299,281 225 284 260 295,stand,,,
285 -1480.2 2130.85 -8.57493,281 284,stand,,,
286 -1905.43 1719.99 33.3825,283 224 220 225 282,stand,,,
287 -1283.41 2368.92 -23.7427,281 286,climb,-24.6313 2.64771 0,,
288 -1258.49 2370.92 114.817,285 287,climb,19.3634 -42.1216 0,,
289 -1193.13 2285.69 123.553,286 288,stand,,,
290 -1055.47 2080.35 64.125,287 289,stand,,,
291 -953.919 2095.52 64.125,288 234 290 291,stand,,,
292 -875.966 2247.65 64.125,289,stand,,,
293 -998.875 2029.31 80.125,289 292,stand,,,
294 -987.299 1736.21 200.125,291 293,stand,,,
295 -1007.24 1519.13 200.125,292,stand,,,
296 -2266.29 2262.32 -9.24066,268 295 300,stand,,,
297 -1960.17 2108.91 7.34766,268 282 225 294,stand,,,
298 -2401.05 1629.73 -23.875,297 37 299 305,stand,,,
299 -2378 1631.32 36.125,225 296,stand,,,
300 -2770.39 1813.53 6.09813,304 306,stand,,,
301 -2470.71 1933.24 -25.577,296 300,stand,,,
302 -2378.99 2204.35 -23.875,299 294 301,stand,,,
303 -2537.25 2544.08 -19.8827,300 79 302 77,stand,,,
304 -2655.27 2460.7 13.817,79 301 303,stand,,,
305 -2641.81 2076.42 18.125,302 304,stand,,,
306 -2651.82 1693.23 18.125,303 298 305,stand,,,
307 -2530.97 1610.96 -6.36819,296 304,stand,,,
308 -2733.77 2097.45 -49.875,298 307,stand,,,
309 -3011.18 2187.68 -49.875,306 370,stand,,,
310 -3132.71 2259.11 25.8377,80 309 81 312,stand,,,
311 -3444.98 2231.26 24.0417,308 82 81 310 311 80,stand,,,
312 -3375.98 1345.7 32.0639,309 311 315,stand,,,
313 -3562.44 1303.23 32.125,310 309 313 41 315 40 316,stand,,,
314 -3062.5 2146.57 76.7569,308,stand,,,
315 -4033.12 1228.77 32.0992,311 95 96 41 316,stand,,,
316 -4049.41 539.808 29.9712,96 316 99 100,stand,,,
317 -3092.28 1126.32 32.2379,39 310 41 311 316,stand,,,
318 -4022.17 888.714 32.125,41 314 313 96 311 315 101,stand,,,
319 179.85 540.775 3.09183,241 238 325 326 327,stand,,,
320 408.221 1279.41 -47.035,319 320 240,stand,,,
321 510.852 2004.05 -103.613,318 179 361 240,stand,,,
322 683.297 1259.74 5.59075,318 172 321 334 342 343,stand,,,
323 1266.41 1349.94 -43.392,172 171 333 320 342 322 170 343 344 175,stand,,,
324 1604.9 832.979 -19.1968,163 323 333 171 321 344 373,stand,,,
325 749.56 830.579 -9.98468,322 324 330 334 342,stand,,,
326 404.785 849.309 -36.9478,323 325 326 330,stand,,,
327 131.481 862.612 9.37592,324 238 317,stand,,,
328 497.008 167.939 8.8216,324 0 317 1 328 43 329 327 330,stand,,,
329 63.2906 330.46 2.1196,2 0 317 326,stand,,,
330 -121.583 94.6774 33.5897,326 2 4 1,stand,,,
331 973.186 -81.0566 135.269,43 326 330 44 331 332 335,stand,,,
332 760.603 372.842 70.0755,326 323 324 329,stand,,,
333 1677.55 129.555 28.3665,44 329 335 336 373,stand,,,
334 1386.45 320.061 63.3666,329 44 373,stand,,,
335 1671.41 1111.3 8.125,322 171 321 170 344,stand,,,
336 362.606 1159.93 6.90218,320 323 239,stand,,,
337 1951.05 -199.176 42.5556,331 45 44 338 329 337 336,stand,,,
338 2385.26 640.787 -16.1631,331 164 337 335,stand,,,
339 2724.34 285.492 -27.1876,336 162 163 338 341 335,stand,,,
340 2682.37 -144.388 36.0664,337 339 335,stand,,,
341 2746.42 -403.27 67.0226,338 46 340,stand,,,
342 2603.69 -451.155 64.125,46 339,stand,,,
343 3007.38 164.525 -76.0142,337 109 368 369,stand,,,
344 933.366 1146.22 5.73321,323 320 321 343 344,stand,,,
345 954.06 1663.07 -65.2137,321 320 342 172,stand,,,
346 1408.48 1023.08 8.125,342 322 321 333,stand,,,
347 2618.4 1353.57 -110.977,108 346 348 347,stand,,,
348 2438.53 1541.11 -94.875,345 347,stand,,,
349 2443.53 1428.77 -96.973,346 348 345,stand,,,
350 2433.2 1331.19 -110.875,347 110 345,stand,,,
351 -926.09 2179.46 -63.875,209 350 351,stand,,,
352 -903.442 1950.09 -63.875,349,stand,,,
353 -1096.42 2047.64 -63.875,349 357,stand,,,
354 -1106.65 1721.2 -63.875,353 357,stand,,,
355 -1141 1614.31 -63.875,352 354 356,stand,,,
356 -1111.52 1462 -46.875,353 355 356,stand,,,
357 -1198.92 1202.38 4.125,354 216 214,stand,,,
358 -1057.9 1546.04 -63.875,354 353,stand,,,
359 -1090.76 2012.74 -63.875,358 351 352,stand,,,
360 -992.538 2018.19 -47.875,357 360,stand,,,
361 -967.038 1808.87 64.125,228 229 360,stand,,,
362 -1001.63 1907.92 8.125,359 358,stand,,,
363 486.395 2452.09 -108.72,179 319 365,stand,,,
364 209.537 2536.56 -132.763,184 364,stand,,,
365 272.341 2474.08 -128.018,364 365,stand,,,
366 229.834 2464.28 -126.878,362 363,stand,,,
367 290.665 2467.52 -82.1995,363 361,stand,,,
368 3681.3 4156.8 -127.946,56 367,stand,,,
369 3238.42 4138.44 -127.875,366 56 57,stand,,,
370 3361.02 277.188 -55.875,341 47 369 162,stand,,,
371 3025.23 -512.312 29.889,46 368 341,stand,,,
372 -2992.78 2453.43 -49.875,307 81,stand,,,
373 2087.24 3394.66 -115.951,60 372,stand,,,
374 1945.4 3379.47 -108.376,371 152 153,stand,,,
375 1618.62 748.204 6.54755,331 322 332,stand,,,
376 137.49 3461.18 -155.083,196 68 182,stand,,,
377 1053.72 3081.18 -112.419,151 178 152 173 176 174 175,stand,,,
378 3207.53 2001.03 -88.9988,51 104 124 103,stand,,,
379 -803.268 233.474 0.125001,3 378 380,climb,-27.5867 91.1096 0,,
380 -880.875 206.365 0.125001,377 379,stand,,,
381 -880.875 328.365 0.125,3 378,stand,,,
382 -803.486 241.832 138.125,377 381,climb,-1.67542 86.1548 0,,
383 -791.462 350.315 136.125,380 5,stand,,,

View File

@@ -0,0 +1,274 @@
273
980.4 5368.9 1.125,110,stand,,,
1397.9 5037.6 1.125,109,stand,,,
1397.9 5274.6 1.125,108,stand,,,
2024.4 5577.6 1.125,105 106,stand,,,
1093.1 5535.4 1.125,107,stand,,,
1195.1 5545.4 144.125,91 95 97,stand,,,
1437.4 5844.9 144.125,96,stand,,,
989.4 5358.9 138.652,8 91,stand,,,
1000.6 4836.1 145.125,7 90,stand,,,
1258.45 4535.4 0.125,113,stand,,,
1041.6 4042.1 1.125,114 115 123,stand,,,
614.6 4375.1 -18.8293,122,stand,,,
816.4 4271.9 -37.5383,123,stand,,,
412.4 3111.9 24.6354,125 129,stand,,,
519.1 2672.4 -5.80521,130,stand,,,
55.1782 2293.02 -41.3382,139,stand,,,
-29.9242 1768.27 -1.4332,142 149,stand,,,
-394.751 1946.72 -41.897,141,stand,,,
558.988 1051.84 4.125,146 147,stand,,,
1169.33 740.564 -32.377,162,stand,,,
1436.24 752.906 -40.875,162 163,stand,,,
1747.6 785.243 -40.875,164 22,stand,,,
1875.61 781.696 -40.875,21 165,stand,,,
2179.28 748.981 -40.875,165,stand,,,
2523.86 647.262 -35.5333,28,stand,,,
2050.8 1048.11 -19.401,159 26,stand,,,
1958.79 997.402 -21.5329,25 158,stand,,,
1464.5 1000.41 -36.4782,155 156 158,stand,,,
2653.87 802.656 -43.7592,165 24 166,stand,,,
4347.66 2477.02 -64.3975,189,stand,,,
3664.84 3535.13 -82.6672,205 195,stand,,,
3308.17 3258.63 -139.902,206,stand,,,
3957.01 3735.65 -0.621231,203 204 214,stand,,,
2914.73 2912.34 8.5134,197 198,stand,,,
3486.82 3525.27 -96.0977,205 195 206,stand,,,
4278 3976.35 0.125,215,stand,,,
3515 4259.35 5.20117,215 216 217 218,stand,,,
3301 4873.65 21.5678,218 221 53,stand,,,
2447.3 4367.8 -125.941,209 210,stand,,,
2523.84 4580.21 -70.6141,40 210 212,stand,,,
2523.79 4786.84 -66.6474,212 39 210,stand,,,
1860.7 4597.2 -58.1745,211 237,stand,,,
2534.2 5133.3 -11.9398,213 228,stand,,,
2419.75 5724.22 0.125,82 227 226 263,stand,,,
2014.17 5169.96 -15.7728,241 213,stand,,,
1570.2 4037.7 14.1268,46 118,stand,,,
1454.2 3862.7 1.125,116 45 117,stand,,,
1767.3 3439.2 -20.3359,137 138,stand,,,
1279.46 3359.33 -17.874,136,stand,,,
896.445 2680.06 15.3544,132 133,stand,,,
1988.71 1927.34 8.12502,247 242,stand,,,
2168.66 2112.91 8.12498,245 243 244 246,stand,,,
2531.34 2814.09 8.66902,244 245 256 257 258 267,stand,,,
3501.94 5070.54 13.5963,220 55 37,stand,,,
3045.46 5175.28 8.09908,221 222,stand,,,
3438.06 5174.46 6.11911,53 77 223,stand,,,
3162.46 1736.05 -58.875,168 178 183,stand,,,
3635.54 2277.95 -25.875,186 191,stand,,,
3369.8 775.6 -45.7763,172 173,stand,,,
3432.46 1520.05 -61.8532,170 185,stand,,,
3813.54 1918.45 -58.3673,185,stand,,,
4107.66 2919.02 -82.437,192 83,stand,,,
3067.66 660.134 -31.0627,176,stand,,,
-34.8519 2548.4 -15.649,127,stand,,,
179.982 3239.18 5.73125,126 65 128,stand,,,
108.018 2968.82 12.8978,64 127 129,stand,,,
1614.2 5081.7 21.625,240,stand,,,
505.553 3556.64 23.7466,124 125,stand,,,
2281.96 5363.83 -11.2566,73 228 213,stand,,,
1860.7 4209.2 -26.496,235,stand,,,
1476.7 4283.2 0.65947,236,stand,,,
2028.7 3867.2 -20.6621,259 260,stand,,,
1953.68 4987.92 -25.1398,239 238 240,stand,,,
2145.91 5342.63 -9.89146,241 68 213,stand,,,
2744.7 5739.2 8.09908,226,stand,,,
3092.7 5665.2 8.09908,78 224 226,stand,,,
3095.42 4766.22 31.196,229 230,stand,,,
3423.7 5421.22 8.33926,55 78,stand,,,
3340.61 5483.56 8.44145,77 75 223,stand,,,
2788.61 5341.56 9.48747,224 225 226 228,stand,,,
2909.72 5096.02 3.22113,225 229,stand,,,
3126.13 4226.09 14.647,217 231,stand,,,
2294.8 5567.2 0.125031,43 228 263,stand,,,
4034.57 3220.97 -45.5214,61 203,stand,,,
3742.57 3220.97 -83.2063,193 194 195,stand,,,
4338.25 4559.17 2.5323,219 215,stand,,,
710.017 1253.94 -3.52074,153 154,stand,,,
1137.28 4771.82 0.125,88 112 111 113,stand,,,
1300.06 4815.61 64.3487,87 89,stand,,,
1319.47 5006.79 145.125,88 90,stand,,,
1199 5106 145.125,89 91 8,stand,,,
1188.8 5385.05 145.125,7 90 5,stand,,,
1306.48 5901.56 1.125,93 103,stand,,,
1069.95 5917.26 145.125,92 94,stand,,,
994.157 5894.58 144.125,93 95,stand,,,
1004.89 5778.74 144.125,94 5 96,stand,,,
1378.69 5792.99 144.125,95 6 97,stand,,,
1426.6 5620.68 144.125,5 96 98 99,stand,,,
1821.69 5686.96 144.125,97 271,stand,,,
1430.7 5275.01 145.125,97 100,stand,,,
1547.1 4993.69 145.125,99 101,stand,,,
1551.79 4821.35 67.125,100 102,stand,,,
1551.18 4651.22 3.29113,101 236 237,stand,,,
1369.82 5793.41 1.125,92 104 107,stand,,,
1825.41 5751.78 1.125,103 105 106,stand,,,
2095.91 5748.66 1.125,104 3 227,stand,,,
1806.38 5559.67 1.125,3 104 107 241,stand,,,
1356.22 5536.69 1.125,108 103 106 4,stand,,,
1269.53 5290.88 1.125,107 2 110,stand,,,
1156.99 5053.09 1.125,1 110 111,stand,,,
1111.72 5261.51 1.125,108 109 0,stand,,,
1137.44 4898.1 1.125,109 112 87,stand,,,
914.821 4870.09 2.125,111 87 113 120,stand,,,
1117.5 4614.6 0.125,87 9 112 114 272,stand,,,
1158.01 4293.13 0.616439,113 10 115,stand,,,
1273.2 4131.97 5.97757,10 114 116,stand,,,
1315.3 3861.91 1.125,115 46,stand,,,
1686.15 3856.41 1.125,46 118 119,stand,,,
1734.6 4048.11 3.125,117 45 260,stand,,,
1870.12 3828.35 -1.42953,117 138,stand,,,
659.82 4952.56 -11.1444,112 121,stand,,,
537.861 4827.46 -9.05033,120 272,stand,,,
547.095 4437.54 -22.5357,11 124 272,stand,,,
814.428 4057.53 -15.317,12 10 124,stand,,,
618.516 4021.85 -24.5928,122 123 67 126,stand,,,
359.933 3255.51 29.6959,67 13,stand,,,
214.957 3827.3 -1.94677,64 124,stand,,,
5.98867 2756.87 -9.66659,65 128 63,stand,,,
194.677 2728.41 -8.99392,127 129 130 64 131,stand,,,
410.161 2960.84 14.9062,13 128 130 65,stand,,,
464.249 2815.27 3.39408,129 128 14 132,stand,,,
152.254 2458.4 -48.5496,128 139,stand,,,
777.325 2698.07 10.97,130 49 133,stand,,,
999.577 2851.41 10.3556,132 49 134,stand,,,
1152.33 3102.06 -4.50571,133 135 136,stand,,,
1510.68 3147.2 -16.873,134 136 253,stand,,,
1358.72 3377.32 -19.9661,135 48 134 137,stand,,,
1579.43 3589.5 -25.9254,136 47 138,stand,,,
1867.22 3640.94 -24.2079,137 47 119 259 255,stand,,,
145.653 2237.67 -60.2358,131 15 140 150,stand,,,
-172.277 2091.92 -49.3788,139 141,stand,,,
-399.894 1767.34 -37.9549,140 17 142,stand,,,
-319.822 1640.77 -9.10043,141 16 143,stand,,,
-148.637 1524.46 4.125,142 144,stand,,,
-97.174 1381.47 4.125,143 145,stand,,,
302.664 1223.24 4.125,144 146,stand,,,
484.782 1022.56 4.125,145 18,stand,,,
633.84 1080.25 4.50948,18 148,stand,,,
802.432 1014.9 -11.5126,147 154,stand,,,
312.673 1888.56 -8.67075,16 150 153,stand,,,
334.338 2201.93 -64.3689,149 139 151,stand,,,
619.701 2032.83 -52.2398,150 152,stand,,,
843.231 1882.62 0.644908,151 153 252,stand,,,
692.749 1526.57 1.38735,152 86 149,stand,,,
1025.55 1148.95 -35.0464,86 148 155 157,stand,,,
1217.39 981.455 -42.6811,154 27 162,stand,,,
1642.76 1315.37 -16.1957,27 157 159,stand,,,
1196.73 1328.41 -31.1898,156 154,stand,,,
1835.1 1046.48 -17.4021,27 159 26,stand,,,
2100.4 1289.18 -1.08141,158 160 161 156 25,stand,,,
2278.46 1278.55 -14.1803,159 161 167,stand,,,
2110.22 1437.62 4.62359,160 159 266,stand,,,
1239.87 870.626 -35.276,155 19 20,stand,,,
1496.16 699.385 -40.875,20 164,stand,,,
1615.77 828.512 -40.875,163 21,stand,,,
2201.34 821.239 -40.875,22 23 28,stand,,,
2652.61 1220.85 -48.4174,28 167 168 169,stand,,,
2463.87 1298.43 -40.1077,166 160,stand,,,
2995.45 1565.5 -51.8321,166 169 177 56,stand,,,
2867 1136.5 -51.2409,166 168 176 177,stand,,,
3334.99 1437.16 -59.8851,59 171,stand,,,
3429.95 1310.51 -53.3905,170 172,stand,,,
3320.79 1121.6 -55.6304,171 58 177,stand,,,
3194.29 216.627 -61.1517,58 174 175,stand,,,
3182.5 -125.628 -59.8325,173,stand,,,
2904.43 474.776 -47.6924,173 176,stand,,,
2891.27 795 -49.4219,175 169 62,stand,,,
3110.77 1267.88 -56.52,172 168 169,stand,,,
2982.84 1745.22 -65.875,56 179 183,stand,,,
2819.56 1580.63 15.6226,178 180,stand,,,
2670.41 1456.69 102.125,179 181 264,stand,,,
2474.91 1680.64 102.125,180 182 264,stand,,,
2587.58 1869.72 102.125,181,stand,,,
3245.97 1977.07 -65.875,56 184 202 178,stand,,,
3509.59 2115.65 -65.875,183 185 186,stand,,,
3723.76 1876.9 -60.2053,184 59 60 187,stand,,,
3597.05 2211.64 -65.875,184 57,stand,,,
3912.13 2123.12 -42.2855,185 188,stand,,,
4039.18 2352.72 -31.6607,187 189 190,stand,,,
4166.49 2616.7 -72.1067,188 29 192,stand,,,
3829.38 2537.62 -40.2412,188 191 192 196 199,stand,,,
3774.19 2397.83 -25.875,57 190,stand,,,
4050.56 2852.07 -85.666,190 189 61 193,stand,,,
3812.03 3149.2 -84.1774,192 84 194,stand,,,
3654.2 2985.76 -59.6045,84 193 196,stand,,,
3598.51 3388.12 -75.317,84 30 34,stand,,,
3553.06 2868.49 -45.9804,194 190 197 199,stand,,,
3213.6 2933.52 -42.2015,196 33,stand,,,
2904.95 2552.25 -18.705,33 200 201 202,stand,,,
3482.78 2668.83 -53.4433,196 190 200,stand,,,
3193.33 2341.28 -43.8545,199 198 201 202,stand,,,
2839.35 2031.3 -52.933,198 200 202 267,stand,,,
3056.91 2018.24 -60.8275,200 183 201 198,stand,,,
3849.56 3557.09 -29.1291,83 32 204,stand,,,
3719.2 3857.25 -26.5034,203 32 205 216,stand,,,
3642.68 3652.09 -82.3431,204 30 34,stand,,,
3198.33 3293.22 -137.584,34 31 207,stand,,,
3012.52 3638.76 -161.263,206 208,stand,,,
2524.82 3668.51 -164.602,207 209,stand,,,
2504.86 4153.26 -124.279,208 38,stand,,,
2373.31 4610.73 -84.5851,38 211 212 39 40,stand,,,
2022.87 4632.91 -83.2308,210 41,stand,,,
2356.81 4777.29 -68.2321,210 213 40 39,stand,,,
2338.4 5086.86 -13.3918,212 44 239 42 228 68 73,stand,,,
4052.68 3926.12 10.5646,32 215,stand,,,
4208.62 4121.31 0.0563379,214 35 36 219 85,stand,,,
3597.46 4007.94 10.89,36 204 217,stand,,,
3139.22 3994.01 19.1864,216 36 81 231 262,stand,,,
3446.54 4725.7 8.58963,36 37 220,stand,,,
4071.27 4564.22 0.053106,215 85 220,stand,,,
3734.41 4967.74 18.5949,219 218 53,stand,,,
3196.11 5044.3 8.125,37 54 222 229,stand,,,
3085.98 5273.11 8.81895,221 54 223 224,stand,,,
3190.01 5371.38 8.54634,55 222 78 224,stand,,,
2950.41 5510.66 14.2022,223 75 222 79 226 228,stand,,,
2773.76 5216.72 -9.60368,79 228 80,stand,,,
2670.84 5619.69 7.0766,75 224 79 43 74 228 263,stand,,,
2261.95 5738.98 0.124997,105 43 263,stand,,,
2528.53 5430.18 -4.8089,82 225 79 68 226 213 42 224,stand,,,
3029.34 4939.98 6.43654,80 221 76 230,stand,,,
2893.47 4613.63 25.1799,76 229 231,stand,,,
2868.12 4298.96 16.2905,230 81 217 232 262,stand,,,
2504.22 4244.7 3.14948,231 233 261,stand,,,
2426.25 4434.69 -5.24118,232 234,stand,,,
2095.58 4204.93 -31.135,233 235 260 261,stand,,,
1899.02 4266.95 -30.7073,234 69 236 237,stand,,,
1515.16 4369.47 6.4042,235 102 70,stand,,,
1684.37 4603.87 -15.3605,235 41 102 238,stand,,,
1693.94 4811.12 4.03013,237 239 72 240,stand,,,
1999.89 4856.79 -27.8953,238 72 213,stand,,,
1718.12 5117.53 8.125,238 72 66 241,stand,,,
1870.58 5353.5 -14.5038,240 106 73 44,stand,,,
2213.61 1717.83 8.053,243 50 266,stand,,,
2397.56 1821.82 10.6475,242 244 51 267,stand,,,
2407.84 2274.05 8.37,243 52 245 51 267,stand,,,
1952.21 2594.8 8.125,52 244 51 253 246 254 257,stand,,,
1759.15 2184.99 8.0497,51 247 248 249 245 254,stand,,,
1735.5 1900.3 5.54879,246 50 248,stand,,,
1380.29 1925.99 6.1768,247 246 252,stand,,,
1477.66 2314.01 8.125,246 250 252 254,stand,,,
1321.97 2757.91 8.03426,249 251 253,stand,,,
1027.41 2474.56 10.3401,250 252,stand,,,
1027.05 1983.74 8.10666,251 152 248 249,stand,,,
1688.16 2983.16 2.09176,250 135 245 254 255 256,stand,,,
1760.49 2571.59 8.125,249 253 245 246,stand,,,
2008.54 3312.33 -1.89128,253 256 138 259 258,stand,,,
2353.63 3137.49 8.0991,255 52 253 257 258 259,stand,,,
2170.7 2809.62 7.42107,256 245 52,stand,,,
2542.27 3627.1 10.8491,256 52 259 255 262,stand,,,
2128.63 3713.21 -28.7972,258 138 255 256 71 260 261,stand,,,
2100.23 4039.22 -36.9883,118 259 71 234 261,stand,,,
2426.87 4006.57 -6.33362,260 234 232 259 262,stand,,,
2775.43 3839.21 10.2946,261 258 217 231,stand,,,
2275.67 5665.61 0.113302,82 227 43 226 270,stand,,,
2481.13 1492.54 102.162,180 181 269,stand,,,
2225.97 1492.82 40.125,266 268,stand,,,
2150.45 1550.97 0.575926,265 161 242,stand,,,
2649.89 2144.9 -23.4952,243 52 201 244,stand,,,
2317.39 1428.39 37.4499,269 265,climb,0.98877 44.9565 0,,
2335.08 1446.78 102.125,264 268,climb,0.98877 44.7588 0,,
2224.63 5664.35 0.00472823,263 271,climb,1.80725 179.517 0,,
2199.87 5664.32 155.125,270 98,climb,-1.02722 -179.686 0,,
545.476 4591.71 -16.2166,113 122 121,stand,,,
1 273
2 980.4 5368.9 1.125,110,stand,,,
3 1397.9 5037.6 1.125,109,stand,,,
4 1397.9 5274.6 1.125,108,stand,,,
5 2024.4 5577.6 1.125,105 106,stand,,,
6 1093.1 5535.4 1.125,107,stand,,,
7 1195.1 5545.4 144.125,91 95 97,stand,,,
8 1437.4 5844.9 144.125,96,stand,,,
9 989.4 5358.9 138.652,8 91,stand,,,
10 1000.6 4836.1 145.125,7 90,stand,,,
11 1258.45 4535.4 0.125,113,stand,,,
12 1041.6 4042.1 1.125,114 115 123,stand,,,
13 614.6 4375.1 -18.8293,122,stand,,,
14 816.4 4271.9 -37.5383,123,stand,,,
15 412.4 3111.9 24.6354,125 129,stand,,,
16 519.1 2672.4 -5.80521,130,stand,,,
17 55.1782 2293.02 -41.3382,139,stand,,,
18 -29.9242 1768.27 -1.4332,142 149,stand,,,
19 -394.751 1946.72 -41.897,141,stand,,,
20 558.988 1051.84 4.125,146 147,stand,,,
21 1169.33 740.564 -32.377,162,stand,,,
22 1436.24 752.906 -40.875,162 163,stand,,,
23 1747.6 785.243 -40.875,164 22,stand,,,
24 1875.61 781.696 -40.875,21 165,stand,,,
25 2179.28 748.981 -40.875,165,stand,,,
26 2523.86 647.262 -35.5333,28,stand,,,
27 2050.8 1048.11 -19.401,159 26,stand,,,
28 1958.79 997.402 -21.5329,25 158,stand,,,
29 1464.5 1000.41 -36.4782,155 156 158,stand,,,
30 2653.87 802.656 -43.7592,165 24 166,stand,,,
31 4347.66 2477.02 -64.3975,189,stand,,,
32 3664.84 3535.13 -82.6672,205 195,stand,,,
33 3308.17 3258.63 -139.902,206,stand,,,
34 3957.01 3735.65 -0.621231,203 204 214,stand,,,
35 2914.73 2912.34 8.5134,197 198,stand,,,
36 3486.82 3525.27 -96.0977,205 195 206,stand,,,
37 4278 3976.35 0.125,215,stand,,,
38 3515 4259.35 5.20117,215 216 217 218,stand,,,
39 3301 4873.65 21.5678,218 221 53,stand,,,
40 2447.3 4367.8 -125.941,209 210,stand,,,
41 2523.84 4580.21 -70.6141,40 210 212,stand,,,
42 2523.79 4786.84 -66.6474,212 39 210,stand,,,
43 1860.7 4597.2 -58.1745,211 237,stand,,,
44 2534.2 5133.3 -11.9398,213 228,stand,,,
45 2419.75 5724.22 0.125,82 227 226 263,stand,,,
46 2014.17 5169.96 -15.7728,241 213,stand,,,
47 1570.2 4037.7 14.1268,46 118,stand,,,
48 1454.2 3862.7 1.125,116 45 117,stand,,,
49 1767.3 3439.2 -20.3359,137 138,stand,,,
50 1279.46 3359.33 -17.874,136,stand,,,
51 896.445 2680.06 15.3544,132 133,stand,,,
52 1988.71 1927.34 8.12502,247 242,stand,,,
53 2168.66 2112.91 8.12498,245 243 244 246,stand,,,
54 2531.34 2814.09 8.66902,244 245 256 257 258 267,stand,,,
55 3501.94 5070.54 13.5963,220 55 37,stand,,,
56 3045.46 5175.28 8.09908,221 222,stand,,,
57 3438.06 5174.46 6.11911,53 77 223,stand,,,
58 3162.46 1736.05 -58.875,168 178 183,stand,,,
59 3635.54 2277.95 -25.875,186 191,stand,,,
60 3369.8 775.6 -45.7763,172 173,stand,,,
61 3432.46 1520.05 -61.8532,170 185,stand,,,
62 3813.54 1918.45 -58.3673,185,stand,,,
63 4107.66 2919.02 -82.437,192 83,stand,,,
64 3067.66 660.134 -31.0627,176,stand,,,
65 -34.8519 2548.4 -15.649,127,stand,,,
66 179.982 3239.18 5.73125,126 65 128,stand,,,
67 108.018 2968.82 12.8978,64 127 129,stand,,,
68 1614.2 5081.7 21.625,240,stand,,,
69 505.553 3556.64 23.7466,124 125,stand,,,
70 2281.96 5363.83 -11.2566,73 228 213,stand,,,
71 1860.7 4209.2 -26.496,235,stand,,,
72 1476.7 4283.2 0.65947,236,stand,,,
73 2028.7 3867.2 -20.6621,259 260,stand,,,
74 1953.68 4987.92 -25.1398,239 238 240,stand,,,
75 2145.91 5342.63 -9.89146,241 68 213,stand,,,
76 2744.7 5739.2 8.09908,226,stand,,,
77 3092.7 5665.2 8.09908,78 224 226,stand,,,
78 3095.42 4766.22 31.196,229 230,stand,,,
79 3423.7 5421.22 8.33926,55 78,stand,,,
80 3340.61 5483.56 8.44145,77 75 223,stand,,,
81 2788.61 5341.56 9.48747,224 225 226 228,stand,,,
82 2909.72 5096.02 3.22113,225 229,stand,,,
83 3126.13 4226.09 14.647,217 231,stand,,,
84 2294.8 5567.2 0.125031,43 228 263,stand,,,
85 4034.57 3220.97 -45.5214,61 203,stand,,,
86 3742.57 3220.97 -83.2063,193 194 195,stand,,,
87 4338.25 4559.17 2.5323,219 215,stand,,,
88 710.017 1253.94 -3.52074,153 154,stand,,,
89 1137.28 4771.82 0.125,88 112 111 113,stand,,,
90 1300.06 4815.61 64.3487,87 89,stand,,,
91 1319.47 5006.79 145.125,88 90,stand,,,
92 1199 5106 145.125,89 91 8,stand,,,
93 1188.8 5385.05 145.125,7 90 5,stand,,,
94 1306.48 5901.56 1.125,93 103,stand,,,
95 1069.95 5917.26 145.125,92 94,stand,,,
96 994.157 5894.58 144.125,93 95,stand,,,
97 1004.89 5778.74 144.125,94 5 96,stand,,,
98 1378.69 5792.99 144.125,95 6 97,stand,,,
99 1426.6 5620.68 144.125,5 96 98 99,stand,,,
100 1821.69 5686.96 144.125,97 271,stand,,,
101 1430.7 5275.01 145.125,97 100,stand,,,
102 1547.1 4993.69 145.125,99 101,stand,,,
103 1551.79 4821.35 67.125,100 102,stand,,,
104 1551.18 4651.22 3.29113,101 236 237,stand,,,
105 1369.82 5793.41 1.125,92 104 107,stand,,,
106 1825.41 5751.78 1.125,103 105 106,stand,,,
107 2095.91 5748.66 1.125,104 3 227,stand,,,
108 1806.38 5559.67 1.125,3 104 107 241,stand,,,
109 1356.22 5536.69 1.125,108 103 106 4,stand,,,
110 1269.53 5290.88 1.125,107 2 110,stand,,,
111 1156.99 5053.09 1.125,1 110 111,stand,,,
112 1111.72 5261.51 1.125,108 109 0,stand,,,
113 1137.44 4898.1 1.125,109 112 87,stand,,,
114 914.821 4870.09 2.125,111 87 113 120,stand,,,
115 1117.5 4614.6 0.125,87 9 112 114 272,stand,,,
116 1158.01 4293.13 0.616439,113 10 115,stand,,,
117 1273.2 4131.97 5.97757,10 114 116,stand,,,
118 1315.3 3861.91 1.125,115 46,stand,,,
119 1686.15 3856.41 1.125,46 118 119,stand,,,
120 1734.6 4048.11 3.125,117 45 260,stand,,,
121 1870.12 3828.35 -1.42953,117 138,stand,,,
122 659.82 4952.56 -11.1444,112 121,stand,,,
123 537.861 4827.46 -9.05033,120 272,stand,,,
124 547.095 4437.54 -22.5357,11 124 272,stand,,,
125 814.428 4057.53 -15.317,12 10 124,stand,,,
126 618.516 4021.85 -24.5928,122 123 67 126,stand,,,
127 359.933 3255.51 29.6959,67 13,stand,,,
128 214.957 3827.3 -1.94677,64 124,stand,,,
129 5.98867 2756.87 -9.66659,65 128 63,stand,,,
130 194.677 2728.41 -8.99392,127 129 130 64 131,stand,,,
131 410.161 2960.84 14.9062,13 128 130 65,stand,,,
132 464.249 2815.27 3.39408,129 128 14 132,stand,,,
133 152.254 2458.4 -48.5496,128 139,stand,,,
134 777.325 2698.07 10.97,130 49 133,stand,,,
135 999.577 2851.41 10.3556,132 49 134,stand,,,
136 1152.33 3102.06 -4.50571,133 135 136,stand,,,
137 1510.68 3147.2 -16.873,134 136 253,stand,,,
138 1358.72 3377.32 -19.9661,135 48 134 137,stand,,,
139 1579.43 3589.5 -25.9254,136 47 138,stand,,,
140 1867.22 3640.94 -24.2079,137 47 119 259 255,stand,,,
141 145.653 2237.67 -60.2358,131 15 140 150,stand,,,
142 -172.277 2091.92 -49.3788,139 141,stand,,,
143 -399.894 1767.34 -37.9549,140 17 142,stand,,,
144 -319.822 1640.77 -9.10043,141 16 143,stand,,,
145 -148.637 1524.46 4.125,142 144,stand,,,
146 -97.174 1381.47 4.125,143 145,stand,,,
147 302.664 1223.24 4.125,144 146,stand,,,
148 484.782 1022.56 4.125,145 18,stand,,,
149 633.84 1080.25 4.50948,18 148,stand,,,
150 802.432 1014.9 -11.5126,147 154,stand,,,
151 312.673 1888.56 -8.67075,16 150 153,stand,,,
152 334.338 2201.93 -64.3689,149 139 151,stand,,,
153 619.701 2032.83 -52.2398,150 152,stand,,,
154 843.231 1882.62 0.644908,151 153 252,stand,,,
155 692.749 1526.57 1.38735,152 86 149,stand,,,
156 1025.55 1148.95 -35.0464,86 148 155 157,stand,,,
157 1217.39 981.455 -42.6811,154 27 162,stand,,,
158 1642.76 1315.37 -16.1957,27 157 159,stand,,,
159 1196.73 1328.41 -31.1898,156 154,stand,,,
160 1835.1 1046.48 -17.4021,27 159 26,stand,,,
161 2100.4 1289.18 -1.08141,158 160 161 156 25,stand,,,
162 2278.46 1278.55 -14.1803,159 161 167,stand,,,
163 2110.22 1437.62 4.62359,160 159 266,stand,,,
164 1239.87 870.626 -35.276,155 19 20,stand,,,
165 1496.16 699.385 -40.875,20 164,stand,,,
166 1615.77 828.512 -40.875,163 21,stand,,,
167 2201.34 821.239 -40.875,22 23 28,stand,,,
168 2652.61 1220.85 -48.4174,28 167 168 169,stand,,,
169 2463.87 1298.43 -40.1077,166 160,stand,,,
170 2995.45 1565.5 -51.8321,166 169 177 56,stand,,,
171 2867 1136.5 -51.2409,166 168 176 177,stand,,,
172 3334.99 1437.16 -59.8851,59 171,stand,,,
173 3429.95 1310.51 -53.3905,170 172,stand,,,
174 3320.79 1121.6 -55.6304,171 58 177,stand,,,
175 3194.29 216.627 -61.1517,58 174 175,stand,,,
176 3182.5 -125.628 -59.8325,173,stand,,,
177 2904.43 474.776 -47.6924,173 176,stand,,,
178 2891.27 795 -49.4219,175 169 62,stand,,,
179 3110.77 1267.88 -56.52,172 168 169,stand,,,
180 2982.84 1745.22 -65.875,56 179 183,stand,,,
181 2819.56 1580.63 15.6226,178 180,stand,,,
182 2670.41 1456.69 102.125,179 181 264,stand,,,
183 2474.91 1680.64 102.125,180 182 264,stand,,,
184 2587.58 1869.72 102.125,181,stand,,,
185 3245.97 1977.07 -65.875,56 184 202 178,stand,,,
186 3509.59 2115.65 -65.875,183 185 186,stand,,,
187 3723.76 1876.9 -60.2053,184 59 60 187,stand,,,
188 3597.05 2211.64 -65.875,184 57,stand,,,
189 3912.13 2123.12 -42.2855,185 188,stand,,,
190 4039.18 2352.72 -31.6607,187 189 190,stand,,,
191 4166.49 2616.7 -72.1067,188 29 192,stand,,,
192 3829.38 2537.62 -40.2412,188 191 192 196 199,stand,,,
193 3774.19 2397.83 -25.875,57 190,stand,,,
194 4050.56 2852.07 -85.666,190 189 61 193,stand,,,
195 3812.03 3149.2 -84.1774,192 84 194,stand,,,
196 3654.2 2985.76 -59.6045,84 193 196,stand,,,
197 3598.51 3388.12 -75.317,84 30 34,stand,,,
198 3553.06 2868.49 -45.9804,194 190 197 199,stand,,,
199 3213.6 2933.52 -42.2015,196 33,stand,,,
200 2904.95 2552.25 -18.705,33 200 201 202,stand,,,
201 3482.78 2668.83 -53.4433,196 190 200,stand,,,
202 3193.33 2341.28 -43.8545,199 198 201 202,stand,,,
203 2839.35 2031.3 -52.933,198 200 202 267,stand,,,
204 3056.91 2018.24 -60.8275,200 183 201 198,stand,,,
205 3849.56 3557.09 -29.1291,83 32 204,stand,,,
206 3719.2 3857.25 -26.5034,203 32 205 216,stand,,,
207 3642.68 3652.09 -82.3431,204 30 34,stand,,,
208 3198.33 3293.22 -137.584,34 31 207,stand,,,
209 3012.52 3638.76 -161.263,206 208,stand,,,
210 2524.82 3668.51 -164.602,207 209,stand,,,
211 2504.86 4153.26 -124.279,208 38,stand,,,
212 2373.31 4610.73 -84.5851,38 211 212 39 40,stand,,,
213 2022.87 4632.91 -83.2308,210 41,stand,,,
214 2356.81 4777.29 -68.2321,210 213 40 39,stand,,,
215 2338.4 5086.86 -13.3918,212 44 239 42 228 68 73,stand,,,
216 4052.68 3926.12 10.5646,32 215,stand,,,
217 4208.62 4121.31 0.0563379,214 35 36 219 85,stand,,,
218 3597.46 4007.94 10.89,36 204 217,stand,,,
219 3139.22 3994.01 19.1864,216 36 81 231 262,stand,,,
220 3446.54 4725.7 8.58963,36 37 220,stand,,,
221 4071.27 4564.22 0.053106,215 85 220,stand,,,
222 3734.41 4967.74 18.5949,219 218 53,stand,,,
223 3196.11 5044.3 8.125,37 54 222 229,stand,,,
224 3085.98 5273.11 8.81895,221 54 223 224,stand,,,
225 3190.01 5371.38 8.54634,55 222 78 224,stand,,,
226 2950.41 5510.66 14.2022,223 75 222 79 226 228,stand,,,
227 2773.76 5216.72 -9.60368,79 228 80,stand,,,
228 2670.84 5619.69 7.0766,75 224 79 43 74 228 263,stand,,,
229 2261.95 5738.98 0.124997,105 43 263,stand,,,
230 2528.53 5430.18 -4.8089,82 225 79 68 226 213 42 224,stand,,,
231 3029.34 4939.98 6.43654,80 221 76 230,stand,,,
232 2893.47 4613.63 25.1799,76 229 231,stand,,,
233 2868.12 4298.96 16.2905,230 81 217 232 262,stand,,,
234 2504.22 4244.7 3.14948,231 233 261,stand,,,
235 2426.25 4434.69 -5.24118,232 234,stand,,,
236 2095.58 4204.93 -31.135,233 235 260 261,stand,,,
237 1899.02 4266.95 -30.7073,234 69 236 237,stand,,,
238 1515.16 4369.47 6.4042,235 102 70,stand,,,
239 1684.37 4603.87 -15.3605,235 41 102 238,stand,,,
240 1693.94 4811.12 4.03013,237 239 72 240,stand,,,
241 1999.89 4856.79 -27.8953,238 72 213,stand,,,
242 1718.12 5117.53 8.125,238 72 66 241,stand,,,
243 1870.58 5353.5 -14.5038,240 106 73 44,stand,,,
244 2213.61 1717.83 8.053,243 50 266,stand,,,
245 2397.56 1821.82 10.6475,242 244 51 267,stand,,,
246 2407.84 2274.05 8.37,243 52 245 51 267,stand,,,
247 1952.21 2594.8 8.125,52 244 51 253 246 254 257,stand,,,
248 1759.15 2184.99 8.0497,51 247 248 249 245 254,stand,,,
249 1735.5 1900.3 5.54879,246 50 248,stand,,,
250 1380.29 1925.99 6.1768,247 246 252,stand,,,
251 1477.66 2314.01 8.125,246 250 252 254,stand,,,
252 1321.97 2757.91 8.03426,249 251 253,stand,,,
253 1027.41 2474.56 10.3401,250 252,stand,,,
254 1027.05 1983.74 8.10666,251 152 248 249,stand,,,
255 1688.16 2983.16 2.09176,250 135 245 254 255 256,stand,,,
256 1760.49 2571.59 8.125,249 253 245 246,stand,,,
257 2008.54 3312.33 -1.89128,253 256 138 259 258,stand,,,
258 2353.63 3137.49 8.0991,255 52 253 257 258 259,stand,,,
259 2170.7 2809.62 7.42107,256 245 52,stand,,,
260 2542.27 3627.1 10.8491,256 52 259 255 262,stand,,,
261 2128.63 3713.21 -28.7972,258 138 255 256 71 260 261,stand,,,
262 2100.23 4039.22 -36.9883,118 259 71 234 261,stand,,,
263 2426.87 4006.57 -6.33362,260 234 232 259 262,stand,,,
264 2775.43 3839.21 10.2946,261 258 217 231,stand,,,
265 2275.67 5665.61 0.113302,82 227 43 226 270,stand,,,
266 2481.13 1492.54 102.162,180 181 269,stand,,,
267 2225.97 1492.82 40.125,266 268,stand,,,
268 2150.45 1550.97 0.575926,265 161 242,stand,,,
269 2649.89 2144.9 -23.4952,243 52 201 244,stand,,,
270 2317.39 1428.39 37.4499,269 265,climb,0.98877 44.9565 0,,
271 2335.08 1446.78 102.125,264 268,climb,0.98877 44.7588 0,,
272 2224.63 5664.35 0.00472823,263 271,climb,1.80725 179.517 0,,
273 2199.87 5664.32 155.125,270 98,climb,-1.02722 -179.686 0,,
274 545.476 4591.71 -16.2166,113 122 121,stand,,,

View File

@@ -0,0 +1,231 @@
230
-519.184 -782.6 194.125,26 84 85 204,stand,,,
-403.569 -119.338 194.125,206,stand,,,
-709.293 -246.198 194.125,125 13 206,stand,,,
-1185.79 -137.394 197.125,4 13 126,stand,,,
-1173.5 106.94 194.125,3 5 6,stand,,,
-1296.33 118.23 202.908,4,stand,,,
-1152.32 427.097 223.363,4 7 8,stand,,,
-932.402 425.881 220.174,6 11 82,stand,,,
-1140.46 674.699 221.674,6 9 211,stand,,,
-1122.73 867.846 222.505,8 10 210,stand,,,
-1068.89 980.29 210.608,9,stand,,,
-932.843 73.0575 194.125,7 12 13,stand,,,
-760.026 75.3998 199.685,11 81 180,stand,,,
-940.216 -145.805 194.125,11 3 125 2,stand,,,
-799.944 979.698 200.709,210,stand,,,
-373.064 933.817 195.068,16 17 210,stand,,,
-374.026 831.72 194.454,15,stand,,,
-221.765 931.258 194.125,15 18 71,stand,,,
-224.223 1078.5 194.125,17,stand,,,
-769.557 653.743 195.49,79 82 210 211 80,stand,,,
-403.115 -260.659 28.125,21,stand,,,
-214.783 -260.564 24.8444,20 160 172 173 212,stand,,,
-1384.9 -512.873 194.125,23 179 127,stand,,,
-1378.94 -755.048 194.125,22 24,stand,,,
-1021.25 -760.447 194.125,23 25 213,stand,,,
-1022.17 -637.344 194.125,24 124 127 125,stand,,,
-615.794 -781.649 194.125,0 27 213,stand,,,
-742.264 -840.62 172.125,28 26 213,stand,,,
-750.818 -1012.92 52.9675,27 29,stand,,,
-753.745 -1093.15 49.4829,28 30 32 208,stand,,,
-622.213 -1089.71 51.2114,31 29 208,stand,,,
-616.064 -999.993 51.8001,30,stand,,,
-889.084 -1081.61 47.9058,29 33,stand,,,
-994.317 -1028.4 47.093,32 34,stand,,,
-1317.53 -1060.47 30.9167,35 33 177 178,stand,,,
-1317.37 -1271.65 36.125,34 36,stand,,,
-1317.35 -1418.29 -51.0002,35 91,stand,,,
1244.46 -613.626 32.125,193,stand,,,
1378.12 -158.047 32.125,39 41 215,stand,,,
1590.94 -148.24 32.125,38 40 184,stand,,,
1598.49 171.112 32.125,39 41 183,stand,,,
1381.14 192.799 32.125,40 38 42,stand,,,
1154.61 216.045 42.9946,41 215 218,stand,,,
1343.71 426.41 32.125,196,stand,,,
736.899 310.116 28.1082,161 189,stand,,,
659.869 35.2831 52.816,162 191 190,stand,,,
1131.62 1882.74 152.594,47 64 145,stand,,,
1023.79 1884.29 194.125,46 48,stand,,,
972.851 1885.84 194.125,47 49 55,stand,,,
719.98 1892.69 194.125,48 50 51 52,stand,,,
800.807 1763.37 194.125,49,stand,,,
712.79 1594.7 194.693,49 55 131,stand,,,
276.81 1869.8 194.125,53 54 49 132,stand,,,
65.486 1874.58 194.125,52 130 134 136 132,stand,,,
248.854 1988.48 194.125,52,stand,,,
966.639 1590.49 194.125,51 48 56,stand,,,
964.166 1473.16 194.125,55 57,stand,,,
771.065 1473.36 194.125,56 58,stand,,,
655.989 1477.12 142.125,57 59,stand,,,
655.018 1378.94 142.125,58 60,stand,,,
790.583 1379 93.1365,59 61 63,stand,,,
791.922 1281.67 94.3739,60 63,stand,,,
512.29 1009.07 128.335,223,stand,,,
1142.47 1358.36 92.2455,60 61 64,stand,,,
1147.45 1518.5 105.89,63 46 144,stand,,,
324.619 900.559 194.125,66 67 68,stand,,,
253.756 909.605 200.215,65 67 71,stand,,,
263.867 1053.31 194.125,66 65 133,stand,,,
312.25 734.911 199.988,65 69 70,stand,,,
309.132 585.625 209.196,68 72 73,stand,,,
13.4105 730.846 194.747,68 71 76,stand,,,
23.3261 931.145 194.125,70 66 17 128,stand,,,
598.134 580.602 194.125,69 149 154,stand,,,
209.366 504.743 194.125,69 74,stand,,,
-151.791 512.691 194.125,73 75 77,stand,,,
-154.027 604.348 194.125,74 76 78 227,stand,,,
-153.64 736.04 194.125,75 70 78,stand,,,
-261.685 566.838 194.125,74,stand,,,
-263.662 641.977 194.125,75 76 79,stand,,,
-550.572 647.558 194.536,78 19 80 210 82,stand,,,
-605.08 420.107 192.373,79 82 83 19,stand,,,
-719.859 199.124 216.053,12 82,stand,,,
-713.551 428.702 201.405,7 81 80 19 79,stand,,,
-467.831 300.005 132.475,80 160 171,stand,,,
-544.147 -910.904 194.125,0,stand,,,
-393.966 -829.978 192.387,0 86,stand,,,
57.5433 -785.129 192.125,85 87,stand,,,
308.882 -791.643 30.5736,86 117,stand,,,
-1319.29 -1600.29 -52.7745,91 95 176,stand,,,
-1019.5 -1232.67 -12.3842,90,stand,,,
-1025.1 -1338.48 -11.875,89 97,stand,,,
-1322.46 -1491.3 -52.7803,88 36 92 93 96,stand,,,
-1407.48 -1522.59 -52.0357,91,stand,,,
-1174.83 -1490.17 -50.4298,91 94 97,stand,,,
-1168.69 -1390.91 -39.3854,93,stand,,,
-1326.45 -1766.4 -48.8772,88 96,stand,,,
-1026.66 -1748.88 -48.3942,98 99 95 91,stand,,,
-1033.57 -1394.08 -32.0954,93 98 90 101,stand,,,
-1035 -1533.51 -45.914,96 97 101,stand,,,
-788.935 -1750.18 -46.3973,96 102 175,stand,,,
-661.302 -1464.99 -49.9406,101 102 103 209,stand,,,
-866.177 -1432.83 -49.8764,100 98 97,stand,,,
-698.548 -1579.84 -49.6373,100 99 104,stand,,,
-344.954 -1482.49 -50.3119,100 104 105,stand,,,
-371.717 -1639.22 -50.2002,103 102 107,stand,,,
-0.552557 -1448.06 -42.717,106 103 112 114,stand,,,
10.5059 -1614.28 -46.6103,105 107 109 111,stand,,,
-331.905 -1688.21 -50.4618,106 104 108,stand,,,
-225.726 -1777.8 -33.9649,107,stand,,,
224.394 -1528.77 -23.4656,106 110 112 167,stand,,,
329.227 -1346.38 -8.56788,109 112 113 166,stand,,,
131.262 -1792.13 -2.04921,106,stand,,,
148.042 -1374.65 -21.6984,105 109 110 114,stand,,,
440.22 -1169.61 14.3765,110 116 118 123,stand,,,
132.486 -1147.91 -11.303,105 112 116,stand,,,
134.092 -911.321 49.4483,116,stand,,,
334.429 -1001.08 26.5169,117 114 115 113,stand,,,
348.914 -791.595 29.8122,116 87 118,stand,,,
536.599 -802.3 32.5316,113 117 119 122,stand,,,
545.162 -635.908 31.4892,118 120,stand,,,
489.183 -362.348 24.467,163 165 119,stand,,,
909.738 -752.3 58.4706,122 192 214,stand,,,
813.736 -865.135 43.802,121 118 123,stand,,,
802.204 -1114.36 10.4652,113 122 174,stand,,,
-897.858 -555.903 194.125,125 127 25 203,stand,,,
-895.563 -244.962 194.125,124 2 13 126 25,stand,,,
-1144.77 -249.851 194.125,125 3 127,stand,,,
-1154.49 -515.646 194.125,126 124 25 22,stand,,,
52.1313 1396.64 201.671,71 129 130,stand,,,
-210.884 1394.39 194.125,128,stand,,,
62.593 1607.01 194.125,128 132 53 135 137,stand,,,
360.458 1612.14 197.387,51 132 133,stand,,,
261.918 1621.24 204.778,131 133 130 52 53,stand,,,
331.403 1310.97 194.125,131 132 67,stand,,,
158.088 1934.94 194.125,53,stand,,,
-215.813 1635.05 194.125,130,stand,,,
-42.8488 1901.33 195.139,53,stand,,,
-172.306 1860.85 204.49,130,stand,,,
1828.76 1149.89 94.125,139 140 168,stand,,,
1901.51 1146.18 94.125,138,stand,,,
1832.15 1222.03 100.45,138 141,stand,,,
1650.88 1244.49 98.0282,140 142 220,stand,,,
1511.43 1518.54 115.538,141 143 146,stand,,,
1370.82 1394.77 83.9473,142 144 147 221,stand,,,
1268.39 1529.88 105.199,143 64 145,stand,,,
1288.85 1853.29 157.738,144 46 146,stand,,,
1699.69 1812.99 149.621,142 145 169 170,stand,,,
1379.37 1080.83 32.5986,143 148 219 221 224,stand,,,
1444.47 880.072 32.0871,147 195 219 224,stand,,,
619.437 821.069 194.125,72 150 151,stand,,,
489.701 878.597 194.125,149,stand,,,
978.87 821.901 207.616,149 152 226,stand,,,
1173.17 797.997 194.125,151 153 226,stand,,,
1158.49 569.252 194.125,152 154 159,stand,,,
941.425 569.354 194.125,153 155 72,stand,,,
921.402 333.835 194.125,154 156,stand,,,
728.038 328.994 194.125,155 157,stand,,,
727.865 409.208 194.125,158 156,stand,,,
-13.2736 406.787 194.125,157,stand,,,
1167.5 396.183 194.125,153,stand,,,
-68.064 25.2903 24.5273,21 83 171 212,stand,,,
431.82 251.77 26.5775,44 162 171,stand,,,
434.991 35.527 22.4732,161 45 163 212,stand,,,
482.333 -214.723 25.8536,162 120 164 212,stand,,,
738.98 -184.114 34.3709,163,stand,,,
726.312 -385.439 35.8037,120,stand,,,
468.038 -1493.43 2.31478,110,stand,,,
310.887 -1704.59 -3.70223,109,stand,,,
1872.32 1009.53 94.125,138 220,stand,,,
1784.66 1916.66 152.717,146,stand,,,
1843.63 1841.59 154.954,146,stand,,,
-41.3339 136.878 24.125,161 160 83,stand,,,
-92.5587 -401.828 32.9069,21,stand,,,
-222.139 -390.493 30.0597,21,stand,,,
933.788 -1300.18 25.1365,123,stand,,,
-706.126 -1714.51 -45.875,99,stand,,,
-1403.18 -1630.29 -54.8701,88,stand,,,
-1491.45 -1103.28 18.2776,34,stand,,,
-1491.67 -927.044 35.8379,34,stand,,,
-1359.47 -394.965 194.125,22,stand,,,
-749.085 -10.2128 194.125,12,stand,,,
209.97 -632.793 194.125,202,stand,,,
608.539 -543.345 194.125,201,stand,,,
1678.39 166.555 32.125,40,stand,,,
1688.03 -128.485 32.125,39,stand,,,
437.618 603.665 32.125,186 229,stand,,,
742.406 594.471 32.125,185 187 188,stand,,,
931.418 653.236 34.3522,186 188 197 216,stand,,,
929.748 473.885 35.7625,186 187 189 216,stand,,,
906.074 315.078 32.125,188 190 44,stand,,,
964.667 151.667 46.3863,189 191 45,stand,,,
893.789 -40.6716 46.8617,190 45 214,stand,,,
976.374 -540.201 32.125,121 193 214,stand,,,
1103.38 -526.972 32.125,37 192 215,stand,,,
1272.64 584.167 32.125,195 196 218 217 216,stand,,,
1396.61 675.093 32.125,194 196 148 224,stand,,,
1421.1 526.859 32.125,43 195 194,stand,,,
946.049 851.05 32.125,198 187 217,stand,,,
935.199 996.093 32.125,197 221 222,stand,,,
-265.958 -577.338 194.125,200 204 205,stand,,,
-57.6215 -594.291 206.974,202 199,stand,,,
454.517 -539.804 194.125,182 202,stand,,,
178.336 -556.494 194.125,201 200 181,stand,,,
-656.895 -574.092 195.125,124 204,stand,,,
-522.959 -653.413 194.125,203 199 205 0,stand,,,
-365.681 -466.029 194.125,199 206 204,stand,,,
-507.83 -274.742 194.125,1 205 2,stand,,,
-690.097 -1237.13 19.4094,208 209,climb,21.1157 85.8453 0,,
-691.24 -1207.35 66.125,207 29 30,climb,-4.9823 85.1861 0,,
-719.406 -1334.44 -14.8506,207 100,stand,,,
-764.769 840.962 215.867,79 19 211 14 9 15,stand,,,
-921.191 667.054 213.35,19 8 210,stand,,,
158.517 -228.815 22.5875,160 21 162 163,stand,,,
-849.772 -767.68 194.125,27 26 24,stand,,,
917.811 -304.909 32.125,191 192 121,stand,,,
1165.14 -157.786 32.125,193 38 42,stand,,,
1083.68 573.669 48.0797,188 187 217 218 194,stand,,,
1172.08 720.929 32.125,197 216 194 218,stand,,,
1153.28 436.77 44.2687,216 194 217 42,stand,,,
1578.88 972.241 32.125,220 148 147,climb,1.26343 -1.9328 0,,
1604.59 972.14 100.125,219 141 168,climb,0.741577 -2.14703 0,,
1230.89 1053.43 32.125,147 143 198,stand,,,
833.317 1035.39 32.125,223 198,climb,3.79578 176.721 0,,
809.568 1035.38 100.125,222 62,climb,3.72986 -178.769 0,,
1319.13 914.901 57.1393,225 147 195 148,climb,4.37256 178.671 0,,
1295.29 914.359 232.125,226 224,climb,5.39978 -179.714 0,,
1203.89 899.589 204.988,225 152 151,stand,,,
-25.1636 603.043 192.125,75 228,stand,,,
106.576 597.105 97.7133,227 229,stand,,,
242.226 598.01 32.125,228 185,stand,,,
1 230
2 -519.184 -782.6 194.125,26 84 85 204,stand,,,
3 -403.569 -119.338 194.125,206,stand,,,
4 -709.293 -246.198 194.125,125 13 206,stand,,,
5 -1185.79 -137.394 197.125,4 13 126,stand,,,
6 -1173.5 106.94 194.125,3 5 6,stand,,,
7 -1296.33 118.23 202.908,4,stand,,,
8 -1152.32 427.097 223.363,4 7 8,stand,,,
9 -932.402 425.881 220.174,6 11 82,stand,,,
10 -1140.46 674.699 221.674,6 9 211,stand,,,
11 -1122.73 867.846 222.505,8 10 210,stand,,,
12 -1068.89 980.29 210.608,9,stand,,,
13 -932.843 73.0575 194.125,7 12 13,stand,,,
14 -760.026 75.3998 199.685,11 81 180,stand,,,
15 -940.216 -145.805 194.125,11 3 125 2,stand,,,
16 -799.944 979.698 200.709,210,stand,,,
17 -373.064 933.817 195.068,16 17 210,stand,,,
18 -374.026 831.72 194.454,15,stand,,,
19 -221.765 931.258 194.125,15 18 71,stand,,,
20 -224.223 1078.5 194.125,17,stand,,,
21 -769.557 653.743 195.49,79 82 210 211 80,stand,,,
22 -403.115 -260.659 28.125,21,stand,,,
23 -214.783 -260.564 24.8444,20 160 172 173 212,stand,,,
24 -1384.9 -512.873 194.125,23 179 127,stand,,,
25 -1378.94 -755.048 194.125,22 24,stand,,,
26 -1021.25 -760.447 194.125,23 25 213,stand,,,
27 -1022.17 -637.344 194.125,24 124 127 125,stand,,,
28 -615.794 -781.649 194.125,0 27 213,stand,,,
29 -742.264 -840.62 172.125,28 26 213,stand,,,
30 -750.818 -1012.92 52.9675,27 29,stand,,,
31 -753.745 -1093.15 49.4829,28 30 32 208,stand,,,
32 -622.213 -1089.71 51.2114,31 29 208,stand,,,
33 -616.064 -999.993 51.8001,30,stand,,,
34 -889.084 -1081.61 47.9058,29 33,stand,,,
35 -994.317 -1028.4 47.093,32 34,stand,,,
36 -1317.53 -1060.47 30.9167,35 33 177 178,stand,,,
37 -1317.37 -1271.65 36.125,34 36,stand,,,
38 -1317.35 -1418.29 -51.0002,35 91,stand,,,
39 1244.46 -613.626 32.125,193,stand,,,
40 1378.12 -158.047 32.125,39 41 215,stand,,,
41 1590.94 -148.24 32.125,38 40 184,stand,,,
42 1598.49 171.112 32.125,39 41 183,stand,,,
43 1381.14 192.799 32.125,40 38 42,stand,,,
44 1154.61 216.045 42.9946,41 215 218,stand,,,
45 1343.71 426.41 32.125,196,stand,,,
46 736.899 310.116 28.1082,161 189,stand,,,
47 659.869 35.2831 52.816,162 191 190,stand,,,
48 1131.62 1882.74 152.594,47 64 145,stand,,,
49 1023.79 1884.29 194.125,46 48,stand,,,
50 972.851 1885.84 194.125,47 49 55,stand,,,
51 719.98 1892.69 194.125,48 50 51 52,stand,,,
52 800.807 1763.37 194.125,49,stand,,,
53 712.79 1594.7 194.693,49 55 131,stand,,,
54 276.81 1869.8 194.125,53 54 49 132,stand,,,
55 65.486 1874.58 194.125,52 130 134 136 132,stand,,,
56 248.854 1988.48 194.125,52,stand,,,
57 966.639 1590.49 194.125,51 48 56,stand,,,
58 964.166 1473.16 194.125,55 57,stand,,,
59 771.065 1473.36 194.125,56 58,stand,,,
60 655.989 1477.12 142.125,57 59,stand,,,
61 655.018 1378.94 142.125,58 60,stand,,,
62 790.583 1379 93.1365,59 61 63,stand,,,
63 791.922 1281.67 94.3739,60 63,stand,,,
64 512.29 1009.07 128.335,223,stand,,,
65 1142.47 1358.36 92.2455,60 61 64,stand,,,
66 1147.45 1518.5 105.89,63 46 144,stand,,,
67 324.619 900.559 194.125,66 67 68,stand,,,
68 253.756 909.605 200.215,65 67 71,stand,,,
69 263.867 1053.31 194.125,66 65 133,stand,,,
70 312.25 734.911 199.988,65 69 70,stand,,,
71 309.132 585.625 209.196,68 72 73,stand,,,
72 13.4105 730.846 194.747,68 71 76,stand,,,
73 23.3261 931.145 194.125,70 66 17 128,stand,,,
74 598.134 580.602 194.125,69 149 154,stand,,,
75 209.366 504.743 194.125,69 74,stand,,,
76 -151.791 512.691 194.125,73 75 77,stand,,,
77 -154.027 604.348 194.125,74 76 78 227,stand,,,
78 -153.64 736.04 194.125,75 70 78,stand,,,
79 -261.685 566.838 194.125,74,stand,,,
80 -263.662 641.977 194.125,75 76 79,stand,,,
81 -550.572 647.558 194.536,78 19 80 210 82,stand,,,
82 -605.08 420.107 192.373,79 82 83 19,stand,,,
83 -719.859 199.124 216.053,12 82,stand,,,
84 -713.551 428.702 201.405,7 81 80 19 79,stand,,,
85 -467.831 300.005 132.475,80 160 171,stand,,,
86 -544.147 -910.904 194.125,0,stand,,,
87 -393.966 -829.978 192.387,0 86,stand,,,
88 57.5433 -785.129 192.125,85 87,stand,,,
89 308.882 -791.643 30.5736,86 117,stand,,,
90 -1319.29 -1600.29 -52.7745,91 95 176,stand,,,
91 -1019.5 -1232.67 -12.3842,90,stand,,,
92 -1025.1 -1338.48 -11.875,89 97,stand,,,
93 -1322.46 -1491.3 -52.7803,88 36 92 93 96,stand,,,
94 -1407.48 -1522.59 -52.0357,91,stand,,,
95 -1174.83 -1490.17 -50.4298,91 94 97,stand,,,
96 -1168.69 -1390.91 -39.3854,93,stand,,,
97 -1326.45 -1766.4 -48.8772,88 96,stand,,,
98 -1026.66 -1748.88 -48.3942,98 99 95 91,stand,,,
99 -1033.57 -1394.08 -32.0954,93 98 90 101,stand,,,
100 -1035 -1533.51 -45.914,96 97 101,stand,,,
101 -788.935 -1750.18 -46.3973,96 102 175,stand,,,
102 -661.302 -1464.99 -49.9406,101 102 103 209,stand,,,
103 -866.177 -1432.83 -49.8764,100 98 97,stand,,,
104 -698.548 -1579.84 -49.6373,100 99 104,stand,,,
105 -344.954 -1482.49 -50.3119,100 104 105,stand,,,
106 -371.717 -1639.22 -50.2002,103 102 107,stand,,,
107 -0.552557 -1448.06 -42.717,106 103 112 114,stand,,,
108 10.5059 -1614.28 -46.6103,105 107 109 111,stand,,,
109 -331.905 -1688.21 -50.4618,106 104 108,stand,,,
110 -225.726 -1777.8 -33.9649,107,stand,,,
111 224.394 -1528.77 -23.4656,106 110 112 167,stand,,,
112 329.227 -1346.38 -8.56788,109 112 113 166,stand,,,
113 131.262 -1792.13 -2.04921,106,stand,,,
114 148.042 -1374.65 -21.6984,105 109 110 114,stand,,,
115 440.22 -1169.61 14.3765,110 116 118 123,stand,,,
116 132.486 -1147.91 -11.303,105 112 116,stand,,,
117 134.092 -911.321 49.4483,116,stand,,,
118 334.429 -1001.08 26.5169,117 114 115 113,stand,,,
119 348.914 -791.595 29.8122,116 87 118,stand,,,
120 536.599 -802.3 32.5316,113 117 119 122,stand,,,
121 545.162 -635.908 31.4892,118 120,stand,,,
122 489.183 -362.348 24.467,163 165 119,stand,,,
123 909.738 -752.3 58.4706,122 192 214,stand,,,
124 813.736 -865.135 43.802,121 118 123,stand,,,
125 802.204 -1114.36 10.4652,113 122 174,stand,,,
126 -897.858 -555.903 194.125,125 127 25 203,stand,,,
127 -895.563 -244.962 194.125,124 2 13 126 25,stand,,,
128 -1144.77 -249.851 194.125,125 3 127,stand,,,
129 -1154.49 -515.646 194.125,126 124 25 22,stand,,,
130 52.1313 1396.64 201.671,71 129 130,stand,,,
131 -210.884 1394.39 194.125,128,stand,,,
132 62.593 1607.01 194.125,128 132 53 135 137,stand,,,
133 360.458 1612.14 197.387,51 132 133,stand,,,
134 261.918 1621.24 204.778,131 133 130 52 53,stand,,,
135 331.403 1310.97 194.125,131 132 67,stand,,,
136 158.088 1934.94 194.125,53,stand,,,
137 -215.813 1635.05 194.125,130,stand,,,
138 -42.8488 1901.33 195.139,53,stand,,,
139 -172.306 1860.85 204.49,130,stand,,,
140 1828.76 1149.89 94.125,139 140 168,stand,,,
141 1901.51 1146.18 94.125,138,stand,,,
142 1832.15 1222.03 100.45,138 141,stand,,,
143 1650.88 1244.49 98.0282,140 142 220,stand,,,
144 1511.43 1518.54 115.538,141 143 146,stand,,,
145 1370.82 1394.77 83.9473,142 144 147 221,stand,,,
146 1268.39 1529.88 105.199,143 64 145,stand,,,
147 1288.85 1853.29 157.738,144 46 146,stand,,,
148 1699.69 1812.99 149.621,142 145 169 170,stand,,,
149 1379.37 1080.83 32.5986,143 148 219 221 224,stand,,,
150 1444.47 880.072 32.0871,147 195 219 224,stand,,,
151 619.437 821.069 194.125,72 150 151,stand,,,
152 489.701 878.597 194.125,149,stand,,,
153 978.87 821.901 207.616,149 152 226,stand,,,
154 1173.17 797.997 194.125,151 153 226,stand,,,
155 1158.49 569.252 194.125,152 154 159,stand,,,
156 941.425 569.354 194.125,153 155 72,stand,,,
157 921.402 333.835 194.125,154 156,stand,,,
158 728.038 328.994 194.125,155 157,stand,,,
159 727.865 409.208 194.125,158 156,stand,,,
160 -13.2736 406.787 194.125,157,stand,,,
161 1167.5 396.183 194.125,153,stand,,,
162 -68.064 25.2903 24.5273,21 83 171 212,stand,,,
163 431.82 251.77 26.5775,44 162 171,stand,,,
164 434.991 35.527 22.4732,161 45 163 212,stand,,,
165 482.333 -214.723 25.8536,162 120 164 212,stand,,,
166 738.98 -184.114 34.3709,163,stand,,,
167 726.312 -385.439 35.8037,120,stand,,,
168 468.038 -1493.43 2.31478,110,stand,,,
169 310.887 -1704.59 -3.70223,109,stand,,,
170 1872.32 1009.53 94.125,138 220,stand,,,
171 1784.66 1916.66 152.717,146,stand,,,
172 1843.63 1841.59 154.954,146,stand,,,
173 -41.3339 136.878 24.125,161 160 83,stand,,,
174 -92.5587 -401.828 32.9069,21,stand,,,
175 -222.139 -390.493 30.0597,21,stand,,,
176 933.788 -1300.18 25.1365,123,stand,,,
177 -706.126 -1714.51 -45.875,99,stand,,,
178 -1403.18 -1630.29 -54.8701,88,stand,,,
179 -1491.45 -1103.28 18.2776,34,stand,,,
180 -1491.67 -927.044 35.8379,34,stand,,,
181 -1359.47 -394.965 194.125,22,stand,,,
182 -749.085 -10.2128 194.125,12,stand,,,
183 209.97 -632.793 194.125,202,stand,,,
184 608.539 -543.345 194.125,201,stand,,,
185 1678.39 166.555 32.125,40,stand,,,
186 1688.03 -128.485 32.125,39,stand,,,
187 437.618 603.665 32.125,186 229,stand,,,
188 742.406 594.471 32.125,185 187 188,stand,,,
189 931.418 653.236 34.3522,186 188 197 216,stand,,,
190 929.748 473.885 35.7625,186 187 189 216,stand,,,
191 906.074 315.078 32.125,188 190 44,stand,,,
192 964.667 151.667 46.3863,189 191 45,stand,,,
193 893.789 -40.6716 46.8617,190 45 214,stand,,,
194 976.374 -540.201 32.125,121 193 214,stand,,,
195 1103.38 -526.972 32.125,37 192 215,stand,,,
196 1272.64 584.167 32.125,195 196 218 217 216,stand,,,
197 1396.61 675.093 32.125,194 196 148 224,stand,,,
198 1421.1 526.859 32.125,43 195 194,stand,,,
199 946.049 851.05 32.125,198 187 217,stand,,,
200 935.199 996.093 32.125,197 221 222,stand,,,
201 -265.958 -577.338 194.125,200 204 205,stand,,,
202 -57.6215 -594.291 206.974,202 199,stand,,,
203 454.517 -539.804 194.125,182 202,stand,,,
204 178.336 -556.494 194.125,201 200 181,stand,,,
205 -656.895 -574.092 195.125,124 204,stand,,,
206 -522.959 -653.413 194.125,203 199 205 0,stand,,,
207 -365.681 -466.029 194.125,199 206 204,stand,,,
208 -507.83 -274.742 194.125,1 205 2,stand,,,
209 -690.097 -1237.13 19.4094,208 209,climb,21.1157 85.8453 0,,
210 -691.24 -1207.35 66.125,207 29 30,climb,-4.9823 85.1861 0,,
211 -719.406 -1334.44 -14.8506,207 100,stand,,,
212 -764.769 840.962 215.867,79 19 211 14 9 15,stand,,,
213 -921.191 667.054 213.35,19 8 210,stand,,,
214 158.517 -228.815 22.5875,160 21 162 163,stand,,,
215 -849.772 -767.68 194.125,27 26 24,stand,,,
216 917.811 -304.909 32.125,191 192 121,stand,,,
217 1165.14 -157.786 32.125,193 38 42,stand,,,
218 1083.68 573.669 48.0797,188 187 217 218 194,stand,,,
219 1172.08 720.929 32.125,197 216 194 218,stand,,,
220 1153.28 436.77 44.2687,216 194 217 42,stand,,,
221 1578.88 972.241 32.125,220 148 147,climb,1.26343 -1.9328 0,,
222 1604.59 972.14 100.125,219 141 168,climb,0.741577 -2.14703 0,,
223 1230.89 1053.43 32.125,147 143 198,stand,,,
224 833.317 1035.39 32.125,223 198,climb,3.79578 176.721 0,,
225 809.568 1035.38 100.125,222 62,climb,3.72986 -178.769 0,,
226 1319.13 914.901 57.1393,225 147 195 148,climb,4.37256 178.671 0,,
227 1295.29 914.359 232.125,226 224,climb,5.39978 -179.714 0,,
228 1203.89 899.589 204.988,225 152 151,stand,,,
229 -25.1636 603.043 192.125,75 228,stand,,,
230 106.576 597.105 97.7133,227 229,stand,,,
231 242.226 598.01 32.125,228 185,stand,,,

View File

@@ -0,0 +1,288 @@
287
434.481 -3496.89 51.9359,1 65 158 192,stand,,,
43.7459 -3336.46 32.4429,0 2 173 158 178 180,stand,,,
-336.267 -3483.15 38.9666,1 66 180,stand,,,
-912.411 -1169.36 -39.8834,4 5,stand,,,
-1234.34 -1034.25 -10.3808,3 5 39,stand,,,
-920.02 -1217.71 -39.9569,4 3 6,stand,,,
-941.434 -1292.9 -37.0614,5 7 8,stand,,,
-736.792 -1379.82 0.766693,6 8 185 43 183,stand,,,
-928.938 -1477.46 -32.4334,7 6 9,stand,,,
-1080 -1700.95 -34.1384,8 10,stand,,,
-980.023 -2000.73 -15.7649,9 11 12,stand,,,
-778.332 -2079.98 7.06384,10 12 182 179 183 185,stand,,,
-949.304 -2171.51 -15.875,11 10 13,stand,,,
-1022.46 -2387.93 -15.9435,12 14 22,stand,,,
-1026.96 -2610.87 -15.8353,13 15 23,stand,,,
-1026.96 -2630.36 16.3636,14 16,stand,,,
-985.958 -2757.01 44.5625,15 17 18 66 179,stand,,,
-1274.63 -2838.29 62.4552,16 18 67,stand,,,
-1377.73 -2683.42 38.4285,17 16 19 24 240 68 67,stand,,,
-1427.01 -2327.63 12.0884,18 24 20 237 238 240,stand,,,
-1262.33 -2270.45 24.9589,21 19 25,stand,,,
-1275.65 -2373.55 16.125,20 22,stand,,,
-1273.54 -2393.13 -15.875,21 13 23,stand,,,
-1299.87 -2577.91 -15.875,22 24 14,stand,,,
-1319.47 -2577.91 16.125,23 18 19 240,stand,,,
-1189.92 -1915.04 31.0927,20 26 27,stand,,,
-1306.3 -1680.9 51.6882,25 27 235 237 239,stand,,,
-1154.75 -1408.92 40.8439,26 25 28,stand,,,
-1184.06 -1151.08 28.563,29 27,stand,,,
-1408.13 -1023.61 32.6884,28 30 31,stand,,,
-1575.16 -1068.86 34.1934,29 32 229 230,stand,,,
-1498.24 -748.929 24.125,29 32 33,stand,,,
-1697.85 -860.622 12.4074,31 35 30 229 228,stand,,,
-1493.48 -729.961 -6.72728,31 34 38,stand,,,
-1530.87 -664.524 -0.851873,33 35 38,stand,,,
-1844.72 -706.094 22.7684,34 32 196 228 229,stand,,,
-1408.87 -537.266 -12.7136,37 38,stand,,,
-1330.08 -553.422 -10.5937,36 38 40,stand,,,
-1414.11 -662.56 -14.7226,36 37 33 34 39 195,stand,,,
-1376.52 -885.656 -15.823,38 4,stand,,,
-1047.2 -437.125 -22.7161,37 41,stand,,,
-672.413 -549.735 -47.0644,40 42,stand,,,
-499.372 -726.158 -55.8929,41 43 44,stand,,,
-422.816 -932.213 -11.454,42 44 7 186 185 189 193 194,stand,,,
-338.75 -732.328 -55.8927,43 42 45,stand,,,
-54.3638 -697.59 -40.3711,44 46,stand,,,
81.0095 -746.487 -23.7548,45 47,stand,,,
283.781 -745.672 -23.6066,46 48,stand,,,
582.224 -813.017 -23.875,47 49 52 50 51,stand,,,
638.896 -683.051 -10.2385,48 50,stand,,,
775.852 -679.292 -18.1692,49 51 48 52 54,stand,,,
848.364 -900.753 -39.875,50 52 48,stand,,,
669.52 -964.875 -20.3092,51 53 48 50,stand,,,
669.667 -984.429 13.0298,52 186 187,stand,,,
799.65 -416.137 -13.875,50 55 56,stand,,,
692.896 -313.513 -13.875,54 56,stand,,,
792.216 -193.212 -13.875,55 54 57,stand,,,
791.462 48.8392 5.92654,56 58 59 201 215,stand,,,
675.126 46.1349 15.7919,59 201 57,stand,,,
690.635 334.72 16.0315,58 57 201 203,stand,,,
3864.59 -3080.06 -10.5134,61 100 102 101,stand,,,
3454.8 -3207.18 33.4113,60 62 101,stand,,,
2801.73 -3427.57 47.0099,61 63 164 155,stand,,,
2214.06 -3541.12 53.3992,62 64 164 152 150,stand,,,
1430.47 -3508.98 37.2852,63 65 150 151 156,stand,,,
840.955 -3461.64 59.6049,64 0 158 156 152,stand,,,
-750.89 -3225.48 31.9599,2 67 177 16 180 179 181,stand,,,
-1368.93 -3046.39 61.8661,66 68 18 17,stand,,,
-1746.91 -2681.24 44.3873,67 69 18 240,stand,,,
-2251.95 -2206.57 39.1132,68 70 237 236 240,stand,,,
-2348.05 -1719.27 8.46388,69 71 227 236,stand,,,
-2599.41 -1285.7 41.6455,70 72 226 227,stand,,,
-2688.68 -562.26 35.724,71 73 225 241,stand,,,
-2747.74 -171.562 32.2291,72 74 225 241 242 278 277,stand,,,
-3407.44 61.1595 32.3387,73 75 243 278,stand,,,
-3416.68 970.154 36.4476,74 76 78 77 243 244,stand,,,
-3814.06 990.774 47.5842,75 77,stand,,,
-3561.44 1047.73 40.4858,76 78 75,stand,,,
-3429.89 1149.69 43.4245,77 75 79 245,stand,,,
-3408.25 1480.08 45.4139,78 81 80 246,stand,,,
-3442.5 1604.88 41.2335,79 81 82 246 276,stand,,,
-3786.27 1469.25 39.834,79 80,stand,,,
-3123.36 1837.54 34.337,80 83 84 246 276,stand,,,
-3040.92 2046.8 40.4001,82 84 86,stand,,,
-2950.74 1782.37 33.0157,83 85 82 248 246,stand,,,
-2717.76 1769.77 36.148,84 86 87 248 251,stand,,,
-2845.78 1981.8 32.8646,85 83,stand,,,
-2240.85 1500.95 82.6314,85 88 253 250 255 251,stand,,,
-1726.71 1816.33 34.1627,87 89 255 256,stand,,,
-1099.42 2165.63 45.057,88 90 256,stand,,,
-348.763 2225.29 4.35022,89 91 257 256,stand,,,
553.846 1855.44 -64.6165,90 92 257 209 259,stand,,,
1545.76 1836.41 -62.5815,91 93 210 209 258,stand,,,
1943.55 1805.02 -48.4079,92 94 210 258 268,stand,,,
2905.11 1542.36 -68.7127,93 95 268 267 273,stand,,,
3596.03 1076.75 -50.3299,94 96 274 273 265,stand,,,
3978.79 212.963 -38.2924,95 97 110 106 274,stand,,,
4100.85 -629.298 4.92864,96 98 106 110,stand,,,
3929.7 -1176.02 -24.7862,97 99 105 106 108,stand,,,
4104.92 -1824.12 11.4692,98 100 104 105,stand,,,
4109.74 -2450.94 53.0531,99 60 102,stand,,,
3317.56 -2655.82 36.9781,61 102 103 167 168 60,stand,,,
3873.1 -2487.27 64.6452,100 101 104 60,stand,,,
3421.45 -2162.43 12.5475,101 104 105 107 167,stand,,,
3805.64 -2143.26 25.7285,103 102 99 105,stand,,,
3607.16 -1626.83 -43.2519,99 103 98 106 104 107 108,stand,,,
3757.52 -631.18 -73.3459,98 105 109 97 96 110 108,stand,,,
3054.76 -1663.29 -8.26293,103 105 143 144 146 167 145,stand,,,
3238.06 -1261.79 14.9014,105 109 143 98 106,stand,,,
3257.85 -493.919 30.2519,108 106 110 139 140 140 138,stand,,,
3462.56 21.6477 -65.0877,97 111 96 109 106 272 265 274,stand,,,
2861.93 -1.87414 25.0148,110 140 264 265 272,stand,,,
1179.34 -768.102 -36.875,113 119,stand,,,
1180.82 -890.94 -37.875,112 114 115 116,stand,,,
1404.35 -901.136 -39.6158,113 120 121 121 122,stand,,,
1228.87 -1076.09 -35.875,113 116 118,stand,,,
1140.32 -995.221 -35.875,113 117 115 118,stand,,,
993.828 -905.463 -35.875,116 118 119 119,stand,,,
1062.07 -1028.73 -35.875,117 115 116,stand,,,
1072.33 -805.968 -37.875,117 112 117,stand,,,
1408.73 -972.473 -38.3921,114 122,stand,,,
1408.58 -814.125 -39.2877,114 114,stand,,,
1495.73 -907.778 -38.8561,120 114 124,stand,,,
1704.02 -1050.87 -2.32493,124 131 132,stand,,,
1652.08 -914.657 -20.399,123 122 125 131,stand,,,
1631.51 -557.805 -15.8766,124 126 129,stand,,,
1627.24 -538.676 16.125,125 127,stand,,,
1414.94 -434.859 82.989,126 128,stand,,,
2065.68 -447.612 58.6355,127 130 139,stand,,,
1817.52 -561.22 -15.8351,130 125 131,stand,,,
1837.07 -561.22 16.125,128 129,stand,,,
1789.38 -882.469 -15.875,129 123 124 133,stand,,,
1704.73 -1080.66 16.125,123 275 147 166 280,stand,,,
2197.72 -923.148 -39.9031,131 134 281,stand,,,
2405.79 -968.278 -39.9367,133 135,stand,,,
2822.7 -841.706 -15.875,134 136,stand,,,
2945.52 -890.802 -9.41905,137 135 141 144 142,stand,,,
2968.12 -727.27 -15.731,136 138,stand,,,
2963.66 -708.197 16.125,137 139 140 109,stand,,,
2786.7 -623.612 39.8187,138 128 109,stand,,,
3173.99 -306.575 35.5305,138 109 111 109 265,stand,,,
3141.99 -1018.66 -15.875,136 142,stand,,,
3105.44 -1080.52 -15.875,141 136 143,stand,,,
3106.3 -1315.49 -9.63004,144 142 107 145 108 282,stand,,,
2997.28 -1461.85 -11.0465,143 136 107 145 146,stand,,,
2443.12 -1351.05 83.3754,144 143 146 166 107 275 280 282,stand,,,
2341.41 -1864.8 -12.8673,107 145 166 153 165 167 149 275 144,stand,,,
1474.54 -1571.41 39.5056,148 166 132 275 149 280,stand,,,
1124.16 -1930.05 11.9564,147 149 166 170 161 169,stand,,,
1472.31 -2374.88 35.3822,148 150 153 146 161 172 147 169 286,stand,,,
1735.84 -3027.42 32.1229,149 64 155 152 164 172 63 284 283,stand,,,
1258.34 -3119.33 39.7984,64 152 156,stand,,,
1475.3 -3124.5 32.125,151 150 63 172 65,stand,,,
2109.07 -2470.68 34.5717,149 154 166 146 165 283,stand,,,
2019.13 -2763.05 35.8302,153 155 165,stand,,,
2308.99 -2997.07 32.1217,154 150 62 165 168,stand,,,
984.473 -3203.81 44.8253,151 157 158 159 163 64 65,stand,,,
637.634 -3119.32 40.2083,156 158 163,stand,,,
653.564 -3284.33 56.436,157 156 65 0 173 163 1,stand,,,
1036.88 -2767.13 34.5991,156 160 163,stand,,,
873.176 -2767.13 32.125,159 161 162 163,stand,,,
873.582 -2700.5 27.9693,160 149 169 148 171 191 190,stand,,,
627.125 -3073.4 33.2678,160 163,stand,,,
950.098 -3100.15 23.1905,162 157 156 160 159 158,stand,,,
2355.28 -3280.5 32.2619,63 150 62 168,stand,,,
2410.37 -2494.62 32.125,155 154 153 146 168,stand,,,
1869.46 -1725.02 24.7089,153 146 147 148 145 275 132,stand,,,
2925.8 -2208.21 68.0889,146 103 101 107 168,stand,,,
2929.02 -2740.25 5.76819,167 155 164 101 165,stand,,,
794.913 -2092.79 15.4501,161 170 148 190 191 149,stand,,,
822.78 -1643.77 23.5716,169 148 187 188,stand,,,
1106.03 -2739.11 42.3487,161 172,stand,,,
1490.62 -2734.29 37.8144,171 150 149 152 286,stand,,,
248.834 -3162.22 35.2591,1 174 178 158 192,stand,,,
77.3768 -2814.13 32.1076,173 175 192,stand,,,
-127.06 -2793.14 50.125,174 176 177 178 184 180 191,stand,,,
-221.123 -2719.13 46.7492,175 177,stand,,,
-400.415 -2908.84 33.7605,176 175 178 66 180 181,stand,,,
-115.139 -3102.1 31.7095,175 173 1 177,stand,,,
-832.047 -2732.83 36.8291,16 11 66 181 182,stand,,,
-369.203 -3236.07 32.1118,66 1 2 177 175,stand,,,
-549.485 -2798.36 37.4473,177 182 66 179,stand,,,
-541.933 -2470.95 40.1247,181 11 179 184 183,stand,,,
-310.442 -2158.86 10.4606,184 182 11 188 185 189 7 190,stand,,,
11.4304 -2444.16 32.8803,183 182 188 175 191,stand,,,
-431.074 -1630.58 15.8081,11 7 183 43 193,stand,,,
206.569 -1166.37 41.6725,43 53 187 188 193,stand,,,
706.604 -1421.64 13.9323,53 170 186 188 190 193,stand,,,
147.219 -1880.76 60.8123,186 187 170 183 189 184 191 190,stand,,,
-139.72 -1732.49 21.8723,43 188 193 183,stand,,,
560.674 -2032.31 28.8322,169 191 188 187 193 161 183,stand,,,
575.134 -2676.77 40.4477,190 169 161 192 175 184 188,stand,,,
533.614 -2835.36 41.8316,191 174 173 0,stand,,,
43.0966 -1435.45 41.8848,187 189 43 190 186 185,stand,,,
-760.56 -992.941 39.9124,43 195,stand,,,
-1350.39 -721.703 24.125,194 38,stand,,,
-2032.81 -653.345 33.5851,35 197 225 226 241 228 229,stand,,,
-2099.47 -49.1303 10.854,196 198 223 224 225 250,stand,,,
-1276.81 186.993 38.1685,197 199 221 223 222,stand,,,
-623.282 78.7743 77.6454,198 200 220 221,stand,,,
91.6239 178.633 25.8306,199 202 219 220 252,stand,,,
617.915 195.865 22.2754,202 58 59 57,stand,,,
598.995 200.754 57.125,200 201 219,stand,,,
815.168 665.482 -24.1335,59 204 216 218,stand,,,
879.918 1095 -26.9129,203 205 207 206,stand,,,
990.284 1219.1 -19.0505,204 206 207,stand,,,
905.726 1322.3 -24.2596,205 207 208 204,stand,,,
779.096 1227.83 -24.8264,206 204 205,stand,,,
893.745 1347.47 9.125,206 209 259,stand,,,
1086.5 1543.67 -59.7345,208 210 91 211 92 259,stand,,,
1423.84 1510.13 -92.8088,209 92 211 93 258,stand,,,
1283.67 1297.9 -39.4883,210 212 209 258,stand,,,
1130.91 803.702 -31.9772,211 213 217 258 269,stand,,,
1107.27 228.543 38.859,212 214 263 269,stand,,,
982.51 65.6175 87.036,213 215,stand,,,
802.802 52.7786 57.125,214 57,stand,,,
915.972 784.052 -19.6487,203 217,stand,,,
931.68 778.888 9.125,216 212,stand,,,
778.364 677.725 9.125,203 219 262,stand,,,
330.874 728.637 -73.2004,218 220 200 202 262,stand,,,
-158.03 736.211 -68.1939,219 199 200 222 262 260,stand,,,
-1222.43 575.985 -61.0197,199 222 198 223 252 253 254,stand,,,
-750.316 761.955 -51.0973,220 221 198 252 254 261 260,stand,,,
-1742.05 587.101 -41.8939,221 197 250 224 251 198 254,stand,,,
-2397.66 346.4 -3.22561,197 225 242 223 250,stand,,,
-2420.82 -330.713 4.03698,224 72 73 196 241 197,stand,,,
-2288.09 -973.053 14.8678,196 71 228 229 241,stand,,,
-2327.75 -1481.05 28.1918,71 228 236 70,stand,,,
-2044.14 -1300.01 43.0377,227 229 226 236 32 35 196,stand,,,
-1738.33 -1123.84 35.1582,228 30 234 236 32 35 226 241 196 279,stand,,,
-1496.69 -1167.83 46.3071,30 231 232,stand,,,
-1312.13 -1243.87 50.125,230,stand,,,
-1447.36 -1348.83 41.2481,230 233 234 279,stand,,,
-1312.13 -1282.13 50.125,232 234,stand,,,
-1566.5 -1595.88 50.125,233 235 232 229,stand,,,
-1566.97 -1667.97 38.5014,234 237 26,stand,,,
-1894.49 -1747.43 2.78535,229 227 70 237 69 240 228,stand,,,
-1675.24 -1878.6 -7.67982,236 235 26 19 239 69 240,stand,,,
-1338.42 -1947 32.4434,19 239,stand,,,
-1414.43 -1809.61 36.0946,238 26 237,stand,,,
-1671.5 -2354.79 32.2795,236 237 19 69 18 68 24,stand,,,
-2360.98 -546.592 -2.31344,226 225 72 196 229 73,stand,,,
-2570.89 337.986 26.2356,224 73 243 249 277,stand,,,
-3011.82 553.183 32.6441,242 75 249 74 278,stand,,,
-2958.8 978.754 41.7884,75 245 247 249,stand,,,
-3087.53 1078.31 41.3272,78 244 246 247,stand,,,
-2986.11 1383.81 23.4192,245 247 82 248 84 80 79,stand,,,
-2812.56 1225.18 20.581,246 248 244 245 249,stand,,,
-2747.86 1428.09 16.9429,247 85 246 84 251,stand,,,
-2503.59 1063.02 -2.73322,247 243 242 250 251 253 277 244,stand,,,
-2316.68 923.803 -23.4784,249 223 224 251 87 253 255 197,stand,,,
-2450.39 1236.24 -0.197223,250 85 249 248 223 253 87 255,stand,,,
-198.104 382.788 12.6056,222 200 221,stand,,,
-1547.73 1064.96 16.9802,221 87 250 251 249 255,stand,,,
-1280.95 1130.83 62.7136,222 221 255 256 223 261,stand,,,
-1638.61 1353.03 -7.40217,254 87 251 253 88 256 250,stand,,,
-896.059 1829.38 -50.6025,88 89 254 257 261 90 255,stand,,,
10.9914 1543.73 -103.636,256 91 260 261 259 262 90,stand,,,
1650.97 1279.59 -103.877,93 211 210 268 212 269 92 270,stand,,,
686.294 1629.89 -87.4188,208 209 91 257 262,stand,,,
-305.732 1172.22 -66.4243,257 261 220 222 262,stand,,,
-776.36 1259.5 66.959,260 256 222 254 257,stand,,,
366.424 1112.06 -100.575,218 219 259 257 220 260,stand,,,
1790.59 31.0692 71.8674,213 264 269 271,stand,,,
2471 29.9673 7.99284,263 111 271 272 266,stand,,,
3217.68 562.524 -97.5375,111 266 110 273 274 95 140,stand,,,
2722.43 729.341 -139.001,265 267 268 271 272 270 264,stand,,,
2667.45 1193.56 -131.246,266 268 273 94,stand,,,
2346.53 1486.49 -72.5859,267 258 270 94 93 266,stand,,,
1612.45 688.883 -104.332,212 263 213 258 270 271,stand,,,
2197.05 971.823 -22.1719,258 268 271 269 266,stand,,,
2215.1 489.356 -16.9384,266 270 269 263 264 272,stand,,,
2928.08 362.115 -72.7782,264 111 266 271 110 273,stand,,,
3020.86 976.441 -122.08,265 267 94 274 95 272,stand,,,
3590.01 565.454 -112.473,273 95 110 96 265,stand,,,
2121.24 -1418.62 70.3548,166 146 145 132 147 280,stand,,,
-3413.07 1856.03 38.6056,80 82,stand,,,
-2706.33 71.2617 32.125,242 278 73 249,stand,,,
-2892.61 212.037 39.3663,277 243 73 74,stand,,,
-1579.38 -1422.52 44.1634,229 232,stand,,,
2143.8 -1094.93 33.8226,132 145 147 281 275 282,stand,,,
2182.76 -963.027 16.4606,133 280,stand,,,
2728.6 -1259.54 36.8695,280 143 145,stand,,,
1887.73 -2586.19 30.3914,153 150 285 284,stand,,,
1974.2 -2711.57 37.8055,150 283,stand,,,
1719.13 -2586.07 37.6685,283 286,stand,,,
1658.03 -2586.93 42.6203,285 149 172,stand,,,
1 287
2 434.481 -3496.89 51.9359,1 65 158 192,stand,,,
3 43.7459 -3336.46 32.4429,0 2 173 158 178 180,stand,,,
4 -336.267 -3483.15 38.9666,1 66 180,stand,,,
5 -912.411 -1169.36 -39.8834,4 5,stand,,,
6 -1234.34 -1034.25 -10.3808,3 5 39,stand,,,
7 -920.02 -1217.71 -39.9569,4 3 6,stand,,,
8 -941.434 -1292.9 -37.0614,5 7 8,stand,,,
9 -736.792 -1379.82 0.766693,6 8 185 43 183,stand,,,
10 -928.938 -1477.46 -32.4334,7 6 9,stand,,,
11 -1080 -1700.95 -34.1384,8 10,stand,,,
12 -980.023 -2000.73 -15.7649,9 11 12,stand,,,
13 -778.332 -2079.98 7.06384,10 12 182 179 183 185,stand,,,
14 -949.304 -2171.51 -15.875,11 10 13,stand,,,
15 -1022.46 -2387.93 -15.9435,12 14 22,stand,,,
16 -1026.96 -2610.87 -15.8353,13 15 23,stand,,,
17 -1026.96 -2630.36 16.3636,14 16,stand,,,
18 -985.958 -2757.01 44.5625,15 17 18 66 179,stand,,,
19 -1274.63 -2838.29 62.4552,16 18 67,stand,,,
20 -1377.73 -2683.42 38.4285,17 16 19 24 240 68 67,stand,,,
21 -1427.01 -2327.63 12.0884,18 24 20 237 238 240,stand,,,
22 -1262.33 -2270.45 24.9589,21 19 25,stand,,,
23 -1275.65 -2373.55 16.125,20 22,stand,,,
24 -1273.54 -2393.13 -15.875,21 13 23,stand,,,
25 -1299.87 -2577.91 -15.875,22 24 14,stand,,,
26 -1319.47 -2577.91 16.125,23 18 19 240,stand,,,
27 -1189.92 -1915.04 31.0927,20 26 27,stand,,,
28 -1306.3 -1680.9 51.6882,25 27 235 237 239,stand,,,
29 -1154.75 -1408.92 40.8439,26 25 28,stand,,,
30 -1184.06 -1151.08 28.563,29 27,stand,,,
31 -1408.13 -1023.61 32.6884,28 30 31,stand,,,
32 -1575.16 -1068.86 34.1934,29 32 229 230,stand,,,
33 -1498.24 -748.929 24.125,29 32 33,stand,,,
34 -1697.85 -860.622 12.4074,31 35 30 229 228,stand,,,
35 -1493.48 -729.961 -6.72728,31 34 38,stand,,,
36 -1530.87 -664.524 -0.851873,33 35 38,stand,,,
37 -1844.72 -706.094 22.7684,34 32 196 228 229,stand,,,
38 -1408.87 -537.266 -12.7136,37 38,stand,,,
39 -1330.08 -553.422 -10.5937,36 38 40,stand,,,
40 -1414.11 -662.56 -14.7226,36 37 33 34 39 195,stand,,,
41 -1376.52 -885.656 -15.823,38 4,stand,,,
42 -1047.2 -437.125 -22.7161,37 41,stand,,,
43 -672.413 -549.735 -47.0644,40 42,stand,,,
44 -499.372 -726.158 -55.8929,41 43 44,stand,,,
45 -422.816 -932.213 -11.454,42 44 7 186 185 189 193 194,stand,,,
46 -338.75 -732.328 -55.8927,43 42 45,stand,,,
47 -54.3638 -697.59 -40.3711,44 46,stand,,,
48 81.0095 -746.487 -23.7548,45 47,stand,,,
49 283.781 -745.672 -23.6066,46 48,stand,,,
50 582.224 -813.017 -23.875,47 49 52 50 51,stand,,,
51 638.896 -683.051 -10.2385,48 50,stand,,,
52 775.852 -679.292 -18.1692,49 51 48 52 54,stand,,,
53 848.364 -900.753 -39.875,50 52 48,stand,,,
54 669.52 -964.875 -20.3092,51 53 48 50,stand,,,
55 669.667 -984.429 13.0298,52 186 187,stand,,,
56 799.65 -416.137 -13.875,50 55 56,stand,,,
57 692.896 -313.513 -13.875,54 56,stand,,,
58 792.216 -193.212 -13.875,55 54 57,stand,,,
59 791.462 48.8392 5.92654,56 58 59 201 215,stand,,,
60 675.126 46.1349 15.7919,59 201 57,stand,,,
61 690.635 334.72 16.0315,58 57 201 203,stand,,,
62 3864.59 -3080.06 -10.5134,61 100 102 101,stand,,,
63 3454.8 -3207.18 33.4113,60 62 101,stand,,,
64 2801.73 -3427.57 47.0099,61 63 164 155,stand,,,
65 2214.06 -3541.12 53.3992,62 64 164 152 150,stand,,,
66 1430.47 -3508.98 37.2852,63 65 150 151 156,stand,,,
67 840.955 -3461.64 59.6049,64 0 158 156 152,stand,,,
68 -750.89 -3225.48 31.9599,2 67 177 16 180 179 181,stand,,,
69 -1368.93 -3046.39 61.8661,66 68 18 17,stand,,,
70 -1746.91 -2681.24 44.3873,67 69 18 240,stand,,,
71 -2251.95 -2206.57 39.1132,68 70 237 236 240,stand,,,
72 -2348.05 -1719.27 8.46388,69 71 227 236,stand,,,
73 -2599.41 -1285.7 41.6455,70 72 226 227,stand,,,
74 -2688.68 -562.26 35.724,71 73 225 241,stand,,,
75 -2747.74 -171.562 32.2291,72 74 225 241 242 278 277,stand,,,
76 -3407.44 61.1595 32.3387,73 75 243 278,stand,,,
77 -3416.68 970.154 36.4476,74 76 78 77 243 244,stand,,,
78 -3814.06 990.774 47.5842,75 77,stand,,,
79 -3561.44 1047.73 40.4858,76 78 75,stand,,,
80 -3429.89 1149.69 43.4245,77 75 79 245,stand,,,
81 -3408.25 1480.08 45.4139,78 81 80 246,stand,,,
82 -3442.5 1604.88 41.2335,79 81 82 246 276,stand,,,
83 -3786.27 1469.25 39.834,79 80,stand,,,
84 -3123.36 1837.54 34.337,80 83 84 246 276,stand,,,
85 -3040.92 2046.8 40.4001,82 84 86,stand,,,
86 -2950.74 1782.37 33.0157,83 85 82 248 246,stand,,,
87 -2717.76 1769.77 36.148,84 86 87 248 251,stand,,,
88 -2845.78 1981.8 32.8646,85 83,stand,,,
89 -2240.85 1500.95 82.6314,85 88 253 250 255 251,stand,,,
90 -1726.71 1816.33 34.1627,87 89 255 256,stand,,,
91 -1099.42 2165.63 45.057,88 90 256,stand,,,
92 -348.763 2225.29 4.35022,89 91 257 256,stand,,,
93 553.846 1855.44 -64.6165,90 92 257 209 259,stand,,,
94 1545.76 1836.41 -62.5815,91 93 210 209 258,stand,,,
95 1943.55 1805.02 -48.4079,92 94 210 258 268,stand,,,
96 2905.11 1542.36 -68.7127,93 95 268 267 273,stand,,,
97 3596.03 1076.75 -50.3299,94 96 274 273 265,stand,,,
98 3978.79 212.963 -38.2924,95 97 110 106 274,stand,,,
99 4100.85 -629.298 4.92864,96 98 106 110,stand,,,
100 3929.7 -1176.02 -24.7862,97 99 105 106 108,stand,,,
101 4104.92 -1824.12 11.4692,98 100 104 105,stand,,,
102 4109.74 -2450.94 53.0531,99 60 102,stand,,,
103 3317.56 -2655.82 36.9781,61 102 103 167 168 60,stand,,,
104 3873.1 -2487.27 64.6452,100 101 104 60,stand,,,
105 3421.45 -2162.43 12.5475,101 104 105 107 167,stand,,,
106 3805.64 -2143.26 25.7285,103 102 99 105,stand,,,
107 3607.16 -1626.83 -43.2519,99 103 98 106 104 107 108,stand,,,
108 3757.52 -631.18 -73.3459,98 105 109 97 96 110 108,stand,,,
109 3054.76 -1663.29 -8.26293,103 105 143 144 146 167 145,stand,,,
110 3238.06 -1261.79 14.9014,105 109 143 98 106,stand,,,
111 3257.85 -493.919 30.2519,108 106 110 139 140 140 138,stand,,,
112 3462.56 21.6477 -65.0877,97 111 96 109 106 272 265 274,stand,,,
113 2861.93 -1.87414 25.0148,110 140 264 265 272,stand,,,
114 1179.34 -768.102 -36.875,113 119,stand,,,
115 1180.82 -890.94 -37.875,112 114 115 116,stand,,,
116 1404.35 -901.136 -39.6158,113 120 121 121 122,stand,,,
117 1228.87 -1076.09 -35.875,113 116 118,stand,,,
118 1140.32 -995.221 -35.875,113 117 115 118,stand,,,
119 993.828 -905.463 -35.875,116 118 119 119,stand,,,
120 1062.07 -1028.73 -35.875,117 115 116,stand,,,
121 1072.33 -805.968 -37.875,117 112 117,stand,,,
122 1408.73 -972.473 -38.3921,114 122,stand,,,
123 1408.58 -814.125 -39.2877,114 114,stand,,,
124 1495.73 -907.778 -38.8561,120 114 124,stand,,,
125 1704.02 -1050.87 -2.32493,124 131 132,stand,,,
126 1652.08 -914.657 -20.399,123 122 125 131,stand,,,
127 1631.51 -557.805 -15.8766,124 126 129,stand,,,
128 1627.24 -538.676 16.125,125 127,stand,,,
129 1414.94 -434.859 82.989,126 128,stand,,,
130 2065.68 -447.612 58.6355,127 130 139,stand,,,
131 1817.52 -561.22 -15.8351,130 125 131,stand,,,
132 1837.07 -561.22 16.125,128 129,stand,,,
133 1789.38 -882.469 -15.875,129 123 124 133,stand,,,
134 1704.73 -1080.66 16.125,123 275 147 166 280,stand,,,
135 2197.72 -923.148 -39.9031,131 134 281,stand,,,
136 2405.79 -968.278 -39.9367,133 135,stand,,,
137 2822.7 -841.706 -15.875,134 136,stand,,,
138 2945.52 -890.802 -9.41905,137 135 141 144 142,stand,,,
139 2968.12 -727.27 -15.731,136 138,stand,,,
140 2963.66 -708.197 16.125,137 139 140 109,stand,,,
141 2786.7 -623.612 39.8187,138 128 109,stand,,,
142 3173.99 -306.575 35.5305,138 109 111 109 265,stand,,,
143 3141.99 -1018.66 -15.875,136 142,stand,,,
144 3105.44 -1080.52 -15.875,141 136 143,stand,,,
145 3106.3 -1315.49 -9.63004,144 142 107 145 108 282,stand,,,
146 2997.28 -1461.85 -11.0465,143 136 107 145 146,stand,,,
147 2443.12 -1351.05 83.3754,144 143 146 166 107 275 280 282,stand,,,
148 2341.41 -1864.8 -12.8673,107 145 166 153 165 167 149 275 144,stand,,,
149 1474.54 -1571.41 39.5056,148 166 132 275 149 280,stand,,,
150 1124.16 -1930.05 11.9564,147 149 166 170 161 169,stand,,,
151 1472.31 -2374.88 35.3822,148 150 153 146 161 172 147 169 286,stand,,,
152 1735.84 -3027.42 32.1229,149 64 155 152 164 172 63 284 283,stand,,,
153 1258.34 -3119.33 39.7984,64 152 156,stand,,,
154 1475.3 -3124.5 32.125,151 150 63 172 65,stand,,,
155 2109.07 -2470.68 34.5717,149 154 166 146 165 283,stand,,,
156 2019.13 -2763.05 35.8302,153 155 165,stand,,,
157 2308.99 -2997.07 32.1217,154 150 62 165 168,stand,,,
158 984.473 -3203.81 44.8253,151 157 158 159 163 64 65,stand,,,
159 637.634 -3119.32 40.2083,156 158 163,stand,,,
160 653.564 -3284.33 56.436,157 156 65 0 173 163 1,stand,,,
161 1036.88 -2767.13 34.5991,156 160 163,stand,,,
162 873.176 -2767.13 32.125,159 161 162 163,stand,,,
163 873.582 -2700.5 27.9693,160 149 169 148 171 191 190,stand,,,
164 627.125 -3073.4 33.2678,160 163,stand,,,
165 950.098 -3100.15 23.1905,162 157 156 160 159 158,stand,,,
166 2355.28 -3280.5 32.2619,63 150 62 168,stand,,,
167 2410.37 -2494.62 32.125,155 154 153 146 168,stand,,,
168 1869.46 -1725.02 24.7089,153 146 147 148 145 275 132,stand,,,
169 2925.8 -2208.21 68.0889,146 103 101 107 168,stand,,,
170 2929.02 -2740.25 5.76819,167 155 164 101 165,stand,,,
171 794.913 -2092.79 15.4501,161 170 148 190 191 149,stand,,,
172 822.78 -1643.77 23.5716,169 148 187 188,stand,,,
173 1106.03 -2739.11 42.3487,161 172,stand,,,
174 1490.62 -2734.29 37.8144,171 150 149 152 286,stand,,,
175 248.834 -3162.22 35.2591,1 174 178 158 192,stand,,,
176 77.3768 -2814.13 32.1076,173 175 192,stand,,,
177 -127.06 -2793.14 50.125,174 176 177 178 184 180 191,stand,,,
178 -221.123 -2719.13 46.7492,175 177,stand,,,
179 -400.415 -2908.84 33.7605,176 175 178 66 180 181,stand,,,
180 -115.139 -3102.1 31.7095,175 173 1 177,stand,,,
181 -832.047 -2732.83 36.8291,16 11 66 181 182,stand,,,
182 -369.203 -3236.07 32.1118,66 1 2 177 175,stand,,,
183 -549.485 -2798.36 37.4473,177 182 66 179,stand,,,
184 -541.933 -2470.95 40.1247,181 11 179 184 183,stand,,,
185 -310.442 -2158.86 10.4606,184 182 11 188 185 189 7 190,stand,,,
186 11.4304 -2444.16 32.8803,183 182 188 175 191,stand,,,
187 -431.074 -1630.58 15.8081,11 7 183 43 193,stand,,,
188 206.569 -1166.37 41.6725,43 53 187 188 193,stand,,,
189 706.604 -1421.64 13.9323,53 170 186 188 190 193,stand,,,
190 147.219 -1880.76 60.8123,186 187 170 183 189 184 191 190,stand,,,
191 -139.72 -1732.49 21.8723,43 188 193 183,stand,,,
192 560.674 -2032.31 28.8322,169 191 188 187 193 161 183,stand,,,
193 575.134 -2676.77 40.4477,190 169 161 192 175 184 188,stand,,,
194 533.614 -2835.36 41.8316,191 174 173 0,stand,,,
195 43.0966 -1435.45 41.8848,187 189 43 190 186 185,stand,,,
196 -760.56 -992.941 39.9124,43 195,stand,,,
197 -1350.39 -721.703 24.125,194 38,stand,,,
198 -2032.81 -653.345 33.5851,35 197 225 226 241 228 229,stand,,,
199 -2099.47 -49.1303 10.854,196 198 223 224 225 250,stand,,,
200 -1276.81 186.993 38.1685,197 199 221 223 222,stand,,,
201 -623.282 78.7743 77.6454,198 200 220 221,stand,,,
202 91.6239 178.633 25.8306,199 202 219 220 252,stand,,,
203 617.915 195.865 22.2754,202 58 59 57,stand,,,
204 598.995 200.754 57.125,200 201 219,stand,,,
205 815.168 665.482 -24.1335,59 204 216 218,stand,,,
206 879.918 1095 -26.9129,203 205 207 206,stand,,,
207 990.284 1219.1 -19.0505,204 206 207,stand,,,
208 905.726 1322.3 -24.2596,205 207 208 204,stand,,,
209 779.096 1227.83 -24.8264,206 204 205,stand,,,
210 893.745 1347.47 9.125,206 209 259,stand,,,
211 1086.5 1543.67 -59.7345,208 210 91 211 92 259,stand,,,
212 1423.84 1510.13 -92.8088,209 92 211 93 258,stand,,,
213 1283.67 1297.9 -39.4883,210 212 209 258,stand,,,
214 1130.91 803.702 -31.9772,211 213 217 258 269,stand,,,
215 1107.27 228.543 38.859,212 214 263 269,stand,,,
216 982.51 65.6175 87.036,213 215,stand,,,
217 802.802 52.7786 57.125,214 57,stand,,,
218 915.972 784.052 -19.6487,203 217,stand,,,
219 931.68 778.888 9.125,216 212,stand,,,
220 778.364 677.725 9.125,203 219 262,stand,,,
221 330.874 728.637 -73.2004,218 220 200 202 262,stand,,,
222 -158.03 736.211 -68.1939,219 199 200 222 262 260,stand,,,
223 -1222.43 575.985 -61.0197,199 222 198 223 252 253 254,stand,,,
224 -750.316 761.955 -51.0973,220 221 198 252 254 261 260,stand,,,
225 -1742.05 587.101 -41.8939,221 197 250 224 251 198 254,stand,,,
226 -2397.66 346.4 -3.22561,197 225 242 223 250,stand,,,
227 -2420.82 -330.713 4.03698,224 72 73 196 241 197,stand,,,
228 -2288.09 -973.053 14.8678,196 71 228 229 241,stand,,,
229 -2327.75 -1481.05 28.1918,71 228 236 70,stand,,,
230 -2044.14 -1300.01 43.0377,227 229 226 236 32 35 196,stand,,,
231 -1738.33 -1123.84 35.1582,228 30 234 236 32 35 226 241 196 279,stand,,,
232 -1496.69 -1167.83 46.3071,30 231 232,stand,,,
233 -1312.13 -1243.87 50.125,230,stand,,,
234 -1447.36 -1348.83 41.2481,230 233 234 279,stand,,,
235 -1312.13 -1282.13 50.125,232 234,stand,,,
236 -1566.5 -1595.88 50.125,233 235 232 229,stand,,,
237 -1566.97 -1667.97 38.5014,234 237 26,stand,,,
238 -1894.49 -1747.43 2.78535,229 227 70 237 69 240 228,stand,,,
239 -1675.24 -1878.6 -7.67982,236 235 26 19 239 69 240,stand,,,
240 -1338.42 -1947 32.4434,19 239,stand,,,
241 -1414.43 -1809.61 36.0946,238 26 237,stand,,,
242 -1671.5 -2354.79 32.2795,236 237 19 69 18 68 24,stand,,,
243 -2360.98 -546.592 -2.31344,226 225 72 196 229 73,stand,,,
244 -2570.89 337.986 26.2356,224 73 243 249 277,stand,,,
245 -3011.82 553.183 32.6441,242 75 249 74 278,stand,,,
246 -2958.8 978.754 41.7884,75 245 247 249,stand,,,
247 -3087.53 1078.31 41.3272,78 244 246 247,stand,,,
248 -2986.11 1383.81 23.4192,245 247 82 248 84 80 79,stand,,,
249 -2812.56 1225.18 20.581,246 248 244 245 249,stand,,,
250 -2747.86 1428.09 16.9429,247 85 246 84 251,stand,,,
251 -2503.59 1063.02 -2.73322,247 243 242 250 251 253 277 244,stand,,,
252 -2316.68 923.803 -23.4784,249 223 224 251 87 253 255 197,stand,,,
253 -2450.39 1236.24 -0.197223,250 85 249 248 223 253 87 255,stand,,,
254 -198.104 382.788 12.6056,222 200 221,stand,,,
255 -1547.73 1064.96 16.9802,221 87 250 251 249 255,stand,,,
256 -1280.95 1130.83 62.7136,222 221 255 256 223 261,stand,,,
257 -1638.61 1353.03 -7.40217,254 87 251 253 88 256 250,stand,,,
258 -896.059 1829.38 -50.6025,88 89 254 257 261 90 255,stand,,,
259 10.9914 1543.73 -103.636,256 91 260 261 259 262 90,stand,,,
260 1650.97 1279.59 -103.877,93 211 210 268 212 269 92 270,stand,,,
261 686.294 1629.89 -87.4188,208 209 91 257 262,stand,,,
262 -305.732 1172.22 -66.4243,257 261 220 222 262,stand,,,
263 -776.36 1259.5 66.959,260 256 222 254 257,stand,,,
264 366.424 1112.06 -100.575,218 219 259 257 220 260,stand,,,
265 1790.59 31.0692 71.8674,213 264 269 271,stand,,,
266 2471 29.9673 7.99284,263 111 271 272 266,stand,,,
267 3217.68 562.524 -97.5375,111 266 110 273 274 95 140,stand,,,
268 2722.43 729.341 -139.001,265 267 268 271 272 270 264,stand,,,
269 2667.45 1193.56 -131.246,266 268 273 94,stand,,,
270 2346.53 1486.49 -72.5859,267 258 270 94 93 266,stand,,,
271 1612.45 688.883 -104.332,212 263 213 258 270 271,stand,,,
272 2197.05 971.823 -22.1719,258 268 271 269 266,stand,,,
273 2215.1 489.356 -16.9384,266 270 269 263 264 272,stand,,,
274 2928.08 362.115 -72.7782,264 111 266 271 110 273,stand,,,
275 3020.86 976.441 -122.08,265 267 94 274 95 272,stand,,,
276 3590.01 565.454 -112.473,273 95 110 96 265,stand,,,
277 2121.24 -1418.62 70.3548,166 146 145 132 147 280,stand,,,
278 -3413.07 1856.03 38.6056,80 82,stand,,,
279 -2706.33 71.2617 32.125,242 278 73 249,stand,,,
280 -2892.61 212.037 39.3663,277 243 73 74,stand,,,
281 -1579.38 -1422.52 44.1634,229 232,stand,,,
282 2143.8 -1094.93 33.8226,132 145 147 281 275 282,stand,,,
283 2182.76 -963.027 16.4606,133 280,stand,,,
284 2728.6 -1259.54 36.8695,280 143 145,stand,,,
285 1887.73 -2586.19 30.3914,153 150 285 284,stand,,,
286 1974.2 -2711.57 37.8055,150 283,stand,,,
287 1719.13 -2586.07 37.6685,283 286,stand,,,
288 1658.03 -2586.93 42.6203,285 149 172,stand,,,

View File

@@ -0,0 +1,229 @@
228
-1666 -2080 44.625,63,stand,,,
-379.765 -3131.02 39.125,94 93,stand,,,
289.019 -2324.72 29.325,92 139,stand,,,
446.787 -1822.79 58.5041,137 143,stand,,,
-1186 -2012 31.2232,77 78,stand,,,
-779.022 -1531.76 26.0913,80 79,stand,,,
-1402 924 0.125,46,stand,,,
-1064.72 1733.02 0.125,41 43 45,stand,,,
1010.44 1682.89 13.125,203 205,stand,,,
958.019 547 12.125,113,stand,,,
-32 586 4.125,163 164 154 175,stand,,,
256 1714 -21.8742,170 171 219,stand,,,
-1454.02 649 5.82057,48,stand,,,
1314 384 2.75775,115,stand,,,
-983.765 115.022 4.13776,49 81,stand,,,
-1329 -878.019 0.625,84 83,stand,,,
1201 -906.019 -141.224,147 150,stand,,,
1314.79 -1954.79 8.56004,141,stand,,,
-1386.79 -3114.79 37.1256,75 73,stand,,,
-942 -1182 -0.504784,66 87 88,stand,,,
745 -265.981 0.125,133 160,stand,,,
-149.213 -2798.79 25.8662,91 140 210,stand,,,
-878.787 -2326.79 27.0074,77,stand,,,
1142 1116 10.2735,130,stand,,,
-764.793 1275.43 -10.0899,42 44 166 178,stand,,,
-191.765 1395.02 -7.87299,206,stand,,,
-957 2138.02 -21.875,40 41 169,stand,,,
945 2378.02 -23.873,32 131 195,stand,,,
626 772 1.19531,111,stand,,,
-576 2574 -16.6773,38 39,stand,,,
-1186.02 1113 3.95683,46 200,stand,,,
542.525 2547.3 -32.0531,32 33,stand,,,
701.641 2331.47 -21.4262,31 27 34,stand,,,
366.705 2493.89 -19.8889,31 34 35,stand,,,
501.665 2133.8 -29.8104,33 32 131 180 195,stand,,,
91.835 2511.38 -17.606,33 36,stand,,,
-70.7481 2226.89 -21.873,35 37 181,stand,,,
-241.776 2330.35 -12.1155,36 38,stand,,,
-416.278 2438.41 -13.0004,37 29,stand,,,
-662.5 2441.83 -28.453,29 40,stand,,,
-674.806 2149.9 -28.2244,39 26 169 182,stand,,,
-1000.84 1948.32 -28.0271,26 7 169 227,stand,,,
-694.112 1473.49 -12.4728,43 24 168,stand,,,
-876.951 1576.99 0.125,42 7 45,stand,,,
-989.628 1245.25 -1.91526,24 45 199,stand,,,
-1029.73 1465.67 0.125,44 7 43,stand,,,
-1229.74 891.019 0.125001,47 6 30 200,stand,,,
-1065.39 755.647 0.125001,46 48 179,stand,,,
-1122.65 413.726 -9.26308,47 49 12 174,stand,,,
-1203.61 130.962 0.625,48 50 14 81,stand,,,
-1351.24 -6.98925 1.40489,49 51,stand,,,
-1355.13 -167.859 81.8396,50 52,stand,,,
-1362.16 -398.588 160.125,51 53 198,stand,,,
-1365.98 -843.949 160.125,52 54,stand,,,
-977.438 -902.206 170.705,53 55 198,stand,,,
-959.922 -1175.37 168.125,54 56,stand,,,
-949.563 -1469.79 187.125,55 57,stand,,,
-1154.85 -1678.88 187.625,56 58,stand,,,
-1420.41 -1938.85 187.625,57 59,stand,,,
-1385.08 -2159.8 187.625,58 60,stand,,,
-1460.99 -2233.95 187.625,59 61 68,stand,,,
-1669.11 -2428.85 187.625,60 62,stand,,,
-1761.17 -2308.87 158.625,61 63,stand,,,
-1594.65 -2162.63 44.625,62 64 0 67,stand,,,
-1408.74 -1987.3 44.625,63 65 67,stand,,,
-1089.56 -1743.08 44.625,64 66 78,stand,,,
-971.683 -1462.9 44.625,65 19,stand,,,
-1423.16 -2272.11 44.625,64 63 76,stand,,,
-1654.53 -2059.11 187.625,60 69,stand,,,
-1922.39 -2309.91 186.125,68 70,stand,,,
-1927.26 -2422 186.125,69 71,stand,,,
-1749.82 -2607.49 33.8661,70 72 73,stand,,,
-1569.11 -2642.76 34.468,71 73 76,stand,,,
-1408.01 -2908.14 32.3897,74 18 72 71,stand,,,
-1107.48 -2880.42 27.5417,73 75 104 105,stand,,,
-1126.63 -3124.06 31.8554,74 18,stand,,,
-1313.67 -2396.14 33.3409,72 77 104 67,stand,,,
-1071.62 -2161.53 39.1084,76 78 22 4,stand,,,
-1005.12 -1888.6 28.7069,77 79 4 65,stand,,,
-749.672 -1700.03 24.6836,78 80 5,stand,,,
-416.418 -1631.07 10.7661,79 5 89,stand,,,
-1164.44 -264.287 0.624998,49 14 82 85,stand,,,
-1297.89 -444.769 0.624997,81 83,stand,,,
-1319.76 -709.799 0.624997,82 84 15,stand,,,
-1021.63 -786.281 0.625,83 15 85 86,stand,,,
-1051.42 -483.347 0.624998,81 84,stand,,,
-829.918 -801.854 0.125,84 87 159 189,stand,,,
-801.62 -1129.74 0.0982471,86 19 88,stand,,,
-618.317 -1342.24 8.125,87 89 193 19,stand,,,
-296.199 -1500.64 6.125,88 80 90 188,stand,,,
-214.071 -1820.31 12.6616,89 103 107 138 188,stand,,,
-327.318 -2739.37 29.1717,92 21 93 102,stand,,,
21.5047 -2631.49 29.325,91 2 140,stand,,,
-387.977 -2923.15 39.125,91 94 1,stand,,,
-579.93 -3112.22 39.125,93 95 100 1,stand,,,
-625.759 -3296.1 39.125,94 96 100,stand,,,
-378.973 -3376.01 39.125,95 97,stand,,,
-121.32 -3138.87 167.125,96 98,stand,,,
-317.006 -2971.1 175.125,97 99 211,stand,,,
-641.382 -3018.49 175.125,98,stand,,,
-783.786 -3116.09 39.125,95 94 105,stand,,,
-642.316 -2803.56 38.125,102 105,stand,,,
-408.897 -2537.27 28.0603,101 103 91,stand,,,
-278.028 -2201.18 19.2137,102 90 106 138,stand,,,
-1033.56 -2646.86 27.7975,74 76 105 106,stand,,,
-860.457 -3023.43 38.125,101 100 74 104,stand,,,
-715.486 -2341.91 24.125,104 107 103,stand,,,
-470.094 -2098.21 22.3167,106 90,stand,,,
382.827 1579.84 -15.279,109 131 171 201 202,stand,,,
377.533 1194.72 -7.05535,108 110 183 209,stand,,,
396.337 988.38 -1.45413,111 109 164,stand,,,
464.405 861.77 -9.37591,110 112 28 183,stand,,,
517.772 638.659 1.125,111 113 152 164,stand,,,
952.575 633.566 12.125,112 114 129 9,stand,,,
1226.94 538.248 12.125,113 115,stand,,,
1129.19 286.594 -1.26156,114 13 116 153,stand,,,
1131.64 133.289 1.33112,115 117 149,stand,,,
970.924 -6.06758 10.0606,116 118 132,stand,,,
787.683 -25.3076 97.9695,117 119 122,stand,,,
780.662 -147.597 128.125,118 120,stand,,,
900.401 -158.841 154.991,119 121,stand,,,
904.347 -443.755 163.571,120,stand,,,
773.597 199.366 166.125,118 123,stand,,,
761.692 621.949 152.125,122 124,stand,,,
806.905 861.134 152.125,123 125,stand,,,
1034.6 878.963 152.125,124 126,stand,,,
1234.1 644.078 152.125,125 127,stand,,,
1241.13 743.546 150.844,126 128,stand,,,
1246.34 921.331 15.4925,127 129,stand,,,
917.592 887.783 12.125,128 130 113,stand,,,
936.651 1110.26 3.7301,129 23 183 205,stand,,,
632.233 1814.98 -24.7998,34 27 108 180 194 201,stand,,,
962.305 -514.629 0.624999,117 133 196,stand,,,
749.295 -502.144 6.54451,132 20 134 160,stand,,,
636.107 -802.598 7.125,133 135 186 160 185,stand,,,
556.554 -1231.63 6.125,134 136 145 187,stand,,,
279.202 -1433.76 3.23943,135 137 145,stand,,,
195.074 -1708.09 54.125,136 3 138 143,stand,,,
110.177 -1951.76 13.8081,137 139 90 103,stand,,,
90.2228 -2222.52 36.3734,138 140 2,stand,,,
-40.4938 -2533.61 29.325,139 92 21,stand,,,
1047.55 -1941.2 7.83339,17 142 144,stand,,,
823.199 -1921.77 56.125,141 143,stand,,,
571.305 -1755.37 56.125,142 137 3,stand,,,
967.455 -1658.45 8.56934,141 145 146,stand,,,
602.658 -1475.11 5.69176,144 135 136,stand,,,
1087.01 -1424.71 -15.3693,144 151,stand,,,
1192.9 -677.93 -118.982,148 16 197,stand,,,
1160.09 -303.469 -54.3725,147 149,stand,,,
1219.08 -5.13514 11.311,148 116,stand,,,
1112.67 -961.963 -154.786,16 151 197,stand,,,
1103.32 -1157.46 -117.912,150 146,stand,,,
608.547 370.313 2.48577,112 153 154,stand,,,
863.691 357.45 -1.7074,152 115,stand,,,
317.203 288.405 2.88252,152 155 176 10,stand,,,
282.998 -239.827 5.28096,154 156 160 185,stand,,,
16.6109 -277.824 0.125,155 157 177 191 185,stand,,,
-276.16 -291.873 5.79267,156 158 192,stand,,,
-537.656 -343.487 3.5392,157 159,stand,,,
-809.356 -583.935 -2.36909,158 86 190,stand,,,
494.548 -344.518 4.12649,20 155 133 134,stand,,,
-318.928 1180.51 -5.49607,162 166 206,stand,,,
-159.821 885.315 -6.31138,161 163 173 212,stand,,,
-194.483 734.017 1.1073,162 10 165 175,stand,,,
149.305 758.451 1.125,10 110 173 112,stand,,,
-431.002 969.021 -1.29689,163 166 178,stand,,,
-440.93 1180.8 -8.20964,165 161 24 167,stand,,,
-436.768 1595.84 -17.0478,166 168 207,stand,,,
-686.105 1754.08 -24.0836,167 42 169 182,stand,,,
-790.884 1903.96 -28.2162,40 168 41 26,stand,,,
-73.9027 1705.67 -15.2961,11 181 208,stand,,,
246.699 1592.35 -13.0519,11 108 172 219,stand,,,
245.299 1171.16 -4.83131,171 173 209,stand,,,
45.5214 891.49 -7.88983,172 164 162 212,stand,,,
-753.914 442.881 -10.3642,48 175,stand,,,
-471.799 386.808 1.88409,174 176 178 10 192 163,stand,,,
-122.618 287.942 2.00922,175 154 177,stand,,,
-42.3974 -10.8459 0.125001,176 156,stand,,,
-661.679 796.451 -3.33492,175 24 179 165,stand,,,
-920.086 837.799 0.125001,178 47 200,stand,,,
314.788 2043.33 -31.7612,34 181 131 202,stand,,,
97.5297 1982.8 -29.7689,180 182 36 170,stand,,,
-312.089 1828.25 -21.873,181 168 40,stand,,,
661.539 1133.73 -6.8603,109 130 111 184,stand,,,
610.989 1423.4 -10.8319,183 201,stand,,,
287.784 -579.106 0.124197,155 186 156 134,stand,,,
331.025 -731.944 11.1751,185 187 134,stand,,,
340.923 -1076.52 5.23817,186 188 135,stand,,,
-5.51735 -1341.7 1.86696,187 193 89 90,stand,,,
-434.178 -869.666 5.55391,190 86 193,stand,,,
-338.688 -634.844 8.10186,189 191 159,stand,,,
-159.352 -480.992 0.230514,190 156,stand,,,
-354.888 134.119 2.4362,157 175,stand,,,
-346.188 -1184.8 1.21325,188 189 88,stand,,,
1074.38 1926.24 -29.3968,131 195,stand,,,
941.045 2058.56 -23.7867,194 27 34,stand,,,
952.93 -626.733 -15.9265,132 197,stand,,,
1003.1 -804.959 -132.684,196 147 150,stand,,,
-1015.24 -465.287 160.125,54 52,stand,,,
-1093.16 1200.21 9.19876,44 200,stand,,,
-1098.33 1115.93 12.3994,199 30 179 46,stand,,,
641.465 1644.99 -11.875,184 108 131 203,stand,,,
418.536 1788.6 -29.6953,180 108,stand,,,
728.701 1642.24 13.44,201 8 204,stand,,,
797.071 1372.28 13.125,203 205,stand,,,
966.275 1327.95 15.125,204 8 130,stand,,,
-256.851 1393.58 -8.06519,25 161 207,stand,,,
-327.706 1586.48 -13.4106,206 167 208 218,stand,,,
-258.982 1670.09 -13.0178,170 207 218,stand,,,
306.709 1170.56 12.125,172 109,stand,,,
-192.246 -2833.96 27.096,211 21,climb,-5.76233 -141.884 1.17554,,
-200.344 -2843.06 181.125,98 210,climb,-3.87817 -139.506 1.4447,,
-40.0369 960.097 -7.875,162 173 213,stand,,,
-33.4209 1125.53 40.125,212 214 215,stand,,,
-106.247 1207.35 40.125,213 217,stand,,,
46.8362 1196.44 40.125,213 216,stand,,,
53.2505 1310.6 40.125,215 217 219,stand,,,
-117.401 1313.56 40.125,216 214 218,stand,,,
-128.692 1498.92 40.125,217 207 208,stand,,,
66.2635 1497.02 40.125,216 171 11,stand,,,
-929.945 931.217 176.125,221,stand,,,
-919.521 1175.83 187.043,220 222,stand,,,
-921.038 1368.91 188.584,221 223,stand,,,
-1124.39 1486 136.386,222 224,stand,,,
-1173.43 1607.85 136.125,223 225,stand,,,
-1178.67 1724.53 72.125,224 226,stand,,,
-1229.29 1809.32 72.125,225 227,stand,,,
-1112.68 1906.87 8.51604,226 41,stand,,,
1 228
2 -1666 -2080 44.625,63,stand,,,
3 -379.765 -3131.02 39.125,94 93,stand,,,
4 289.019 -2324.72 29.325,92 139,stand,,,
5 446.787 -1822.79 58.5041,137 143,stand,,,
6 -1186 -2012 31.2232,77 78,stand,,,
7 -779.022 -1531.76 26.0913,80 79,stand,,,
8 -1402 924 0.125,46,stand,,,
9 -1064.72 1733.02 0.125,41 43 45,stand,,,
10 1010.44 1682.89 13.125,203 205,stand,,,
11 958.019 547 12.125,113,stand,,,
12 -32 586 4.125,163 164 154 175,stand,,,
13 256 1714 -21.8742,170 171 219,stand,,,
14 -1454.02 649 5.82057,48,stand,,,
15 1314 384 2.75775,115,stand,,,
16 -983.765 115.022 4.13776,49 81,stand,,,
17 -1329 -878.019 0.625,84 83,stand,,,
18 1201 -906.019 -141.224,147 150,stand,,,
19 1314.79 -1954.79 8.56004,141,stand,,,
20 -1386.79 -3114.79 37.1256,75 73,stand,,,
21 -942 -1182 -0.504784,66 87 88,stand,,,
22 745 -265.981 0.125,133 160,stand,,,
23 -149.213 -2798.79 25.8662,91 140 210,stand,,,
24 -878.787 -2326.79 27.0074,77,stand,,,
25 1142 1116 10.2735,130,stand,,,
26 -764.793 1275.43 -10.0899,42 44 166 178,stand,,,
27 -191.765 1395.02 -7.87299,206,stand,,,
28 -957 2138.02 -21.875,40 41 169,stand,,,
29 945 2378.02 -23.873,32 131 195,stand,,,
30 626 772 1.19531,111,stand,,,
31 -576 2574 -16.6773,38 39,stand,,,
32 -1186.02 1113 3.95683,46 200,stand,,,
33 542.525 2547.3 -32.0531,32 33,stand,,,
34 701.641 2331.47 -21.4262,31 27 34,stand,,,
35 366.705 2493.89 -19.8889,31 34 35,stand,,,
36 501.665 2133.8 -29.8104,33 32 131 180 195,stand,,,
37 91.835 2511.38 -17.606,33 36,stand,,,
38 -70.7481 2226.89 -21.873,35 37 181,stand,,,
39 -241.776 2330.35 -12.1155,36 38,stand,,,
40 -416.278 2438.41 -13.0004,37 29,stand,,,
41 -662.5 2441.83 -28.453,29 40,stand,,,
42 -674.806 2149.9 -28.2244,39 26 169 182,stand,,,
43 -1000.84 1948.32 -28.0271,26 7 169 227,stand,,,
44 -694.112 1473.49 -12.4728,43 24 168,stand,,,
45 -876.951 1576.99 0.125,42 7 45,stand,,,
46 -989.628 1245.25 -1.91526,24 45 199,stand,,,
47 -1029.73 1465.67 0.125,44 7 43,stand,,,
48 -1229.74 891.019 0.125001,47 6 30 200,stand,,,
49 -1065.39 755.647 0.125001,46 48 179,stand,,,
50 -1122.65 413.726 -9.26308,47 49 12 174,stand,,,
51 -1203.61 130.962 0.625,48 50 14 81,stand,,,
52 -1351.24 -6.98925 1.40489,49 51,stand,,,
53 -1355.13 -167.859 81.8396,50 52,stand,,,
54 -1362.16 -398.588 160.125,51 53 198,stand,,,
55 -1365.98 -843.949 160.125,52 54,stand,,,
56 -977.438 -902.206 170.705,53 55 198,stand,,,
57 -959.922 -1175.37 168.125,54 56,stand,,,
58 -949.563 -1469.79 187.125,55 57,stand,,,
59 -1154.85 -1678.88 187.625,56 58,stand,,,
60 -1420.41 -1938.85 187.625,57 59,stand,,,
61 -1385.08 -2159.8 187.625,58 60,stand,,,
62 -1460.99 -2233.95 187.625,59 61 68,stand,,,
63 -1669.11 -2428.85 187.625,60 62,stand,,,
64 -1761.17 -2308.87 158.625,61 63,stand,,,
65 -1594.65 -2162.63 44.625,62 64 0 67,stand,,,
66 -1408.74 -1987.3 44.625,63 65 67,stand,,,
67 -1089.56 -1743.08 44.625,64 66 78,stand,,,
68 -971.683 -1462.9 44.625,65 19,stand,,,
69 -1423.16 -2272.11 44.625,64 63 76,stand,,,
70 -1654.53 -2059.11 187.625,60 69,stand,,,
71 -1922.39 -2309.91 186.125,68 70,stand,,,
72 -1927.26 -2422 186.125,69 71,stand,,,
73 -1749.82 -2607.49 33.8661,70 72 73,stand,,,
74 -1569.11 -2642.76 34.468,71 73 76,stand,,,
75 -1408.01 -2908.14 32.3897,74 18 72 71,stand,,,
76 -1107.48 -2880.42 27.5417,73 75 104 105,stand,,,
77 -1126.63 -3124.06 31.8554,74 18,stand,,,
78 -1313.67 -2396.14 33.3409,72 77 104 67,stand,,,
79 -1071.62 -2161.53 39.1084,76 78 22 4,stand,,,
80 -1005.12 -1888.6 28.7069,77 79 4 65,stand,,,
81 -749.672 -1700.03 24.6836,78 80 5,stand,,,
82 -416.418 -1631.07 10.7661,79 5 89,stand,,,
83 -1164.44 -264.287 0.624998,49 14 82 85,stand,,,
84 -1297.89 -444.769 0.624997,81 83,stand,,,
85 -1319.76 -709.799 0.624997,82 84 15,stand,,,
86 -1021.63 -786.281 0.625,83 15 85 86,stand,,,
87 -1051.42 -483.347 0.624998,81 84,stand,,,
88 -829.918 -801.854 0.125,84 87 159 189,stand,,,
89 -801.62 -1129.74 0.0982471,86 19 88,stand,,,
90 -618.317 -1342.24 8.125,87 89 193 19,stand,,,
91 -296.199 -1500.64 6.125,88 80 90 188,stand,,,
92 -214.071 -1820.31 12.6616,89 103 107 138 188,stand,,,
93 -327.318 -2739.37 29.1717,92 21 93 102,stand,,,
94 21.5047 -2631.49 29.325,91 2 140,stand,,,
95 -387.977 -2923.15 39.125,91 94 1,stand,,,
96 -579.93 -3112.22 39.125,93 95 100 1,stand,,,
97 -625.759 -3296.1 39.125,94 96 100,stand,,,
98 -378.973 -3376.01 39.125,95 97,stand,,,
99 -121.32 -3138.87 167.125,96 98,stand,,,
100 -317.006 -2971.1 175.125,97 99 211,stand,,,
101 -641.382 -3018.49 175.125,98,stand,,,
102 -783.786 -3116.09 39.125,95 94 105,stand,,,
103 -642.316 -2803.56 38.125,102 105,stand,,,
104 -408.897 -2537.27 28.0603,101 103 91,stand,,,
105 -278.028 -2201.18 19.2137,102 90 106 138,stand,,,
106 -1033.56 -2646.86 27.7975,74 76 105 106,stand,,,
107 -860.457 -3023.43 38.125,101 100 74 104,stand,,,
108 -715.486 -2341.91 24.125,104 107 103,stand,,,
109 -470.094 -2098.21 22.3167,106 90,stand,,,
110 382.827 1579.84 -15.279,109 131 171 201 202,stand,,,
111 377.533 1194.72 -7.05535,108 110 183 209,stand,,,
112 396.337 988.38 -1.45413,111 109 164,stand,,,
113 464.405 861.77 -9.37591,110 112 28 183,stand,,,
114 517.772 638.659 1.125,111 113 152 164,stand,,,
115 952.575 633.566 12.125,112 114 129 9,stand,,,
116 1226.94 538.248 12.125,113 115,stand,,,
117 1129.19 286.594 -1.26156,114 13 116 153,stand,,,
118 1131.64 133.289 1.33112,115 117 149,stand,,,
119 970.924 -6.06758 10.0606,116 118 132,stand,,,
120 787.683 -25.3076 97.9695,117 119 122,stand,,,
121 780.662 -147.597 128.125,118 120,stand,,,
122 900.401 -158.841 154.991,119 121,stand,,,
123 904.347 -443.755 163.571,120,stand,,,
124 773.597 199.366 166.125,118 123,stand,,,
125 761.692 621.949 152.125,122 124,stand,,,
126 806.905 861.134 152.125,123 125,stand,,,
127 1034.6 878.963 152.125,124 126,stand,,,
128 1234.1 644.078 152.125,125 127,stand,,,
129 1241.13 743.546 150.844,126 128,stand,,,
130 1246.34 921.331 15.4925,127 129,stand,,,
131 917.592 887.783 12.125,128 130 113,stand,,,
132 936.651 1110.26 3.7301,129 23 183 205,stand,,,
133 632.233 1814.98 -24.7998,34 27 108 180 194 201,stand,,,
134 962.305 -514.629 0.624999,117 133 196,stand,,,
135 749.295 -502.144 6.54451,132 20 134 160,stand,,,
136 636.107 -802.598 7.125,133 135 186 160 185,stand,,,
137 556.554 -1231.63 6.125,134 136 145 187,stand,,,
138 279.202 -1433.76 3.23943,135 137 145,stand,,,
139 195.074 -1708.09 54.125,136 3 138 143,stand,,,
140 110.177 -1951.76 13.8081,137 139 90 103,stand,,,
141 90.2228 -2222.52 36.3734,138 140 2,stand,,,
142 -40.4938 -2533.61 29.325,139 92 21,stand,,,
143 1047.55 -1941.2 7.83339,17 142 144,stand,,,
144 823.199 -1921.77 56.125,141 143,stand,,,
145 571.305 -1755.37 56.125,142 137 3,stand,,,
146 967.455 -1658.45 8.56934,141 145 146,stand,,,
147 602.658 -1475.11 5.69176,144 135 136,stand,,,
148 1087.01 -1424.71 -15.3693,144 151,stand,,,
149 1192.9 -677.93 -118.982,148 16 197,stand,,,
150 1160.09 -303.469 -54.3725,147 149,stand,,,
151 1219.08 -5.13514 11.311,148 116,stand,,,
152 1112.67 -961.963 -154.786,16 151 197,stand,,,
153 1103.32 -1157.46 -117.912,150 146,stand,,,
154 608.547 370.313 2.48577,112 153 154,stand,,,
155 863.691 357.45 -1.7074,152 115,stand,,,
156 317.203 288.405 2.88252,152 155 176 10,stand,,,
157 282.998 -239.827 5.28096,154 156 160 185,stand,,,
158 16.6109 -277.824 0.125,155 157 177 191 185,stand,,,
159 -276.16 -291.873 5.79267,156 158 192,stand,,,
160 -537.656 -343.487 3.5392,157 159,stand,,,
161 -809.356 -583.935 -2.36909,158 86 190,stand,,,
162 494.548 -344.518 4.12649,20 155 133 134,stand,,,
163 -318.928 1180.51 -5.49607,162 166 206,stand,,,
164 -159.821 885.315 -6.31138,161 163 173 212,stand,,,
165 -194.483 734.017 1.1073,162 10 165 175,stand,,,
166 149.305 758.451 1.125,10 110 173 112,stand,,,
167 -431.002 969.021 -1.29689,163 166 178,stand,,,
168 -440.93 1180.8 -8.20964,165 161 24 167,stand,,,
169 -436.768 1595.84 -17.0478,166 168 207,stand,,,
170 -686.105 1754.08 -24.0836,167 42 169 182,stand,,,
171 -790.884 1903.96 -28.2162,40 168 41 26,stand,,,
172 -73.9027 1705.67 -15.2961,11 181 208,stand,,,
173 246.699 1592.35 -13.0519,11 108 172 219,stand,,,
174 245.299 1171.16 -4.83131,171 173 209,stand,,,
175 45.5214 891.49 -7.88983,172 164 162 212,stand,,,
176 -753.914 442.881 -10.3642,48 175,stand,,,
177 -471.799 386.808 1.88409,174 176 178 10 192 163,stand,,,
178 -122.618 287.942 2.00922,175 154 177,stand,,,
179 -42.3974 -10.8459 0.125001,176 156,stand,,,
180 -661.679 796.451 -3.33492,175 24 179 165,stand,,,
181 -920.086 837.799 0.125001,178 47 200,stand,,,
182 314.788 2043.33 -31.7612,34 181 131 202,stand,,,
183 97.5297 1982.8 -29.7689,180 182 36 170,stand,,,
184 -312.089 1828.25 -21.873,181 168 40,stand,,,
185 661.539 1133.73 -6.8603,109 130 111 184,stand,,,
186 610.989 1423.4 -10.8319,183 201,stand,,,
187 287.784 -579.106 0.124197,155 186 156 134,stand,,,
188 331.025 -731.944 11.1751,185 187 134,stand,,,
189 340.923 -1076.52 5.23817,186 188 135,stand,,,
190 -5.51735 -1341.7 1.86696,187 193 89 90,stand,,,
191 -434.178 -869.666 5.55391,190 86 193,stand,,,
192 -338.688 -634.844 8.10186,189 191 159,stand,,,
193 -159.352 -480.992 0.230514,190 156,stand,,,
194 -354.888 134.119 2.4362,157 175,stand,,,
195 -346.188 -1184.8 1.21325,188 189 88,stand,,,
196 1074.38 1926.24 -29.3968,131 195,stand,,,
197 941.045 2058.56 -23.7867,194 27 34,stand,,,
198 952.93 -626.733 -15.9265,132 197,stand,,,
199 1003.1 -804.959 -132.684,196 147 150,stand,,,
200 -1015.24 -465.287 160.125,54 52,stand,,,
201 -1093.16 1200.21 9.19876,44 200,stand,,,
202 -1098.33 1115.93 12.3994,199 30 179 46,stand,,,
203 641.465 1644.99 -11.875,184 108 131 203,stand,,,
204 418.536 1788.6 -29.6953,180 108,stand,,,
205 728.701 1642.24 13.44,201 8 204,stand,,,
206 797.071 1372.28 13.125,203 205,stand,,,
207 966.275 1327.95 15.125,204 8 130,stand,,,
208 -256.851 1393.58 -8.06519,25 161 207,stand,,,
209 -327.706 1586.48 -13.4106,206 167 208 218,stand,,,
210 -258.982 1670.09 -13.0178,170 207 218,stand,,,
211 306.709 1170.56 12.125,172 109,stand,,,
212 -192.246 -2833.96 27.096,211 21,climb,-5.76233 -141.884 1.17554,,
213 -200.344 -2843.06 181.125,98 210,climb,-3.87817 -139.506 1.4447,,
214 -40.0369 960.097 -7.875,162 173 213,stand,,,
215 -33.4209 1125.53 40.125,212 214 215,stand,,,
216 -106.247 1207.35 40.125,213 217,stand,,,
217 46.8362 1196.44 40.125,213 216,stand,,,
218 53.2505 1310.6 40.125,215 217 219,stand,,,
219 -117.401 1313.56 40.125,216 214 218,stand,,,
220 -128.692 1498.92 40.125,217 207 208,stand,,,
221 66.2635 1497.02 40.125,216 171 11,stand,,,
222 -929.945 931.217 176.125,221,stand,,,
223 -919.521 1175.83 187.043,220 222,stand,,,
224 -921.038 1368.91 188.584,221 223,stand,,,
225 -1124.39 1486 136.386,222 224,stand,,,
226 -1173.43 1607.85 136.125,223 225,stand,,,
227 -1178.67 1724.53 72.125,224 226,stand,,,
228 -1229.29 1809.32 72.125,225 227,stand,,,
229 -1112.68 1906.87 8.51604,226 41,stand,,,

View File

@@ -0,0 +1,384 @@
383
2494 -2152 -207,18,stand,,,
2288 -3250 -199,35,stand,,,
1712 -2746 -191,366 367,stand,,,
800 -3234 -166,348,stand,,,
-178 -2496 -148,321 324 325,stand,,,
1482 -1832 -220,200,stand,,,
1656 -586 -31,146,stand,,,
3122 376 -23,77 78,stand,,,
2970 -1104 -214,64 65,stand,,,
-218 -776 24,249,stand,,,
1098 -624 -17,140 141,stand,,,
1296 506 -23,111 115,stand,,,
1750 -1632 -222,25,stand,,,
462 -1368 -103,216 239,stand,,,
878 -1216 -216,186 210,stand,,,
1566 -1296 -247,172 173,stand,,,
-2 -1832 -79,257 258 259,stand,,,
2206 160 -91,102 103,stand,,,
2637 -2161 -212,0 19 40,stand,,,
2634 -2018 -215,18 41 60,stand,,,
2645 -1506 -218,21 59,stand,,,
2456 -1505 -225,20 22 198,stand,,,
2293 -1517 -221,21 23 61,stand,,,
2026 -1470 -227,22 24,stand,,,
1931 -1483 -231,23 25 175,stand,,,
1906 -1646 -219,24 12 26,stand,,,
1872 -1791 -220,25 27,stand,,,
1903 -1932 -215,26 28 191,stand,,,
1928 -2183 -206,27 29 382,stand,,,
1922 -2347 -193,28 30,stand,,,
1987 -2603 -187,29 31 368,stand,,,
2040 -2813 -193,30 32,stand,,,
2049 -3019 -198,31 33,stand,,,
2237 -3007 -202,32 34,stand,,,
2372 -2971 -202,33 35 36,stand,,,
2371 -3160 -197,34 1,stand,,,
2582 -2971 -197,34 37,stand,,,
2783 -2770 -209,36 38 39,stand,,,
2921 -2797 -202,37,stand,,,
2739 -2540 -215,37 40,stand,,,
2661 -2319 -217,39 18,stand,,,
2801 -2027 -211,19 42,stand,,,
2801 -1968 -191,41 43,stand,,,
2819 -1914 -191,42 44 54,stand,,,
2976 -1930 -191,43 45,stand,,,
2981 -1715 -55,44 46,stand,,,
2929 -1656 -55,45 47 49,stand,,,
2867 -1634 -55,46 48,stand,,,
2754 -1686 -55,47,stand,,,
2913 -1767 -55,46 50,stand,,,
2805 -1755 -55,49 51,stand,,,
2805 -1838 -55,50 52 53,stand,,,
2805 -1942 -55,51 53,stand,,,
2745 -1877 -55,52 51,stand,,,
2873 -1773 -191,43 57,stand,,,
2701 -1693 -213,56 59,stand,,,
2716 -1698 -155,58 55,stand,,,
2869 -1681 -191,54 58,stand,,,
2746 -1696 -191,57 56,stand,,,
2612 -1696 -220,55 60 20,stand,,,
2616 -1865 -219,59 19,stand,,,
2300 -1290 -216,22 62,stand,,,
2314 -1108 -215,61 63 91 168,stand,,,
2590 -1108 -214,62 64,stand,,,
2810 -1108 -215,8 63,stand,,,
2964 -1047 -207,8 66,stand,,,
2964 -972 -211,65 92,stand,,,
3257 -463 -16,68,stand,,,
3108 -491 -38,67 69 96,stand,,,
3108 -454 0,68 70,stand,,,
3108 -354 1,71 69,stand,,,
3094 -282 16,70 75,stand,,,
3071 -158 0,73 75,stand,,,
3115 -42 0,74 72,stand,,,
3115 106 0,73 76,stand,,,
3067 -203 16,72 71,stand,,,
3111 253 0,74 77,stand,,,
3111 315 -15,76 7,stand,,,
2984 373 -32,7 79,stand,,,
2838 373 -39,78 80 82,stand,,,
2871 229 -24,79 81 83,stand,,,
2865 99 -48,80 84,stand,,,
2725 369 -63,79 83,stand,,,
2725 225 -68,82 84 86 80,stand,,,
2741 93 -87,83 81 85,stand,,,
2559 109 -126,86 84 87 101,stand,,,
2581 219 -107,85 83,stand,,,
2537 -94 -151,85 88,stand,,,
2534 -352 -166,87 89,stand,,,
2478 -563 -210,88 90,stand,,,
2380 -757 -217,89 91 94,stand,,,
2380 -917 -212,90 62 97,stand,,,
3012 -846 -177,66 93 95,stand,,,
2748 -803 -200,92 94,stand,,,
2529 -773 -217,93 90,stand,,,
3073 -691 -129,92 96,stand,,,
3090 -605 -85,95 68,stand,,,
2209 -905 -209,91 98 167,stand,,,
2213 -653 -215,97 99,stand,,,
2216 -380 -214,98 100,stand,,,
2219 -151 -208,99,stand,,,
2393 139 -138,85 102,stand,,,
2287 150 -103,101 17,stand,,,
2202 356 -67,17 104,stand,,,
1963 346 -42,103 105,stand,,,
1846 341 -35,104 106 116,stand,,,
1825 181 -37,105 107 155,stand,,,
1569 181 -17,106 108,stand,,,
1357 193 -12,107 109,stand,,,
1192 193 -20,108 110 113,stand,,,
930 162 -20,109 121 135,stand,,,
1301 429 -23,11 112 120,stand,,,
1311 353 -18,111 113,stand,,,
1202 353 -18,112 109 114,stand,,,
1099 358 -16,113 115,stand,,,
1108 511 -26,11 114 127,stand,,,
1760 340 -15,105 117,stand,,,
1698 353 -15,116 118,stand,,,
1664 431 -15,117 119,stand,,,
1609 431 0,118 120,stand,,,
1427 431 0,119 111,stand,,,
735 237 -24,110 122,stand,,,
735 292 -15,121 123,stand,,,
685 390 -15,122 124 128,stand,,,
829 370 -15,123 125,stand,,,
829 561 -15,124 126,stand,,,
949 553 -15,125 127,stand,,,
949 510 -15,126 115,stand,,,
684 585 120,123 129,stand,,,
685 634 120,128 130,stand,,,
779 634 120,129 131,stand,,,
782 405 120,130 132,stand,,,
854 395 120,131 133 134,stand,,,
916 317 120,132 134,stand,,,
997 479 120,133 132,stand,,,
928 -99 -25,110 136,stand,,,
957 -277 -22,135 137 241,stand,,,
991 -511 -23,136 138 141,stand,,,
1088 -488 -7,137 139,stand,,,
1160 -487 -7,138 140 142,stand,,,
1165 -615 -16,139 10,stand,,,
982 -632 -24,10 137 184,stand,,,
1164 -431 -7,139 143,stand,,,
1290 -432 -7,142 144,stand,,,
1431 -411 -7,143 145,stand,,,
1587 -433 -7,144 146,stand,,,
1656 -433 -31,145 6 147,stand,,,
1708 -431 -31,146 148,stand,,,
1795 -424 -76,147 149 156,stand,,,
1813 -312 -79,148 150,stand,,,
1814 -177 -77,149 151,stand,,,
1909 -186 -78,150 152,stand,,,
1909 -86 -55,151 153,stand,,,
1913 22 -55,152 154,stand,,,
1826 29 -49,153 155,stand,,,
1827 96 -31,154 106,stand,,,
1847 -510 -79,148 157 163,stand,,,
1937 -502 -79,156 158,stand,,,
1920 -557 -79,157 159,stand,,,
1921 -734 56,158 160,stand,,,
1931 -796 56,159 161 162,stand,,,
2020 -801 56,160 162,stand,,,
2117 -706 56,161 160,stand,,,
1833 -605 -82,156 164,stand,,,
1830 -778 -123,163 165,stand,,,
1831 -919 -138,164 166,stand,,,
1992 -916 -155,165 167,stand,,,
2106 -905 -197,166 97,stand,,,
2140 -1095 -219,62 169,stand,,,
2004 -1085 -223,168 170,stand,,,
2013 -1277 -223,169 171,stand,,,
1873 -1277 -223,170 172,stand,,,
1784 -1277 -247,171 15,stand,,,
1569 -1379 -239,15 174,stand,,,
1567 -1465 -243,173 175 176,stand,,,
1753 -1468 -243,174 24,stand,,,
1406 -1448 -238,174 177 199,stand,,,
1331 -1258 -217,176 178 185,stand,,,
1330 -1181 -215,177 179,stand,,,
1326 -1062 -167,178 180,stand,,,
1288 -1033 -159,179 181,stand,,,
1096 -1032 -79,180 182,stand,,,
1005 -1032 -81,181 183 211,stand,,,
1003 -896 -67,182 184,stand,,,
1002 -749 -39,183 141,stand,,,
1150 -1246 -212,177 186,stand,,,
970 -1230 -206,185 14,stand,,,
1003 -1576 -176,188 209,stand,,,
868 -1585 -167,187 189,stand,,,
699 -1602 -125,188 190,stand,,,
462 -1653 -123,189 217 255 279,stand,,,
2093 -1913 -228,27 192,stand,,,
2092 -1847 -207,191 193,stand,,,
2092 -1788 -207,192 194,stand,,,
2219 -1787 -207,193 195,stand,,,
2363 -1802 -207,194 196,stand,,,
2432 -1615 -207,195 197,stand,,,
2432 -1599 -171,196 198,stand,,,
2433 -1565 -218,197 21,stand,,,
1404 -1677 -238,176 200,stand,,,
1432 -1842 -234,199 5 201 285,stand,,,
1339 -1840 -239,200 202,stand,,,
1332 -1737 -191,201 203,stand,,,
1337 -1667 -191,202 204,stand,,,
1215 -1666 -183,203 205,stand,,,
1201 -1452 -183,204 206,stand,,,
1090 -1452 -183,205 207,stand,,,
1048 -1452 -149,206 208,stand,,,
1040 -1453 -186,207 209,stand,,,
952 -1449 -180,208 210 187,stand,,,
919 -1336 -200,209 14,stand,,,
813 -1017 -79,182 212,stand,,,
718 -1007 -103,211 213,stand,,,
523 -1037 -103,212 214,stand,,,
509 -1224 -103,213 215,stand,,,
537 -1250 -103,214 218 239,stand,,,
460 -1459 -103,13 217,stand,,,
459 -1519 -122,216 190 237,stand,,,
744 -1261 -103,215 219,stand,,,
743 -1019 32,218 220 225,stand,,,
642 -1053 32,219 221,stand,,,
479 -1033 32,220 222,stand,,,
367 -1011 32,221 223,stand,,,
311 -995 16,222 224,stand,,,
108 -1005 16,223 245 250,stand,,,
747 -932 32,219 226,stand,,,
746 -809 80,225 227,stand,,,
854 -811 120,226 228,stand,,,
863 -924 160,227 229,stand,,,
800 -923 168,228 230,stand,,,
547 -880 168,229 231,stand,,,
512 -1082 168,230 232,stand,,,
548 -1206 168,231 233,stand,,,
595 -1269 168,232 234,stand,,,
589 -1289 196,233 235,stand,,,
592 -1314 156,234 236,stand,,,
626 -1391 113,235 238,stand,,,
629 -1469 -103,238 217 240,stand,,,
636 -1467 152,237 236,stand,,,
538 -1343 -103,215 13 240,stand,,,
568 -1450 -103,239 237,stand,,,
677 -262 -24,136 242,stand,,,
438 -253 -4,241 243,stand,,,
359 -282 8,242 248,stand,,,
114 -627 18,245 246,stand,,,
107 -814 16,244 224 249,stand,,,
111 -476 15,244 247,stand,,,
190 -343 18,246 248,stand,,,
290 -305 15,247 243,stand,,,
-58 -776 23,9 245,stand,,,
99 -1088 16,224 251,stand,,,
103 -1195 -30,250 252,stand,,,
86 -1309 -35,251 253,stand,,,
96 -1449 -63,252 254,stand,,,
98 -1620 -76,253 255 256,stand,,,
283 -1650 -101,254 190,stand,,,
33 -1700 -79,254 257,stand,,,
33 -1756 -79,256 16,stand,,,
-3 -1977 -79,16 275,stand,,,
72 -1882 -79,16 260,stand,,,
265 -1885 56,259 261,stand,,,
290 -1815 56,262 260,stand,,,
224 -1754 56,261 263,stand,,,
47 -1834 56,262 264,stand,,,
53 -1954 56,263 265,stand,,,
41 -2083 56,264 266 274,stand,,,
-34 -2055 56,265 267,stand,,,
-36 -1863 192,266 268,stand,,,
-36 -1809 192,267 269,stand,,,
38 -1830 192,270 268,stand,,,
222 -1759 192,269,stand,,,
-125 -2153 -136,272 327,stand,,,
-125 -2147 64,271 273,stand,,,
30 -2134 58,272 274,stand,,,
30 -2118 96,273 265,stand,,,
103 -1984 -79,258 276,stand,,,
178 -1986 -119,277 275,stand,,,
267 -2045 -123,276 278,stand,,,
366 -2127 -123,277 296 280 300,stand,,,
467 -1824 -123,190 280,stand,,,
429 -1990 -123,279 281 278,stand,,,
673 -1992 -128,280 282 297,stand,,,
857 -2010 -160,281 283,stand,,,
1066 -2027 -203,282 284,stand,,,
1247 -2017 -237,283 285 286,stand,,,
1392 -2013 -229,284 200,stand,,,
1243 -2086 -223,284 287,stand,,,
1257 -2215 -175,286 288,stand,,,
1231 -2267 -175,289 287,stand,,,
1109 -2275 -119,288 290,stand,,,
1024 -2179 -119,289 291,stand,,,
896 -2178 -119,290 292,stand,,,
785 -2180 -119,291 293,stand,,,
785 -2324 -119,292 294 295,stand,,,
793 -2463 -119,293,stand,,,
658 -2314 -123,293 296 297 298,stand,,,
473 -2233 -123,295 278,stand,,,
628 -2148 -122,281 295,stand,,,
618 -2442 -127,295 299,stand,,,
501 -2449 -162,298 315,stand,,,
182 -2192 -120,278 301 326,stand,,,
184 -2254 -123,300 302,stand,,,
186 -2291 -111,301 303,stand,,,
185 -2341 -111,302 304 306,stand,,,
184 -2397 -111,303 305,stand,,,
189 -2599 -111,304 314 318,stand,,,
73 -2368 -111,303 307,stand,,,
73 -2564 24,306 308,stand,,,
145 -2613 24,307 309 310,stand,,,
367 -2590 24,308,stand,,,
163 -2517 24,308 311,stand,,,
181 -2425 24,310 312 313,stand,,,
305 -2341 24,311 313,stand,,,
142 -2331 24,311 312,stand,,,
389 -2589 -111,305 317,stand,,,
522 -2590 -158,316 299 357,stand,,,
441 -2590 -150,315 317,stand,,,
416 -2590 -72,316 314,stand,,,
58 -2592 -111,305 319,stand,,,
31 -2591 -72,318 320,stand,,,
10 -2592 -137,319 322 323 325,stand,,,
-206 -2627 -144,4 322,stand,,,
-89 -2651 -149,321 320 325 328,stand,,,
-29 -2495 -145,320 324,stand,,,
-81 -2388 -148,323 4 325 327,stand,,,
-105 -2546 -149,320 4 324 322,stand,,,
19 -2217 -133,300 327,stand,,,
-79 -2249 -140,326 324 271,stand,,,
-120 -2798 -141,322 329 354,stand,,,
-120 -2826 -127,328 330,stand,,,
-124 -2972 -127,329 331 336,stand,,,
-129 -3012 -127,330 332 335,stand,,,
-113 -3203 -127,331 333 339,stand,,,
-242 -3202 -127,332 334,stand,,,
-242 -3120 -127,333 335,stand,,,
-246 -3017 -127,334 331,stand,,,
65 -2964 -127,330 337,stand,,,
165 -3085 -127,336 338,stand,,,
158 -3201 -127,337 339 340,stand,,,
14 -3201 -127,338 332,stand,,,
245 -3198 -127,338 341,stand,,,
388 -3193 -131,340 342,stand,,,
389 -3144 -131,341 343 356,stand,,,
511 -3135 -127,342 344,stand,,,
671 -3202 -127,343 345 351,stand,,,
719 -3212 -127,344 346,stand,,,
725 -3163 -127,345 347,stand,,,
719 -3064 -167,346 348,stand,,,
817 -3053 -165,347 3 349,stand,,,
801 -2905 -169,348 350,stand,,,
788 -2720 -163,349 357 358,stand,,,
661 -3157 -127,344 352,stand,,,
680 -2972 8,351 353,stand,,,
572 -2906 8,352,stand,,,
59 -2783 -145,328 355,stand,,,
348 -2830 -146,354 356 357,stand,,,
353 -2990 -133,355 342,stand,,,
535 -2749 -158,355 315 350,stand,,,
1057 -2674 -166,350 359,stand,,,
1177 -2672 -167,358 360 376 377,stand,,,
1177 -2841 -170,359 361,stand,,,
1157 -3025 -175,360 362 369,stand,,,
1322 -3026 -175,361 363,stand,,,
1538 -3042 -175,362 364,stand,,,
1612 -2932 -175,363 365,stand,,,
1591 -2773 -175,364 366,stand,,,
1659 -2779 -175,365 2,stand,,,
1699 -2614 -189,2 368 376,stand,,,
1859 -2614 -188,367 30,stand,,,
1124 -3075 -175,361 370,stand,,,
1122 -3268 -175,369 371,stand,,,
1215 -3268 -175,370 372,stand,,,
1220 -3080 -39,371 373,stand,,,
1226 -3043 -39,372 374 375,stand,,,
1130 -2944 -39,373 375,stand,,,
1315 -2953 -39,374 373,stand,,,
1425 -2614 -177,359 367,stand,,,
1184 -2545 -167,359 378,stand,,,
1176 -2382 -166,377 379,stand,,,
1363 -2385 -172,378 381,stand,,,
1546 -2177 -187,381 382,stand,,,
1574 -2354 -185,380 379,stand,,,
1739 -2181 -199,380 28,stand,,,
1 383
2 2494 -2152 -207,18,stand,,,
3 2288 -3250 -199,35,stand,,,
4 1712 -2746 -191,366 367,stand,,,
5 800 -3234 -166,348,stand,,,
6 -178 -2496 -148,321 324 325,stand,,,
7 1482 -1832 -220,200,stand,,,
8 1656 -586 -31,146,stand,,,
9 3122 376 -23,77 78,stand,,,
10 2970 -1104 -214,64 65,stand,,,
11 -218 -776 24,249,stand,,,
12 1098 -624 -17,140 141,stand,,,
13 1296 506 -23,111 115,stand,,,
14 1750 -1632 -222,25,stand,,,
15 462 -1368 -103,216 239,stand,,,
16 878 -1216 -216,186 210,stand,,,
17 1566 -1296 -247,172 173,stand,,,
18 -2 -1832 -79,257 258 259,stand,,,
19 2206 160 -91,102 103,stand,,,
20 2637 -2161 -212,0 19 40,stand,,,
21 2634 -2018 -215,18 41 60,stand,,,
22 2645 -1506 -218,21 59,stand,,,
23 2456 -1505 -225,20 22 198,stand,,,
24 2293 -1517 -221,21 23 61,stand,,,
25 2026 -1470 -227,22 24,stand,,,
26 1931 -1483 -231,23 25 175,stand,,,
27 1906 -1646 -219,24 12 26,stand,,,
28 1872 -1791 -220,25 27,stand,,,
29 1903 -1932 -215,26 28 191,stand,,,
30 1928 -2183 -206,27 29 382,stand,,,
31 1922 -2347 -193,28 30,stand,,,
32 1987 -2603 -187,29 31 368,stand,,,
33 2040 -2813 -193,30 32,stand,,,
34 2049 -3019 -198,31 33,stand,,,
35 2237 -3007 -202,32 34,stand,,,
36 2372 -2971 -202,33 35 36,stand,,,
37 2371 -3160 -197,34 1,stand,,,
38 2582 -2971 -197,34 37,stand,,,
39 2783 -2770 -209,36 38 39,stand,,,
40 2921 -2797 -202,37,stand,,,
41 2739 -2540 -215,37 40,stand,,,
42 2661 -2319 -217,39 18,stand,,,
43 2801 -2027 -211,19 42,stand,,,
44 2801 -1968 -191,41 43,stand,,,
45 2819 -1914 -191,42 44 54,stand,,,
46 2976 -1930 -191,43 45,stand,,,
47 2981 -1715 -55,44 46,stand,,,
48 2929 -1656 -55,45 47 49,stand,,,
49 2867 -1634 -55,46 48,stand,,,
50 2754 -1686 -55,47,stand,,,
51 2913 -1767 -55,46 50,stand,,,
52 2805 -1755 -55,49 51,stand,,,
53 2805 -1838 -55,50 52 53,stand,,,
54 2805 -1942 -55,51 53,stand,,,
55 2745 -1877 -55,52 51,stand,,,
56 2873 -1773 -191,43 57,stand,,,
57 2701 -1693 -213,56 59,stand,,,
58 2716 -1698 -155,58 55,stand,,,
59 2869 -1681 -191,54 58,stand,,,
60 2746 -1696 -191,57 56,stand,,,
61 2612 -1696 -220,55 60 20,stand,,,
62 2616 -1865 -219,59 19,stand,,,
63 2300 -1290 -216,22 62,stand,,,
64 2314 -1108 -215,61 63 91 168,stand,,,
65 2590 -1108 -214,62 64,stand,,,
66 2810 -1108 -215,8 63,stand,,,
67 2964 -1047 -207,8 66,stand,,,
68 2964 -972 -211,65 92,stand,,,
69 3257 -463 -16,68,stand,,,
70 3108 -491 -38,67 69 96,stand,,,
71 3108 -454 0,68 70,stand,,,
72 3108 -354 1,71 69,stand,,,
73 3094 -282 16,70 75,stand,,,
74 3071 -158 0,73 75,stand,,,
75 3115 -42 0,74 72,stand,,,
76 3115 106 0,73 76,stand,,,
77 3067 -203 16,72 71,stand,,,
78 3111 253 0,74 77,stand,,,
79 3111 315 -15,76 7,stand,,,
80 2984 373 -32,7 79,stand,,,
81 2838 373 -39,78 80 82,stand,,,
82 2871 229 -24,79 81 83,stand,,,
83 2865 99 -48,80 84,stand,,,
84 2725 369 -63,79 83,stand,,,
85 2725 225 -68,82 84 86 80,stand,,,
86 2741 93 -87,83 81 85,stand,,,
87 2559 109 -126,86 84 87 101,stand,,,
88 2581 219 -107,85 83,stand,,,
89 2537 -94 -151,85 88,stand,,,
90 2534 -352 -166,87 89,stand,,,
91 2478 -563 -210,88 90,stand,,,
92 2380 -757 -217,89 91 94,stand,,,
93 2380 -917 -212,90 62 97,stand,,,
94 3012 -846 -177,66 93 95,stand,,,
95 2748 -803 -200,92 94,stand,,,
96 2529 -773 -217,93 90,stand,,,
97 3073 -691 -129,92 96,stand,,,
98 3090 -605 -85,95 68,stand,,,
99 2209 -905 -209,91 98 167,stand,,,
100 2213 -653 -215,97 99,stand,,,
101 2216 -380 -214,98 100,stand,,,
102 2219 -151 -208,99,stand,,,
103 2393 139 -138,85 102,stand,,,
104 2287 150 -103,101 17,stand,,,
105 2202 356 -67,17 104,stand,,,
106 1963 346 -42,103 105,stand,,,
107 1846 341 -35,104 106 116,stand,,,
108 1825 181 -37,105 107 155,stand,,,
109 1569 181 -17,106 108,stand,,,
110 1357 193 -12,107 109,stand,,,
111 1192 193 -20,108 110 113,stand,,,
112 930 162 -20,109 121 135,stand,,,
113 1301 429 -23,11 112 120,stand,,,
114 1311 353 -18,111 113,stand,,,
115 1202 353 -18,112 109 114,stand,,,
116 1099 358 -16,113 115,stand,,,
117 1108 511 -26,11 114 127,stand,,,
118 1760 340 -15,105 117,stand,,,
119 1698 353 -15,116 118,stand,,,
120 1664 431 -15,117 119,stand,,,
121 1609 431 0,118 120,stand,,,
122 1427 431 0,119 111,stand,,,
123 735 237 -24,110 122,stand,,,
124 735 292 -15,121 123,stand,,,
125 685 390 -15,122 124 128,stand,,,
126 829 370 -15,123 125,stand,,,
127 829 561 -15,124 126,stand,,,
128 949 553 -15,125 127,stand,,,
129 949 510 -15,126 115,stand,,,
130 684 585 120,123 129,stand,,,
131 685 634 120,128 130,stand,,,
132 779 634 120,129 131,stand,,,
133 782 405 120,130 132,stand,,,
134 854 395 120,131 133 134,stand,,,
135 916 317 120,132 134,stand,,,
136 997 479 120,133 132,stand,,,
137 928 -99 -25,110 136,stand,,,
138 957 -277 -22,135 137 241,stand,,,
139 991 -511 -23,136 138 141,stand,,,
140 1088 -488 -7,137 139,stand,,,
141 1160 -487 -7,138 140 142,stand,,,
142 1165 -615 -16,139 10,stand,,,
143 982 -632 -24,10 137 184,stand,,,
144 1164 -431 -7,139 143,stand,,,
145 1290 -432 -7,142 144,stand,,,
146 1431 -411 -7,143 145,stand,,,
147 1587 -433 -7,144 146,stand,,,
148 1656 -433 -31,145 6 147,stand,,,
149 1708 -431 -31,146 148,stand,,,
150 1795 -424 -76,147 149 156,stand,,,
151 1813 -312 -79,148 150,stand,,,
152 1814 -177 -77,149 151,stand,,,
153 1909 -186 -78,150 152,stand,,,
154 1909 -86 -55,151 153,stand,,,
155 1913 22 -55,152 154,stand,,,
156 1826 29 -49,153 155,stand,,,
157 1827 96 -31,154 106,stand,,,
158 1847 -510 -79,148 157 163,stand,,,
159 1937 -502 -79,156 158,stand,,,
160 1920 -557 -79,157 159,stand,,,
161 1921 -734 56,158 160,stand,,,
162 1931 -796 56,159 161 162,stand,,,
163 2020 -801 56,160 162,stand,,,
164 2117 -706 56,161 160,stand,,,
165 1833 -605 -82,156 164,stand,,,
166 1830 -778 -123,163 165,stand,,,
167 1831 -919 -138,164 166,stand,,,
168 1992 -916 -155,165 167,stand,,,
169 2106 -905 -197,166 97,stand,,,
170 2140 -1095 -219,62 169,stand,,,
171 2004 -1085 -223,168 170,stand,,,
172 2013 -1277 -223,169 171,stand,,,
173 1873 -1277 -223,170 172,stand,,,
174 1784 -1277 -247,171 15,stand,,,
175 1569 -1379 -239,15 174,stand,,,
176 1567 -1465 -243,173 175 176,stand,,,
177 1753 -1468 -243,174 24,stand,,,
178 1406 -1448 -238,174 177 199,stand,,,
179 1331 -1258 -217,176 178 185,stand,,,
180 1330 -1181 -215,177 179,stand,,,
181 1326 -1062 -167,178 180,stand,,,
182 1288 -1033 -159,179 181,stand,,,
183 1096 -1032 -79,180 182,stand,,,
184 1005 -1032 -81,181 183 211,stand,,,
185 1003 -896 -67,182 184,stand,,,
186 1002 -749 -39,183 141,stand,,,
187 1150 -1246 -212,177 186,stand,,,
188 970 -1230 -206,185 14,stand,,,
189 1003 -1576 -176,188 209,stand,,,
190 868 -1585 -167,187 189,stand,,,
191 699 -1602 -125,188 190,stand,,,
192 462 -1653 -123,189 217 255 279,stand,,,
193 2093 -1913 -228,27 192,stand,,,
194 2092 -1847 -207,191 193,stand,,,
195 2092 -1788 -207,192 194,stand,,,
196 2219 -1787 -207,193 195,stand,,,
197 2363 -1802 -207,194 196,stand,,,
198 2432 -1615 -207,195 197,stand,,,
199 2432 -1599 -171,196 198,stand,,,
200 2433 -1565 -218,197 21,stand,,,
201 1404 -1677 -238,176 200,stand,,,
202 1432 -1842 -234,199 5 201 285,stand,,,
203 1339 -1840 -239,200 202,stand,,,
204 1332 -1737 -191,201 203,stand,,,
205 1337 -1667 -191,202 204,stand,,,
206 1215 -1666 -183,203 205,stand,,,
207 1201 -1452 -183,204 206,stand,,,
208 1090 -1452 -183,205 207,stand,,,
209 1048 -1452 -149,206 208,stand,,,
210 1040 -1453 -186,207 209,stand,,,
211 952 -1449 -180,208 210 187,stand,,,
212 919 -1336 -200,209 14,stand,,,
213 813 -1017 -79,182 212,stand,,,
214 718 -1007 -103,211 213,stand,,,
215 523 -1037 -103,212 214,stand,,,
216 509 -1224 -103,213 215,stand,,,
217 537 -1250 -103,214 218 239,stand,,,
218 460 -1459 -103,13 217,stand,,,
219 459 -1519 -122,216 190 237,stand,,,
220 744 -1261 -103,215 219,stand,,,
221 743 -1019 32,218 220 225,stand,,,
222 642 -1053 32,219 221,stand,,,
223 479 -1033 32,220 222,stand,,,
224 367 -1011 32,221 223,stand,,,
225 311 -995 16,222 224,stand,,,
226 108 -1005 16,223 245 250,stand,,,
227 747 -932 32,219 226,stand,,,
228 746 -809 80,225 227,stand,,,
229 854 -811 120,226 228,stand,,,
230 863 -924 160,227 229,stand,,,
231 800 -923 168,228 230,stand,,,
232 547 -880 168,229 231,stand,,,
233 512 -1082 168,230 232,stand,,,
234 548 -1206 168,231 233,stand,,,
235 595 -1269 168,232 234,stand,,,
236 589 -1289 196,233 235,stand,,,
237 592 -1314 156,234 236,stand,,,
238 626 -1391 113,235 238,stand,,,
239 629 -1469 -103,238 217 240,stand,,,
240 636 -1467 152,237 236,stand,,,
241 538 -1343 -103,215 13 240,stand,,,
242 568 -1450 -103,239 237,stand,,,
243 677 -262 -24,136 242,stand,,,
244 438 -253 -4,241 243,stand,,,
245 359 -282 8,242 248,stand,,,
246 114 -627 18,245 246,stand,,,
247 107 -814 16,244 224 249,stand,,,
248 111 -476 15,244 247,stand,,,
249 190 -343 18,246 248,stand,,,
250 290 -305 15,247 243,stand,,,
251 -58 -776 23,9 245,stand,,,
252 99 -1088 16,224 251,stand,,,
253 103 -1195 -30,250 252,stand,,,
254 86 -1309 -35,251 253,stand,,,
255 96 -1449 -63,252 254,stand,,,
256 98 -1620 -76,253 255 256,stand,,,
257 283 -1650 -101,254 190,stand,,,
258 33 -1700 -79,254 257,stand,,,
259 33 -1756 -79,256 16,stand,,,
260 -3 -1977 -79,16 275,stand,,,
261 72 -1882 -79,16 260,stand,,,
262 265 -1885 56,259 261,stand,,,
263 290 -1815 56,262 260,stand,,,
264 224 -1754 56,261 263,stand,,,
265 47 -1834 56,262 264,stand,,,
266 53 -1954 56,263 265,stand,,,
267 41 -2083 56,264 266 274,stand,,,
268 -34 -2055 56,265 267,stand,,,
269 -36 -1863 192,266 268,stand,,,
270 -36 -1809 192,267 269,stand,,,
271 38 -1830 192,270 268,stand,,,
272 222 -1759 192,269,stand,,,
273 -125 -2153 -136,272 327,stand,,,
274 -125 -2147 64,271 273,stand,,,
275 30 -2134 58,272 274,stand,,,
276 30 -2118 96,273 265,stand,,,
277 103 -1984 -79,258 276,stand,,,
278 178 -1986 -119,277 275,stand,,,
279 267 -2045 -123,276 278,stand,,,
280 366 -2127 -123,277 296 280 300,stand,,,
281 467 -1824 -123,190 280,stand,,,
282 429 -1990 -123,279 281 278,stand,,,
283 673 -1992 -128,280 282 297,stand,,,
284 857 -2010 -160,281 283,stand,,,
285 1066 -2027 -203,282 284,stand,,,
286 1247 -2017 -237,283 285 286,stand,,,
287 1392 -2013 -229,284 200,stand,,,
288 1243 -2086 -223,284 287,stand,,,
289 1257 -2215 -175,286 288,stand,,,
290 1231 -2267 -175,289 287,stand,,,
291 1109 -2275 -119,288 290,stand,,,
292 1024 -2179 -119,289 291,stand,,,
293 896 -2178 -119,290 292,stand,,,
294 785 -2180 -119,291 293,stand,,,
295 785 -2324 -119,292 294 295,stand,,,
296 793 -2463 -119,293,stand,,,
297 658 -2314 -123,293 296 297 298,stand,,,
298 473 -2233 -123,295 278,stand,,,
299 628 -2148 -122,281 295,stand,,,
300 618 -2442 -127,295 299,stand,,,
301 501 -2449 -162,298 315,stand,,,
302 182 -2192 -120,278 301 326,stand,,,
303 184 -2254 -123,300 302,stand,,,
304 186 -2291 -111,301 303,stand,,,
305 185 -2341 -111,302 304 306,stand,,,
306 184 -2397 -111,303 305,stand,,,
307 189 -2599 -111,304 314 318,stand,,,
308 73 -2368 -111,303 307,stand,,,
309 73 -2564 24,306 308,stand,,,
310 145 -2613 24,307 309 310,stand,,,
311 367 -2590 24,308,stand,,,
312 163 -2517 24,308 311,stand,,,
313 181 -2425 24,310 312 313,stand,,,
314 305 -2341 24,311 313,stand,,,
315 142 -2331 24,311 312,stand,,,
316 389 -2589 -111,305 317,stand,,,
317 522 -2590 -158,316 299 357,stand,,,
318 441 -2590 -150,315 317,stand,,,
319 416 -2590 -72,316 314,stand,,,
320 58 -2592 -111,305 319,stand,,,
321 31 -2591 -72,318 320,stand,,,
322 10 -2592 -137,319 322 323 325,stand,,,
323 -206 -2627 -144,4 322,stand,,,
324 -89 -2651 -149,321 320 325 328,stand,,,
325 -29 -2495 -145,320 324,stand,,,
326 -81 -2388 -148,323 4 325 327,stand,,,
327 -105 -2546 -149,320 4 324 322,stand,,,
328 19 -2217 -133,300 327,stand,,,
329 -79 -2249 -140,326 324 271,stand,,,
330 -120 -2798 -141,322 329 354,stand,,,
331 -120 -2826 -127,328 330,stand,,,
332 -124 -2972 -127,329 331 336,stand,,,
333 -129 -3012 -127,330 332 335,stand,,,
334 -113 -3203 -127,331 333 339,stand,,,
335 -242 -3202 -127,332 334,stand,,,
336 -242 -3120 -127,333 335,stand,,,
337 -246 -3017 -127,334 331,stand,,,
338 65 -2964 -127,330 337,stand,,,
339 165 -3085 -127,336 338,stand,,,
340 158 -3201 -127,337 339 340,stand,,,
341 14 -3201 -127,338 332,stand,,,
342 245 -3198 -127,338 341,stand,,,
343 388 -3193 -131,340 342,stand,,,
344 389 -3144 -131,341 343 356,stand,,,
345 511 -3135 -127,342 344,stand,,,
346 671 -3202 -127,343 345 351,stand,,,
347 719 -3212 -127,344 346,stand,,,
348 725 -3163 -127,345 347,stand,,,
349 719 -3064 -167,346 348,stand,,,
350 817 -3053 -165,347 3 349,stand,,,
351 801 -2905 -169,348 350,stand,,,
352 788 -2720 -163,349 357 358,stand,,,
353 661 -3157 -127,344 352,stand,,,
354 680 -2972 8,351 353,stand,,,
355 572 -2906 8,352,stand,,,
356 59 -2783 -145,328 355,stand,,,
357 348 -2830 -146,354 356 357,stand,,,
358 353 -2990 -133,355 342,stand,,,
359 535 -2749 -158,355 315 350,stand,,,
360 1057 -2674 -166,350 359,stand,,,
361 1177 -2672 -167,358 360 376 377,stand,,,
362 1177 -2841 -170,359 361,stand,,,
363 1157 -3025 -175,360 362 369,stand,,,
364 1322 -3026 -175,361 363,stand,,,
365 1538 -3042 -175,362 364,stand,,,
366 1612 -2932 -175,363 365,stand,,,
367 1591 -2773 -175,364 366,stand,,,
368 1659 -2779 -175,365 2,stand,,,
369 1699 -2614 -189,2 368 376,stand,,,
370 1859 -2614 -188,367 30,stand,,,
371 1124 -3075 -175,361 370,stand,,,
372 1122 -3268 -175,369 371,stand,,,
373 1215 -3268 -175,370 372,stand,,,
374 1220 -3080 -39,371 373,stand,,,
375 1226 -3043 -39,372 374 375,stand,,,
376 1130 -2944 -39,373 375,stand,,,
377 1315 -2953 -39,374 373,stand,,,
378 1425 -2614 -177,359 367,stand,,,
379 1184 -2545 -167,359 378,stand,,,
380 1176 -2382 -166,377 379,stand,,,
381 1363 -2385 -172,378 381,stand,,,
382 1546 -2177 -187,381 382,stand,,,
383 1574 -2354 -185,380 379,stand,,,
384 1739 -2181 -199,380 28,stand,,,

View File

@@ -0,0 +1,256 @@
255
1425.04 -518.452 -175.875,1,stand,,,
1340.15 -516.437 -175.875,0 2,stand,,,
1332.31 -719.173 -175.875,1 4,stand,,,
1319.67 -1097.96 -263.875,4 5 8,stand,,,
1328.33 -931.376 -263.875,2 3,stand,,,
1193.38 -1094.48 -263.875,3 6,stand,,,
1196.15 -1055.34 -262.875,5 7,stand,,,
1196.22 -774.196 -422.492,6 28,stand,,,
1343.05 -1398.66 -263.875,3 9 10,stand,,,
1680.08 -1403.63 -263.875,8,stand,,,
1307.29 -1525.23 -263.875,8 11 66,stand,,,
1405.64 -1526.62 -261.875,10 12,stand,,,
1690.7 -1526.52 -431.875,11 13,stand,,,
1694.97 -1418.93 -431.875,12 14 213,stand,,,
1333.31 -1405.92 -431.875,13 15 16 17,stand,,,
1335.91 -1292.42 -431.875,14 18 23,stand,,,
1359.73 -1331.23 -431.875,14,stand,,,
1425.84 -1380.13 -431.875,14,stand,,,
1159.24 -1285.06 -419.375,15 19 20 21,stand,,,
1071.49 -1122.63 -419.375,18 21 22 20,stand,,,
1052.18 -1289.68 -419.375,18 19,stand,,,
1160.12 -1133.95 -419.375,19 18,stand,,,
1068.54 -994.3 -420.191,19 28 29,stand,,,
1331.8 -534.584 -431.875,15 24 25 27,stand,,,
1331.23 -466.071 -418.542,23,stand,,,
1103.49 -536.832 -440.369,23 26 28,stand,,,
1106.24 -391.499 -440.757,25,stand,,,
1595.66 -536.012 -443.875,23 202 204 244 210,stand,,,
1100.13 -771.144 -424.777,25 7 22 29,stand,,,
918.113 -992.266 -419.259,28 22 30,stand,,,
867.582 -1078.38 -419.811,29 31,stand,,,
914.127 -1247.45 -418.22,30 32,stand,,,
888.073 -1533.04 -311.875,31 33,stand,,,
700.226 -1819.7 -223.9,32 34 36,stand,,,
663.415 -2025.26 -207.173,33 35 48 49,stand,,,
549.513 -2012.07 -202.369,34,stand,,,
343.794 -1847.34 -203.875,37 33,stand,,,
178.269 -2016.37 -203.875,36 38,stand,,,
160.615 -2897.43 -203.875,37 39 40,stand,,,
53.3972 -2853.87 -203.875,38,stand,,,
372.608 -2900.59 -205.102,38 41,stand,,,
450.647 -2835.64 -203.457,42 44 40,stand,,,
467.581 -2450.81 -204.994,41 43 45,stand,,,
648.913 -2462.21 -205.315,42 44 47,stand,,,
633.7 -2841.4 -204.79,43 41 57 56,stand,,,
476.915 -2257.26 -204.875,42 46 47 48,stand,,,
366.812 -2257.16 -204.875,45,stand,,,
653.395 -2353.97 -205.5,45 43 48 52,stand,,,
652.232 -2179.9 -203.906,45 47 34 49,stand,,,
855.553 -2099.07 -213.432,34 48 50,stand,,,
1082.44 -2143.03 -219.329,49 51 52 73,stand,,,
1042.78 -2055.64 -219.875,50,stand,,,
1088.32 -2387.18 -194.196,50 47 237,stand,,,
873.808 -2958.44 -204.875,54 56,stand,,,
1013.08 -2959.4 -200.239,53 55,stand,,,
1302.35 -2959.34 -183.893,54,stand,,,
836.22 -2876.32 -204.031,53 44,stand,,,
647.922 -3034.06 -168.801,44 58,stand,,,
699.672 -3081.11 -168.993,57 59,stand,,,
1934.71 -3085.58 -179.424,58 60 61,stand,,,
1949.82 -3156.8 -179.891,59,stand,,,
2078.85 -3055.31 -195.88,59 62 63,stand,,,
2302.64 -3115.69 -167.233,61 63 64,stand,,,
2280.33 -2943.19 -213.875,62 61 87 88,stand,,,
2500.54 -3142.64 -114.107,62 65 245,stand,,,
2719.43 -3121.67 -100.725,64 245,stand,,,
1300.94 -1659.86 -229.875,10 67 68 69,stand,,,
1170.58 -1662.45 -229.875,66,stand,,,
1456.1 -1690.78 -229.875,66,stand,,,
1431.28 -1864.56 -229.875,66 70 71,stand,,,
1288.35 -1853.72 -229.875,69,stand,,,
1432.22 -2076.58 -235.201,69 72 73 74,stand,,,
1497.99 -2207.46 -231.925,71 73 75,stand,,,
1316.68 -2140.56 -228.859,72 71 50,stand,,,
1710.93 -2063.93 -226.32,71,stand,,,
1742.24 -2371.76 -224.201,72 76 77 78 80,stand,,,
1925.5 -2188.56 -221.628,75,stand,,,
1991.63 -2267.16 -215.296,75,stand,,,
1604.55 -2681.68 -199,75,stand,,,
2045.04 -2514.7 -213.176,80,stand,,,
1964.54 -2596.54 -212.974,75 79 81,stand,,,
2122.8 -2652.16 -213.88,80 82 83 87,stand,,,
1802.91 -2915.31 -208.99,81,stand,,,
2172.29 -2485.23 -214.172,81 84 231,stand,,,
2356.26 -2475.14 -212.428,83 85 87,stand,,,
2658.8 -2469.97 -211.875,84 86 227,stand,,,
2646.72 -2821.66 -214.799,85 88 89,stand,,,
2300.83 -2736.19 -213.875,84 81 63 88,stand,,,
2439.96 -2823.8 -213.875,63 87 86,stand,,,
2873.66 -2825.03 -207.875,86 90 91,stand,,,
2876.03 -2642.72 -207.875,89,stand,,,
3040.32 -2826.12 -207.875,89 92,stand,,,
3046.03 -2650.61 -207.875,93 91 94,stand,,,
3053.75 -2534.9 -205.875,92,stand,,,
3310 -2662.36 -207.875,92 95 162 165,stand,,,
3303.94 -2348.58 -207.875,94 96 109,stand,,,
3286.62 -2248.28 -207.875,95 97 104,stand,,,
3138.66 -2247.41 -167.875,96 252,stand,,,
3132.63 -2475.22 -59.875,99 254,stand,,,
3125.03 -2866.07 -63.875,98 100,stand,,,
2959.98 -2860.86 -63.875,99 101,stand,,,
2798.4 -2861.39 -1.875,100 102 103 246,stand,,,
2496.9 -2661.45 12.8229,101 103,stand,,,
2662.13 -2577.83 12.1863,101 102,stand,,,
3285.18 -2158.35 -207.875,96 105,stand,,,
3272.98 -1910.08 -243.875,104 106 107,stand,,,
3186.34 -1943.67 -243.875,105,stand,,,
3281.35 -1698.61 -315.875,105 108,stand,,,
3284.31 -1589.52 -367.647,107 178,stand,,,
3537.2 -2344.61 -209.921,95 110,stand,,,
3722.57 -2346.97 -204.869,109 166 168 169,stand,,,
4563.41 -1735.48 -191.875,112 113 115,stand,,,
4551.28 -1920.13 -191.875,111 114,stand,,,
4174.2 -1757.13 -191.875,111 114,stand,,,
4173.04 -1921.71 -191.875,113 112,stand,,,
4761.42 -1739.47 -239.875,116 117 111,stand,,,
4758.03 -2135.91 -239.216,115 243,stand,,,
4762.73 -1552.59 -248.087,115 118 241,stand,,,
4551 -1552.25 -246.845,117 141 142 241,stand,,,
4935.95 -1343.01 -198.827,239 241,stand,,,
5014.29 -663.392 -198.077,128 240,stand,,,
4782.14 -1227.24 -249.875,241,stand,,,
4605.66 -1060.34 -249.046,123 124 241,stand,,,
4452.4 -1095.16 -246.721,122,stand,,,
4654.71 -653.754 -249.779,122 125 126,stand,,,
4766.4 -695.393 -249.186,124,stand,,,
4769.18 -427.682 -249.718,124 127 130 128,stand,,,
4601.01 -338.726 -243.751,126,stand,,,
4945.01 -464.115 -250.775,120 129 130 126,stand,,,
4984.1 -361.004 -250.795,128,stand,,,
4867.2 -279.732 -249.119,128 126 131,stand,,,
4872.87 -171.888 -247.873,130 132,stand,,,
4755.79 -164.105 -247.875,131 133,stand,,,
4537.42 -159.22 -375.019,132 134,stand,,,
4428.98 -159.179 -375.89,133 135,stand,,,
4260.12 -169.562 -424.896,136 137 134,stand,,,
4281.82 -500.847 -416.062,135 139,stand,,,
4107.95 -117.271 -424.817,135 138,stand,,,
3887.1 -214.879 -444.97,137 180,stand,,,
4315.27 -920.644 -380.715,136 140 150,stand,,,
4303.55 -1369.63 -312.216,139 141 143,stand,,,
4369.39 -1566.89 -275.875,140 118,stand,,,
4525.18 -1609.01 -247.374,118,stand,,,
4222.91 -1344.08 -316.875,140 144,stand,,,
4019.77 -1345.6 -399.089,143 145 146,stand,,,
4017.06 -1447.58 -397.697,144,stand,,,
3804.22 -1343.65 -403.403,144 147 148 177,stand,,,
3822.09 -1247.38 -404.672,146,stand,,,
3654.59 -1289.91 -406.587,146 149 177,stand,,,
3691.88 -1158.24 -459.737,148 156,stand,,,
4103.5 -936.638 -451.204,139 151 161,stand,,,
4104.09 -728.501 -492.671,150 152 153,stand,,,
4123.27 -394.696 -502.09,151,stand,,,
3846.14 -732.941 -523.331,151 154,stand,,,
3698.99 -693.311 -518.58,153 155 181 183,stand,,,
3700.54 -868.701 -463.976,154 156,stand,,,
3709.82 -1012.32 -462.135,155 149 159 161,stand,,,
3282.62 -1261.54 -466.274,158,stand,,,
3301.13 -1050.04 -463.775,157 159,stand,,,
3397.52 -1034.06 -458.192,158 160 156,stand,,,
3390.07 -912.764 -464.084,159,stand,,,
3897.81 -1099.95 -456.342,156 150,stand,,,
3311.87 -2808.28 -207.875,94 163,stand,,,
3587.29 -2807.27 -207.875,162 164,stand,,,
3587.64 -2528.95 -207.875,165 163 166,stand,,,
3471.13 -2617.96 -207.875,164 94,stand,,,
3736.57 -2522.74 -207.875,164 167 110,stand,,,
3786.75 -2849.2 -207.875,166,stand,,,
3724.82 -2180.17 -256.957,110 170,stand,,,
3930.33 -2360.05 -207.245,110,stand,,,
3725.98 -2105.13 -256.305,168 171 172,stand,,,
3592.34 -1930.36 -253.057,170 174,stand,,,
3916.7 -2123.69 -256.229,170 173 242,stand,,,
3945.17 -1999.7 -255.598,172,stand,,,
3604.96 -1741.37 -320.558,171 175 176 177,stand,,,
3732.3 -1778.03 -307.518,174,stand,,,
3433.75 -1814.27 -303.945,174,stand,,,
3583.48 -1510.68 -375.561,174 178 148 146,stand,,,
3368.08 -1519.14 -381.391,108 177 179,stand,,,
3409.41 -1186.85 -405.715,178,stand,,,
3776.17 -216.401 -514.407,138 232,stand,,,
3595.89 -463.761 -516.861,182 154 183 186 233 251,stand,,,
3917.23 -452.118 -512.39,181,stand,,,
3571.49 -695.294 -514.963,154 184 181,stand,,,
3552.44 -786.338 -515.046,183 185,stand,,,
3323.8 -789.324 -511.823,184,stand,,,
3160.6 -496.491 -510.057,181 191 251,stand,,,
2869.3 -252.582 -515.497,188 189 236 251,stand,,,
2840.87 -122.296 -517.249,187 197,stand,,,
2650.46 -257.843 -496.661,187 190 192 197,stand,,,
2674.56 -519.079 -491.706,189 191 214 206,stand,,,
2868.95 -511.355 -510.379,190 186 236,stand,,,
2544.63 -267.848 -481.875,189 193,stand,,,
2431.45 -273.828 -481.875,192 194 195 196,stand,,,
2251.06 -271.089 -481.875,193,stand,,,
2439.49 -188.137 -481.875,193,stand,,,
2435.3 -360.059 -481.875,193,stand,,,
2644.68 36.2868 -498.948,189 198 188,stand,,,
2499.27 30.3692 -495.993,197 199,stand,,,
2215.73 44.4862 -461.736,198 200,stand,,,
1984.15 -18.7626 -453.198,199 201,stand,,,
1977.51 -227.157 -444.286,200 202 244,stand,,,
1648.2 -288.982 -444.264,201 27,stand,,,
2092.51 -612.819 -447.157,204,stand,,,
1936.17 -792.102 -451.948,27 203 205 210 244,stand,,,
2153.87 -799.711 -451.875,204 206,stand,,,
2334.28 -799.68 -495.523,205 207 214 190 250,stand,,,
2329.68 -668.546 -493.486,206 208,stand,,,
2225.96 -664.03 -486.874,207 209,stand,,,
2230.23 -567.918 -490.15,208,stand,,,
1937.07 -1126.76 -442.744,204 211 212 213 27,stand,,,
2098.51 -1038.37 -445.586,210,stand,,,
2142.94 -1183.81 -441.466,210,stand,,,
1939.4 -1420.94 -444.248,210 13 225,stand,,,
2597.74 -727.682 -494.639,206 190 215 216 250,stand,,,
2728.85 -736.175 -496.058,214,stand,,,
2602.72 -954.277 -445.644,214 217,stand,,,
2627.06 -1442.89 -431.066,216 218 224,stand,,,
2827.15 -1512.9 -404.581,217 219,stand,,,
2825.19 -1706.66 -323.364,218 220,stand,,,
2733.71 -1770.66 -320.013,219 221 222,stand,,,
2668.8 -1652.11 -320.776,220,stand,,,
2858.05 -1929.7 -319.05,223 220,stand,,,
2861.15 -2114.11 -316.459,222,stand,,,
2462.82 -1537.01 -396.014,217 225 226,stand,,,
2250.57 -1633.11 -397.875,224 213 226,stand,,,
2389.97 -1857.55 -334.875,225 224 227 228,stand,,,
2609.39 -2014.81 -297.875,226 85,stand,,,
2333.63 -1945.34 -330.397,226 229,stand,,,
2205.69 -2064.84 -288.426,228 230 231,stand,,,
2002.01 -2017.46 -284.119,229,stand,,,
2193.87 -2338.21 -218.84,229 83,stand,,,
3597.83 -230.645 -511.875,180 233 234 235,stand,,,
3597.74 -341.349 -512.42,232 181,stand,,,
3562.2 -176.861 -511.875,232,stand,,,
3637.46 -189.19 -511.875,232,stand,,,
2988.85 -366.443 -518.077,191 187,stand,,,
1101.57 -2601.84 -156.375,52 238,stand,,,
1252.75 -2634.53 -149.875,237,stand,,,
5000.3 -1243.08 -201.192,240 119,stand,,,
5005.61 -978.634 -197.23,239 120,stand,,,
4744.73 -1334.09 -252.35,119 122 117 118 121,stand,,,
4109.86 -2134.83 -254.99,243 172,stand,,,
4394.22 -2134.6 -244.175,242 116,stand,,,
1957.94 -546.414 -443.875,27 201 204,stand,,,
2750.75 -2967.63 -101.16,246 64 65,climb,6.70715 89.5605 0,,
2750.75 -2947.12 40.1248,245 101,climb,-3.09265 88.9343 0,,
2394.17 -1100.4 -573.331,248,stand,,,
2251.73 -913.893 -557.515,247 249,stand,,,
2433.78 -908.946 -495.875,248 250,stand,,,
2432.01 -820.385 -495.253,249 206 214,stand,,,
3122.58 -318.434 -520.619,187 186 181,stand,,,
3135.14 -2303.22 -146.199,97 253,stand,,,
3135.09 -2364.81 -106.004,252 254,stand,,,
3134.94 -2429.81 -59.875,253 98,stand,,,
1 255
2 1425.04 -518.452 -175.875,1,stand,,,
3 1340.15 -516.437 -175.875,0 2,stand,,,
4 1332.31 -719.173 -175.875,1 4,stand,,,
5 1319.67 -1097.96 -263.875,4 5 8,stand,,,
6 1328.33 -931.376 -263.875,2 3,stand,,,
7 1193.38 -1094.48 -263.875,3 6,stand,,,
8 1196.15 -1055.34 -262.875,5 7,stand,,,
9 1196.22 -774.196 -422.492,6 28,stand,,,
10 1343.05 -1398.66 -263.875,3 9 10,stand,,,
11 1680.08 -1403.63 -263.875,8,stand,,,
12 1307.29 -1525.23 -263.875,8 11 66,stand,,,
13 1405.64 -1526.62 -261.875,10 12,stand,,,
14 1690.7 -1526.52 -431.875,11 13,stand,,,
15 1694.97 -1418.93 -431.875,12 14 213,stand,,,
16 1333.31 -1405.92 -431.875,13 15 16 17,stand,,,
17 1335.91 -1292.42 -431.875,14 18 23,stand,,,
18 1359.73 -1331.23 -431.875,14,stand,,,
19 1425.84 -1380.13 -431.875,14,stand,,,
20 1159.24 -1285.06 -419.375,15 19 20 21,stand,,,
21 1071.49 -1122.63 -419.375,18 21 22 20,stand,,,
22 1052.18 -1289.68 -419.375,18 19,stand,,,
23 1160.12 -1133.95 -419.375,19 18,stand,,,
24 1068.54 -994.3 -420.191,19 28 29,stand,,,
25 1331.8 -534.584 -431.875,15 24 25 27,stand,,,
26 1331.23 -466.071 -418.542,23,stand,,,
27 1103.49 -536.832 -440.369,23 26 28,stand,,,
28 1106.24 -391.499 -440.757,25,stand,,,
29 1595.66 -536.012 -443.875,23 202 204 244 210,stand,,,
30 1100.13 -771.144 -424.777,25 7 22 29,stand,,,
31 918.113 -992.266 -419.259,28 22 30,stand,,,
32 867.582 -1078.38 -419.811,29 31,stand,,,
33 914.127 -1247.45 -418.22,30 32,stand,,,
34 888.073 -1533.04 -311.875,31 33,stand,,,
35 700.226 -1819.7 -223.9,32 34 36,stand,,,
36 663.415 -2025.26 -207.173,33 35 48 49,stand,,,
37 549.513 -2012.07 -202.369,34,stand,,,
38 343.794 -1847.34 -203.875,37 33,stand,,,
39 178.269 -2016.37 -203.875,36 38,stand,,,
40 160.615 -2897.43 -203.875,37 39 40,stand,,,
41 53.3972 -2853.87 -203.875,38,stand,,,
42 372.608 -2900.59 -205.102,38 41,stand,,,
43 450.647 -2835.64 -203.457,42 44 40,stand,,,
44 467.581 -2450.81 -204.994,41 43 45,stand,,,
45 648.913 -2462.21 -205.315,42 44 47,stand,,,
46 633.7 -2841.4 -204.79,43 41 57 56,stand,,,
47 476.915 -2257.26 -204.875,42 46 47 48,stand,,,
48 366.812 -2257.16 -204.875,45,stand,,,
49 653.395 -2353.97 -205.5,45 43 48 52,stand,,,
50 652.232 -2179.9 -203.906,45 47 34 49,stand,,,
51 855.553 -2099.07 -213.432,34 48 50,stand,,,
52 1082.44 -2143.03 -219.329,49 51 52 73,stand,,,
53 1042.78 -2055.64 -219.875,50,stand,,,
54 1088.32 -2387.18 -194.196,50 47 237,stand,,,
55 873.808 -2958.44 -204.875,54 56,stand,,,
56 1013.08 -2959.4 -200.239,53 55,stand,,,
57 1302.35 -2959.34 -183.893,54,stand,,,
58 836.22 -2876.32 -204.031,53 44,stand,,,
59 647.922 -3034.06 -168.801,44 58,stand,,,
60 699.672 -3081.11 -168.993,57 59,stand,,,
61 1934.71 -3085.58 -179.424,58 60 61,stand,,,
62 1949.82 -3156.8 -179.891,59,stand,,,
63 2078.85 -3055.31 -195.88,59 62 63,stand,,,
64 2302.64 -3115.69 -167.233,61 63 64,stand,,,
65 2280.33 -2943.19 -213.875,62 61 87 88,stand,,,
66 2500.54 -3142.64 -114.107,62 65 245,stand,,,
67 2719.43 -3121.67 -100.725,64 245,stand,,,
68 1300.94 -1659.86 -229.875,10 67 68 69,stand,,,
69 1170.58 -1662.45 -229.875,66,stand,,,
70 1456.1 -1690.78 -229.875,66,stand,,,
71 1431.28 -1864.56 -229.875,66 70 71,stand,,,
72 1288.35 -1853.72 -229.875,69,stand,,,
73 1432.22 -2076.58 -235.201,69 72 73 74,stand,,,
74 1497.99 -2207.46 -231.925,71 73 75,stand,,,
75 1316.68 -2140.56 -228.859,72 71 50,stand,,,
76 1710.93 -2063.93 -226.32,71,stand,,,
77 1742.24 -2371.76 -224.201,72 76 77 78 80,stand,,,
78 1925.5 -2188.56 -221.628,75,stand,,,
79 1991.63 -2267.16 -215.296,75,stand,,,
80 1604.55 -2681.68 -199,75,stand,,,
81 2045.04 -2514.7 -213.176,80,stand,,,
82 1964.54 -2596.54 -212.974,75 79 81,stand,,,
83 2122.8 -2652.16 -213.88,80 82 83 87,stand,,,
84 1802.91 -2915.31 -208.99,81,stand,,,
85 2172.29 -2485.23 -214.172,81 84 231,stand,,,
86 2356.26 -2475.14 -212.428,83 85 87,stand,,,
87 2658.8 -2469.97 -211.875,84 86 227,stand,,,
88 2646.72 -2821.66 -214.799,85 88 89,stand,,,
89 2300.83 -2736.19 -213.875,84 81 63 88,stand,,,
90 2439.96 -2823.8 -213.875,63 87 86,stand,,,
91 2873.66 -2825.03 -207.875,86 90 91,stand,,,
92 2876.03 -2642.72 -207.875,89,stand,,,
93 3040.32 -2826.12 -207.875,89 92,stand,,,
94 3046.03 -2650.61 -207.875,93 91 94,stand,,,
95 3053.75 -2534.9 -205.875,92,stand,,,
96 3310 -2662.36 -207.875,92 95 162 165,stand,,,
97 3303.94 -2348.58 -207.875,94 96 109,stand,,,
98 3286.62 -2248.28 -207.875,95 97 104,stand,,,
99 3138.66 -2247.41 -167.875,96 252,stand,,,
100 3132.63 -2475.22 -59.875,99 254,stand,,,
101 3125.03 -2866.07 -63.875,98 100,stand,,,
102 2959.98 -2860.86 -63.875,99 101,stand,,,
103 2798.4 -2861.39 -1.875,100 102 103 246,stand,,,
104 2496.9 -2661.45 12.8229,101 103,stand,,,
105 2662.13 -2577.83 12.1863,101 102,stand,,,
106 3285.18 -2158.35 -207.875,96 105,stand,,,
107 3272.98 -1910.08 -243.875,104 106 107,stand,,,
108 3186.34 -1943.67 -243.875,105,stand,,,
109 3281.35 -1698.61 -315.875,105 108,stand,,,
110 3284.31 -1589.52 -367.647,107 178,stand,,,
111 3537.2 -2344.61 -209.921,95 110,stand,,,
112 3722.57 -2346.97 -204.869,109 166 168 169,stand,,,
113 4563.41 -1735.48 -191.875,112 113 115,stand,,,
114 4551.28 -1920.13 -191.875,111 114,stand,,,
115 4174.2 -1757.13 -191.875,111 114,stand,,,
116 4173.04 -1921.71 -191.875,113 112,stand,,,
117 4761.42 -1739.47 -239.875,116 117 111,stand,,,
118 4758.03 -2135.91 -239.216,115 243,stand,,,
119 4762.73 -1552.59 -248.087,115 118 241,stand,,,
120 4551 -1552.25 -246.845,117 141 142 241,stand,,,
121 4935.95 -1343.01 -198.827,239 241,stand,,,
122 5014.29 -663.392 -198.077,128 240,stand,,,
123 4782.14 -1227.24 -249.875,241,stand,,,
124 4605.66 -1060.34 -249.046,123 124 241,stand,,,
125 4452.4 -1095.16 -246.721,122,stand,,,
126 4654.71 -653.754 -249.779,122 125 126,stand,,,
127 4766.4 -695.393 -249.186,124,stand,,,
128 4769.18 -427.682 -249.718,124 127 130 128,stand,,,
129 4601.01 -338.726 -243.751,126,stand,,,
130 4945.01 -464.115 -250.775,120 129 130 126,stand,,,
131 4984.1 -361.004 -250.795,128,stand,,,
132 4867.2 -279.732 -249.119,128 126 131,stand,,,
133 4872.87 -171.888 -247.873,130 132,stand,,,
134 4755.79 -164.105 -247.875,131 133,stand,,,
135 4537.42 -159.22 -375.019,132 134,stand,,,
136 4428.98 -159.179 -375.89,133 135,stand,,,
137 4260.12 -169.562 -424.896,136 137 134,stand,,,
138 4281.82 -500.847 -416.062,135 139,stand,,,
139 4107.95 -117.271 -424.817,135 138,stand,,,
140 3887.1 -214.879 -444.97,137 180,stand,,,
141 4315.27 -920.644 -380.715,136 140 150,stand,,,
142 4303.55 -1369.63 -312.216,139 141 143,stand,,,
143 4369.39 -1566.89 -275.875,140 118,stand,,,
144 4525.18 -1609.01 -247.374,118,stand,,,
145 4222.91 -1344.08 -316.875,140 144,stand,,,
146 4019.77 -1345.6 -399.089,143 145 146,stand,,,
147 4017.06 -1447.58 -397.697,144,stand,,,
148 3804.22 -1343.65 -403.403,144 147 148 177,stand,,,
149 3822.09 -1247.38 -404.672,146,stand,,,
150 3654.59 -1289.91 -406.587,146 149 177,stand,,,
151 3691.88 -1158.24 -459.737,148 156,stand,,,
152 4103.5 -936.638 -451.204,139 151 161,stand,,,
153 4104.09 -728.501 -492.671,150 152 153,stand,,,
154 4123.27 -394.696 -502.09,151,stand,,,
155 3846.14 -732.941 -523.331,151 154,stand,,,
156 3698.99 -693.311 -518.58,153 155 181 183,stand,,,
157 3700.54 -868.701 -463.976,154 156,stand,,,
158 3709.82 -1012.32 -462.135,155 149 159 161,stand,,,
159 3282.62 -1261.54 -466.274,158,stand,,,
160 3301.13 -1050.04 -463.775,157 159,stand,,,
161 3397.52 -1034.06 -458.192,158 160 156,stand,,,
162 3390.07 -912.764 -464.084,159,stand,,,
163 3897.81 -1099.95 -456.342,156 150,stand,,,
164 3311.87 -2808.28 -207.875,94 163,stand,,,
165 3587.29 -2807.27 -207.875,162 164,stand,,,
166 3587.64 -2528.95 -207.875,165 163 166,stand,,,
167 3471.13 -2617.96 -207.875,164 94,stand,,,
168 3736.57 -2522.74 -207.875,164 167 110,stand,,,
169 3786.75 -2849.2 -207.875,166,stand,,,
170 3724.82 -2180.17 -256.957,110 170,stand,,,
171 3930.33 -2360.05 -207.245,110,stand,,,
172 3725.98 -2105.13 -256.305,168 171 172,stand,,,
173 3592.34 -1930.36 -253.057,170 174,stand,,,
174 3916.7 -2123.69 -256.229,170 173 242,stand,,,
175 3945.17 -1999.7 -255.598,172,stand,,,
176 3604.96 -1741.37 -320.558,171 175 176 177,stand,,,
177 3732.3 -1778.03 -307.518,174,stand,,,
178 3433.75 -1814.27 -303.945,174,stand,,,
179 3583.48 -1510.68 -375.561,174 178 148 146,stand,,,
180 3368.08 -1519.14 -381.391,108 177 179,stand,,,
181 3409.41 -1186.85 -405.715,178,stand,,,
182 3776.17 -216.401 -514.407,138 232,stand,,,
183 3595.89 -463.761 -516.861,182 154 183 186 233 251,stand,,,
184 3917.23 -452.118 -512.39,181,stand,,,
185 3571.49 -695.294 -514.963,154 184 181,stand,,,
186 3552.44 -786.338 -515.046,183 185,stand,,,
187 3323.8 -789.324 -511.823,184,stand,,,
188 3160.6 -496.491 -510.057,181 191 251,stand,,,
189 2869.3 -252.582 -515.497,188 189 236 251,stand,,,
190 2840.87 -122.296 -517.249,187 197,stand,,,
191 2650.46 -257.843 -496.661,187 190 192 197,stand,,,
192 2674.56 -519.079 -491.706,189 191 214 206,stand,,,
193 2868.95 -511.355 -510.379,190 186 236,stand,,,
194 2544.63 -267.848 -481.875,189 193,stand,,,
195 2431.45 -273.828 -481.875,192 194 195 196,stand,,,
196 2251.06 -271.089 -481.875,193,stand,,,
197 2439.49 -188.137 -481.875,193,stand,,,
198 2435.3 -360.059 -481.875,193,stand,,,
199 2644.68 36.2868 -498.948,189 198 188,stand,,,
200 2499.27 30.3692 -495.993,197 199,stand,,,
201 2215.73 44.4862 -461.736,198 200,stand,,,
202 1984.15 -18.7626 -453.198,199 201,stand,,,
203 1977.51 -227.157 -444.286,200 202 244,stand,,,
204 1648.2 -288.982 -444.264,201 27,stand,,,
205 2092.51 -612.819 -447.157,204,stand,,,
206 1936.17 -792.102 -451.948,27 203 205 210 244,stand,,,
207 2153.87 -799.711 -451.875,204 206,stand,,,
208 2334.28 -799.68 -495.523,205 207 214 190 250,stand,,,
209 2329.68 -668.546 -493.486,206 208,stand,,,
210 2225.96 -664.03 -486.874,207 209,stand,,,
211 2230.23 -567.918 -490.15,208,stand,,,
212 1937.07 -1126.76 -442.744,204 211 212 213 27,stand,,,
213 2098.51 -1038.37 -445.586,210,stand,,,
214 2142.94 -1183.81 -441.466,210,stand,,,
215 1939.4 -1420.94 -444.248,210 13 225,stand,,,
216 2597.74 -727.682 -494.639,206 190 215 216 250,stand,,,
217 2728.85 -736.175 -496.058,214,stand,,,
218 2602.72 -954.277 -445.644,214 217,stand,,,
219 2627.06 -1442.89 -431.066,216 218 224,stand,,,
220 2827.15 -1512.9 -404.581,217 219,stand,,,
221 2825.19 -1706.66 -323.364,218 220,stand,,,
222 2733.71 -1770.66 -320.013,219 221 222,stand,,,
223 2668.8 -1652.11 -320.776,220,stand,,,
224 2858.05 -1929.7 -319.05,223 220,stand,,,
225 2861.15 -2114.11 -316.459,222,stand,,,
226 2462.82 -1537.01 -396.014,217 225 226,stand,,,
227 2250.57 -1633.11 -397.875,224 213 226,stand,,,
228 2389.97 -1857.55 -334.875,225 224 227 228,stand,,,
229 2609.39 -2014.81 -297.875,226 85,stand,,,
230 2333.63 -1945.34 -330.397,226 229,stand,,,
231 2205.69 -2064.84 -288.426,228 230 231,stand,,,
232 2002.01 -2017.46 -284.119,229,stand,,,
233 2193.87 -2338.21 -218.84,229 83,stand,,,
234 3597.83 -230.645 -511.875,180 233 234 235,stand,,,
235 3597.74 -341.349 -512.42,232 181,stand,,,
236 3562.2 -176.861 -511.875,232,stand,,,
237 3637.46 -189.19 -511.875,232,stand,,,
238 2988.85 -366.443 -518.077,191 187,stand,,,
239 1101.57 -2601.84 -156.375,52 238,stand,,,
240 1252.75 -2634.53 -149.875,237,stand,,,
241 5000.3 -1243.08 -201.192,240 119,stand,,,
242 5005.61 -978.634 -197.23,239 120,stand,,,
243 4744.73 -1334.09 -252.35,119 122 117 118 121,stand,,,
244 4109.86 -2134.83 -254.99,243 172,stand,,,
245 4394.22 -2134.6 -244.175,242 116,stand,,,
246 1957.94 -546.414 -443.875,27 201 204,stand,,,
247 2750.75 -2967.63 -101.16,246 64 65,climb,6.70715 89.5605 0,,
248 2750.75 -2947.12 40.1248,245 101,climb,-3.09265 88.9343 0,,
249 2394.17 -1100.4 -573.331,248,stand,,,
250 2251.73 -913.893 -557.515,247 249,stand,,,
251 2433.78 -908.946 -495.875,248 250,stand,,,
252 2432.01 -820.385 -495.253,249 206 214,stand,,,
253 3122.58 -318.434 -520.619,187 186 181,stand,,,
254 3135.14 -2303.22 -146.199,97 253,stand,,,
255 3135.09 -2364.81 -106.004,252 254,stand,,,
256 3134.94 -2429.81 -59.875,253 98,stand,,,

View File

@@ -0,0 +1,190 @@
189
6089.45 -870.212 144.125,1 177,stand,,,
6115.72 -392.275 144.125,3 2 4 0 5,stand,,,
6015.46 -387.324 146.125,3 4 16 1,stand,,,
6035.16 -467.38 144.125,2 17 1,stand,,,
6029.29 -339.103 144.125,2 15 1,stand,,,
6114.69 58.3902 138.244,161 1,stand,,,
6160.15 505.952 144.125,160 161 7,stand,,,
5859.67 522.036 50.2895,8 6,stand,,,
5786.47 445.7 48.1966,7 9 63 66 175,stand,,,
5890.44 308.476 48.6311,8 10,stand,,,
5947.52 56.7679 51.6221,9 11 175,stand,,,
5951.32 -126.861 -33.1638,10 12,stand,,,
5937.48 -389.785 -40.7611,11 13,stand,,,
5954.34 -688.967 -27.6427,12 14,stand,,,
5949.04 -851.335 55.125,13 95 98,stand,,,
5665.72 -167.527 48.125,16 67 92 91 4,stand,,,
5663.99 -395.16 44.125,17 15 97 2,stand,,,
5655.25 -625.135 46.1469,16 93 97 3,stand,,,
4847.78 -1919.67 72.125,19 110 186,stand,,,
4519.43 -1950.98 72.125,18 20,stand,,,
4149.61 -1831.56 72.125,19 21 22 169,stand,,,
3907.05 -1753.68 72.125,20 22 112,stand,,,
3899.02 -1896.2 72.125,20 21 23 168,stand,,,
4072.95 -1991.99 72.125,22,stand,,,
3456.94 -1597.48 88.125,25 26 168,stand,,,
3290.27 -1413.63 88.125,24 27,stand,,,
3530.85 -1348.45 88.125,24 27 185,stand,,,
3381.71 -1023.92 88.1248,26 25 28 29,stand,,,
3407.82 -1251.67 88.1248,27,stand,,,
3475.67 -812.095 88.1248,27 167,stand,,,
3552.36 -428.151 88.125,147 167,stand,,,
3481.1 26.6309 88.125,33 35 167,stand,,,
3647.33 445.132 88.125,38 34 166 183,stand,,,
3445.48 149.725 88.125,31 34 35 37,stand,,,
3454.29 298.462 88.125,33 38 32,stand,,,
3642.31 22.7913 88.125,31 33 36 37,stand,,,
3640.24 -124.387 49.7503,35 148 149,stand,,,
3660.11 140.659 88.125,35 33 38,stand,,,
3668.29 307.833 88.125,37 32 34 183,stand,,,
3651.82 687.142 88.125,41 166,stand,,,
3959.13 590.191 88.125,155 166,stand,,,
3650.89 822.761 72.125,39 42,stand,,,
3633.95 957.157 72.125,41 43,stand,,,
3629.58 1109.15 32.0591,42 44 49,stand,,,
3857.02 1094.5 37.0434,43 46 49 164,stand,,,
4012.53 867.325 39.0436,52 51 164,stand,,,
4040.05 1112.71 29.799,44 47,stand,,,
4029.17 1268.46 36.3229,48 46 49,stand,,,
4146.61 1273.07 60.125,47 50,stand,,,
3865.89 1260.19 32.125,47 44 43,stand,,,
4317.37 1262.73 64.7793,48 51,stand,,,
4313.26 1090.43 28.3547,50 52 45,stand,,,
4221.01 848.151 37.834,51 45 53,stand,,,
4348.03 768.221 37.1376,52 162,stand,,,
4990.26 762.945 47.3173,55 58 59,stand,,,
4991.51 914.831 96.125,54 56,stand,,,
4938.44 1081.82 96.125,55 57 165,stand,,,
4992.54 1191.67 96.125,56,stand,,,
4881.53 719.433 47.7734,54 59 162,stand,,,
4981.05 586.009 48.8323,58 54 60 79 87,stand,,,
5203.87 603.512 57.3205,59 61 64,stand,,,
5454.37 564.353 55.8719,60 62,stand,,,
5468.54 413.629 46.4244,61 63 65,stand,,,
5636.41 412.638 49.0151,62 8,stand,,,
5219.39 407.215 48.1871,60 65 68 79 174,stand,,,
5461.01 318.203 48.2316,64 62 66 174,stand,,,
5552.14 173.839 48.1166,65 67 8 175 91,stand,,,
5602.71 -24.7625 48.1231,15 66 91 175 92,stand,,,
5072.38 398.587 48.1641,64 69 79 174,stand,,,
4947.02 313.929 48.1071,68 70 79 86 87 78 174,stand,,,
4859.69 234.213 48.625,69 71 86,stand,,,
4777.08 150.081 -3.875,70 72 77,stand,,,
4543.81 157.039 -3.875,71 73 74,stand,,,
4478.77 225.01 48.625,72 85 88 159,stand,,,
4525.86 -52.2454 -3.96081,72 75,stand,,,
4671.39 -120.352 -3.875,74 76 77,stand,,,
4675.22 -227.796 47.3517,75 81,stand,,,
4826.37 -29.4307 -3.875,75 71,stand,,,
5014.31 2.22257 50.7763,80 69 174,stand,,,
4984.75 500.044 49.2197,69 68 59 64 87,stand,,,
4955.25 -133.676 45.9682,78 81,stand,,,
4685.11 -292.349 45.8655,80 82 76 121,stand,,,
4499.15 -224.846 48.7017,81 83,stand,,,
4358.58 -157.703 48.9475,82 84,stand,,,
4326.59 -39.0615 48.4143,83 85,stand,,,
4343.76 130.126 49.5135,84 73 159,stand,,,
4725.41 313.312 46.7162,69 70 87 88,stand,,,
4865.11 459.266 47.8395,86 59 79 69,stand,,,
4571.9 319.112 46.4487,86 73 159 157,stand,,,
5240.36 128.816 52.4229,90,stand,,,
5249.74 -77.0338 44.2009,89 91 101 92,stand,,,
5409.92 -89.9078 44.3186,90 67 92 101 66 15,stand,,,
5437.44 -279.277 48.487,15 91 101 90 67 97,stand,,,
5584.68 -794.876 47.7732,17 94 95 97 103,stand,,,
5606.08 -892.668 47.8991,93 95 96 106,stand,,,
5745.05 -895.733 48.3681,14 93 94 96 98 99,stand,,,
5571.79 -1016.73 47.5823,95 94 100 99 106,stand,,,
5516.44 -615.637 48.2486,93 17 102 103 16 92,stand,,,
5825.8 -769.22 48.5785,14 95,stand,,,
5659.24 -1139.98 42.897,100 96 95,stand,,,
5475.78 -1153.64 47.1761,99 96 107 181,stand,,,
5292.81 -297.983 51.7758,92 90 91 102,stand,,,
5285.04 -562.206 45.9105,101 97 103,stand,,,
5257.56 -746.083 46.1142,102 97 104 93,stand,,,
5234.91 -894.94 47.5988,103 105,stand,,,
5381.3 -950.479 52.9136,104 106,stand,,,
5465.36 -955.749 47.641,105 96 94,stand,,,
5302.81 -1223.77 46.3718,100 108 178,stand,,,
5200.18 -1427.14 59.9031,109 125 178 107 181,stand,,,
5174.71 -1731.64 72.125,108 110,stand,,,
4958.59 -1857.64 72.125,109 18 111,stand,,,
4888.91 -1811.03 72.125,110,stand,,,
3883.59 -1640.16 60.0477,21 113,stand,,,
3674.12 -1617.47 65.473,112 114,stand,,,
3650.73 -1427.65 51.9258,113 115 180 184,stand,,,
3848.83 -1422.26 45.718,114 116 117,stand,,,
3847.62 -1225.37 42.0956,115 134 135,stand,,,
4088.96 -1431.09 48.062,115 133 173,stand,,,
4475.89 -1088.5 48.625,131 129 132 171,stand,,,
4673.43 -741.579 -3.875,120 170 171,stand,,,
4676.91 -624.732 46.7906,119 121 130 179,stand,,,
4730.46 -556.684 47.4006,120 81 179,stand,,,
5011.03 -859.594 41.726,124 179,stand,,,
4857.23 -1086.58 48.625,124 127 170 126 178,stand,,,
5027.14 -1052.79 47.782,123 122 178,stand,,,
4983.54 -1439.74 54.351,108 126 127,stand,,,
4964.08 -1319.56 45.4267,125 127 123 178,stand,,,
4798.8 -1330.74 49.2979,126 125 123 128,stand,,,
4680.41 -1440.28 57.9177,127 129,stand,,,
4527.93 -1307.66 52.6563,128 118 132 173,stand,,,
4486.98 -638.883 43.742,120 172,stand,,,
4303.9 -1061.07 45.8223,118 132 172,stand,,,
4337.33 -1206.04 48.126,118 133 129 131 173,stand,,,
4169.28 -1250.29 48.1566,132 134 117,stand,,,
4002.43 -1162.38 48.1416,133 135 116,stand,,,
3872.1 -1062.84 48.1325,134 116 137,stand,,,
3645.99 -1022.75 42.5489,137 180,stand,,,
3792.86 -927.036 48.1636,136 135 138 141 143,stand,,,
3758.09 -761.064 48.1257,137 139 143 140,stand,,,
3733.41 -613.519 48.1602,138 140 146 147,stand,,,
3626.01 -616.544 49.3486,139 138,stand,,,
3983.71 -835.994 50.1515,137 142 143 144,stand,,,
4169.93 -928.862 49.847,141,stand,,,
3920.22 -732.386 46.1782,141 138 144 146 145 137,stand,,,
4034.9 -635.236 48.1117,143 141 145,stand,,,
4027.84 -431.724 34.5524,144 146 143 149 150,stand,,,
3883.76 -583.294 42.88,139 143 145,stand,,,
3714.29 -430.594 48.1166,139 30 148,stand,,,
3735.14 -220.301 48.1638,147 36 149,stand,,,
3775.13 -122.132 48.2328,36 148 152 150 145,stand,,,
3990.53 -36.7888 48.5983,151 152 149 145,stand,,,
4161.9 71.291 53.3713,150,stand,,,
3786.13 55.6308 48.1902,149 150 153,stand,,,
3893.51 249.21 48.1607,152 154 182,stand,,,
4058.27 372.478 48.2255,153 158 155 182,stand,,,
4084.24 589.567 65.625,40 156 154,stand,,,
4183.64 601.017 50.7262,155 157 158,stand,,,
4405.12 596.542 45.6387,156 159 88,stand,,,
4216.99 397.958 48.1538,154 159 156,stand,,,
4371.48 333.573 48.1445,158 73 88 85 157,stand,,,
6151.63 616.699 144.125,6,stand,,,
6286.96 287.374 144.125,6 5,stand,,,
4732.38 854.901 50.0067,53 58 163,stand,,,
4570.52 868.916 44.7603,162,stand,,,
3827.51 824.977 38.1966,45 44,stand,,,
4519.59 1063.8 96.125,56,stand,,,
3654.34 589.989 88.125,39 32 40,stand,,,
3466.42 -422.648 88.125,29 30 31,stand,,,
3510.56 -1881.29 72.125,22 24,stand,,,
4262.78 -1796.91 72.125,20 186,stand,,,
4804.08 -1013.02 -3.875,123 119 171,stand,,,
4531.58 -1006.41 -3.875,119 170 118,stand,,,
4346.58 -857.201 49.0141,130 131,stand,,,
4337.41 -1451.54 48.0985,117 129 132,stand,,,
5078.17 258.773 50.157,78 69 68 64 65,stand,,,
5694.82 85.4201 48.452,10 8 67 176 66,stand,,,
5832.8 -55.472 48.1176,175,stand,,,
6062.21 -1417.93 144.125,0 188,stand,,,
5117.45 -1240.39 49.1513,126 124 123 108 107,stand,,,
4809.52 -627.897 47.7271,121 120 122,stand,,,
3648.88 -1322.03 42.2597,114 136 184,stand,,,
5430.43 -1415.77 51.8529,100 108 187,stand,,,
3734.63 379.87 40.9487,183 153 154,climb,-1.93359 -179.989 0,,
3716.88 379.87 88.125,182 38 32,climb,-1.73035 -179.989 0,,
3599.27 -1353.5 46.5766,185 180 114,climb,2.48291 176.006 0,,
3583.27 -1353.5 88.1248,184 26,climb,1.75781 175.886 0,,
4649.26 -1769.83 72.125,18 169,stand,,,
5540.88 -1434.75 79.2037,188 181,climb,3.07617 -0.181274 0,,
5563.34 -1434.75 144.125,187 177,climb,1.86218 -0.41748 0,,
1 189
2 6089.45 -870.212 144.125,1 177,stand,,,
3 6115.72 -392.275 144.125,3 2 4 0 5,stand,,,
4 6015.46 -387.324 146.125,3 4 16 1,stand,,,
5 6035.16 -467.38 144.125,2 17 1,stand,,,
6 6029.29 -339.103 144.125,2 15 1,stand,,,
7 6114.69 58.3902 138.244,161 1,stand,,,
8 6160.15 505.952 144.125,160 161 7,stand,,,
9 5859.67 522.036 50.2895,8 6,stand,,,
10 5786.47 445.7 48.1966,7 9 63 66 175,stand,,,
11 5890.44 308.476 48.6311,8 10,stand,,,
12 5947.52 56.7679 51.6221,9 11 175,stand,,,
13 5951.32 -126.861 -33.1638,10 12,stand,,,
14 5937.48 -389.785 -40.7611,11 13,stand,,,
15 5954.34 -688.967 -27.6427,12 14,stand,,,
16 5949.04 -851.335 55.125,13 95 98,stand,,,
17 5665.72 -167.527 48.125,16 67 92 91 4,stand,,,
18 5663.99 -395.16 44.125,17 15 97 2,stand,,,
19 5655.25 -625.135 46.1469,16 93 97 3,stand,,,
20 4847.78 -1919.67 72.125,19 110 186,stand,,,
21 4519.43 -1950.98 72.125,18 20,stand,,,
22 4149.61 -1831.56 72.125,19 21 22 169,stand,,,
23 3907.05 -1753.68 72.125,20 22 112,stand,,,
24 3899.02 -1896.2 72.125,20 21 23 168,stand,,,
25 4072.95 -1991.99 72.125,22,stand,,,
26 3456.94 -1597.48 88.125,25 26 168,stand,,,
27 3290.27 -1413.63 88.125,24 27,stand,,,
28 3530.85 -1348.45 88.125,24 27 185,stand,,,
29 3381.71 -1023.92 88.1248,26 25 28 29,stand,,,
30 3407.82 -1251.67 88.1248,27,stand,,,
31 3475.67 -812.095 88.1248,27 167,stand,,,
32 3552.36 -428.151 88.125,147 167,stand,,,
33 3481.1 26.6309 88.125,33 35 167,stand,,,
34 3647.33 445.132 88.125,38 34 166 183,stand,,,
35 3445.48 149.725 88.125,31 34 35 37,stand,,,
36 3454.29 298.462 88.125,33 38 32,stand,,,
37 3642.31 22.7913 88.125,31 33 36 37,stand,,,
38 3640.24 -124.387 49.7503,35 148 149,stand,,,
39 3660.11 140.659 88.125,35 33 38,stand,,,
40 3668.29 307.833 88.125,37 32 34 183,stand,,,
41 3651.82 687.142 88.125,41 166,stand,,,
42 3959.13 590.191 88.125,155 166,stand,,,
43 3650.89 822.761 72.125,39 42,stand,,,
44 3633.95 957.157 72.125,41 43,stand,,,
45 3629.58 1109.15 32.0591,42 44 49,stand,,,
46 3857.02 1094.5 37.0434,43 46 49 164,stand,,,
47 4012.53 867.325 39.0436,52 51 164,stand,,,
48 4040.05 1112.71 29.799,44 47,stand,,,
49 4029.17 1268.46 36.3229,48 46 49,stand,,,
50 4146.61 1273.07 60.125,47 50,stand,,,
51 3865.89 1260.19 32.125,47 44 43,stand,,,
52 4317.37 1262.73 64.7793,48 51,stand,,,
53 4313.26 1090.43 28.3547,50 52 45,stand,,,
54 4221.01 848.151 37.834,51 45 53,stand,,,
55 4348.03 768.221 37.1376,52 162,stand,,,
56 4990.26 762.945 47.3173,55 58 59,stand,,,
57 4991.51 914.831 96.125,54 56,stand,,,
58 4938.44 1081.82 96.125,55 57 165,stand,,,
59 4992.54 1191.67 96.125,56,stand,,,
60 4881.53 719.433 47.7734,54 59 162,stand,,,
61 4981.05 586.009 48.8323,58 54 60 79 87,stand,,,
62 5203.87 603.512 57.3205,59 61 64,stand,,,
63 5454.37 564.353 55.8719,60 62,stand,,,
64 5468.54 413.629 46.4244,61 63 65,stand,,,
65 5636.41 412.638 49.0151,62 8,stand,,,
66 5219.39 407.215 48.1871,60 65 68 79 174,stand,,,
67 5461.01 318.203 48.2316,64 62 66 174,stand,,,
68 5552.14 173.839 48.1166,65 67 8 175 91,stand,,,
69 5602.71 -24.7625 48.1231,15 66 91 175 92,stand,,,
70 5072.38 398.587 48.1641,64 69 79 174,stand,,,
71 4947.02 313.929 48.1071,68 70 79 86 87 78 174,stand,,,
72 4859.69 234.213 48.625,69 71 86,stand,,,
73 4777.08 150.081 -3.875,70 72 77,stand,,,
74 4543.81 157.039 -3.875,71 73 74,stand,,,
75 4478.77 225.01 48.625,72 85 88 159,stand,,,
76 4525.86 -52.2454 -3.96081,72 75,stand,,,
77 4671.39 -120.352 -3.875,74 76 77,stand,,,
78 4675.22 -227.796 47.3517,75 81,stand,,,
79 4826.37 -29.4307 -3.875,75 71,stand,,,
80 5014.31 2.22257 50.7763,80 69 174,stand,,,
81 4984.75 500.044 49.2197,69 68 59 64 87,stand,,,
82 4955.25 -133.676 45.9682,78 81,stand,,,
83 4685.11 -292.349 45.8655,80 82 76 121,stand,,,
84 4499.15 -224.846 48.7017,81 83,stand,,,
85 4358.58 -157.703 48.9475,82 84,stand,,,
86 4326.59 -39.0615 48.4143,83 85,stand,,,
87 4343.76 130.126 49.5135,84 73 159,stand,,,
88 4725.41 313.312 46.7162,69 70 87 88,stand,,,
89 4865.11 459.266 47.8395,86 59 79 69,stand,,,
90 4571.9 319.112 46.4487,86 73 159 157,stand,,,
91 5240.36 128.816 52.4229,90,stand,,,
92 5249.74 -77.0338 44.2009,89 91 101 92,stand,,,
93 5409.92 -89.9078 44.3186,90 67 92 101 66 15,stand,,,
94 5437.44 -279.277 48.487,15 91 101 90 67 97,stand,,,
95 5584.68 -794.876 47.7732,17 94 95 97 103,stand,,,
96 5606.08 -892.668 47.8991,93 95 96 106,stand,,,
97 5745.05 -895.733 48.3681,14 93 94 96 98 99,stand,,,
98 5571.79 -1016.73 47.5823,95 94 100 99 106,stand,,,
99 5516.44 -615.637 48.2486,93 17 102 103 16 92,stand,,,
100 5825.8 -769.22 48.5785,14 95,stand,,,
101 5659.24 -1139.98 42.897,100 96 95,stand,,,
102 5475.78 -1153.64 47.1761,99 96 107 181,stand,,,
103 5292.81 -297.983 51.7758,92 90 91 102,stand,,,
104 5285.04 -562.206 45.9105,101 97 103,stand,,,
105 5257.56 -746.083 46.1142,102 97 104 93,stand,,,
106 5234.91 -894.94 47.5988,103 105,stand,,,
107 5381.3 -950.479 52.9136,104 106,stand,,,
108 5465.36 -955.749 47.641,105 96 94,stand,,,
109 5302.81 -1223.77 46.3718,100 108 178,stand,,,
110 5200.18 -1427.14 59.9031,109 125 178 107 181,stand,,,
111 5174.71 -1731.64 72.125,108 110,stand,,,
112 4958.59 -1857.64 72.125,109 18 111,stand,,,
113 4888.91 -1811.03 72.125,110,stand,,,
114 3883.59 -1640.16 60.0477,21 113,stand,,,
115 3674.12 -1617.47 65.473,112 114,stand,,,
116 3650.73 -1427.65 51.9258,113 115 180 184,stand,,,
117 3848.83 -1422.26 45.718,114 116 117,stand,,,
118 3847.62 -1225.37 42.0956,115 134 135,stand,,,
119 4088.96 -1431.09 48.062,115 133 173,stand,,,
120 4475.89 -1088.5 48.625,131 129 132 171,stand,,,
121 4673.43 -741.579 -3.875,120 170 171,stand,,,
122 4676.91 -624.732 46.7906,119 121 130 179,stand,,,
123 4730.46 -556.684 47.4006,120 81 179,stand,,,
124 5011.03 -859.594 41.726,124 179,stand,,,
125 4857.23 -1086.58 48.625,124 127 170 126 178,stand,,,
126 5027.14 -1052.79 47.782,123 122 178,stand,,,
127 4983.54 -1439.74 54.351,108 126 127,stand,,,
128 4964.08 -1319.56 45.4267,125 127 123 178,stand,,,
129 4798.8 -1330.74 49.2979,126 125 123 128,stand,,,
130 4680.41 -1440.28 57.9177,127 129,stand,,,
131 4527.93 -1307.66 52.6563,128 118 132 173,stand,,,
132 4486.98 -638.883 43.742,120 172,stand,,,
133 4303.9 -1061.07 45.8223,118 132 172,stand,,,
134 4337.33 -1206.04 48.126,118 133 129 131 173,stand,,,
135 4169.28 -1250.29 48.1566,132 134 117,stand,,,
136 4002.43 -1162.38 48.1416,133 135 116,stand,,,
137 3872.1 -1062.84 48.1325,134 116 137,stand,,,
138 3645.99 -1022.75 42.5489,137 180,stand,,,
139 3792.86 -927.036 48.1636,136 135 138 141 143,stand,,,
140 3758.09 -761.064 48.1257,137 139 143 140,stand,,,
141 3733.41 -613.519 48.1602,138 140 146 147,stand,,,
142 3626.01 -616.544 49.3486,139 138,stand,,,
143 3983.71 -835.994 50.1515,137 142 143 144,stand,,,
144 4169.93 -928.862 49.847,141,stand,,,
145 3920.22 -732.386 46.1782,141 138 144 146 145 137,stand,,,
146 4034.9 -635.236 48.1117,143 141 145,stand,,,
147 4027.84 -431.724 34.5524,144 146 143 149 150,stand,,,
148 3883.76 -583.294 42.88,139 143 145,stand,,,
149 3714.29 -430.594 48.1166,139 30 148,stand,,,
150 3735.14 -220.301 48.1638,147 36 149,stand,,,
151 3775.13 -122.132 48.2328,36 148 152 150 145,stand,,,
152 3990.53 -36.7888 48.5983,151 152 149 145,stand,,,
153 4161.9 71.291 53.3713,150,stand,,,
154 3786.13 55.6308 48.1902,149 150 153,stand,,,
155 3893.51 249.21 48.1607,152 154 182,stand,,,
156 4058.27 372.478 48.2255,153 158 155 182,stand,,,
157 4084.24 589.567 65.625,40 156 154,stand,,,
158 4183.64 601.017 50.7262,155 157 158,stand,,,
159 4405.12 596.542 45.6387,156 159 88,stand,,,
160 4216.99 397.958 48.1538,154 159 156,stand,,,
161 4371.48 333.573 48.1445,158 73 88 85 157,stand,,,
162 6151.63 616.699 144.125,6,stand,,,
163 6286.96 287.374 144.125,6 5,stand,,,
164 4732.38 854.901 50.0067,53 58 163,stand,,,
165 4570.52 868.916 44.7603,162,stand,,,
166 3827.51 824.977 38.1966,45 44,stand,,,
167 4519.59 1063.8 96.125,56,stand,,,
168 3654.34 589.989 88.125,39 32 40,stand,,,
169 3466.42 -422.648 88.125,29 30 31,stand,,,
170 3510.56 -1881.29 72.125,22 24,stand,,,
171 4262.78 -1796.91 72.125,20 186,stand,,,
172 4804.08 -1013.02 -3.875,123 119 171,stand,,,
173 4531.58 -1006.41 -3.875,119 170 118,stand,,,
174 4346.58 -857.201 49.0141,130 131,stand,,,
175 4337.41 -1451.54 48.0985,117 129 132,stand,,,
176 5078.17 258.773 50.157,78 69 68 64 65,stand,,,
177 5694.82 85.4201 48.452,10 8 67 176 66,stand,,,
178 5832.8 -55.472 48.1176,175,stand,,,
179 6062.21 -1417.93 144.125,0 188,stand,,,
180 5117.45 -1240.39 49.1513,126 124 123 108 107,stand,,,
181 4809.52 -627.897 47.7271,121 120 122,stand,,,
182 3648.88 -1322.03 42.2597,114 136 184,stand,,,
183 5430.43 -1415.77 51.8529,100 108 187,stand,,,
184 3734.63 379.87 40.9487,183 153 154,climb,-1.93359 -179.989 0,,
185 3716.88 379.87 88.125,182 38 32,climb,-1.73035 -179.989 0,,
186 3599.27 -1353.5 46.5766,185 180 114,climb,2.48291 176.006 0,,
187 3583.27 -1353.5 88.1248,184 26,climb,1.75781 175.886 0,,
188 4649.26 -1769.83 72.125,18 169,stand,,,
189 5540.88 -1434.75 79.2037,188 181,climb,3.07617 -0.181274 0,,
190 5563.34 -1434.75 144.125,187 177,climb,1.86218 -0.41748 0,,

View File

@@ -0,0 +1,385 @@
384
5129 6678 5,64,stand,,,
5975 5764 32,200,stand,,,
7227 6038 0,47,stand,,,
6545 4611 8,375 378,stand,,,
6592 3452 49,31 313,stand,,,
4897 6005 64,74,stand,,,
3733 3866 184,127,stand,,,
6296 6843 -32,50 55,stand,,,
6333 6000 9,49 53,stand,,,
6367 3441 180,33,stand,,,
5537 3786 -9,219 314,stand,,,
3749 4942 92,187,stand,,,
3784 4536 212,149 150 152,stand,,,
3739 3878 48,137,stand,,,
4659 3998 0,156 155,stand,,,
3532 5039 72,183 182,stand,,,
5622 4977 40,116 117,stand,,,
5546 4702 176,111,stand,,,
5089 5428 7,161 162,stand,,,
5441 4212 29,263 264 120,stand,,,
3298 3064 2,21 141 343 345,stand,,,
3796 3038 2,20 22 140 141 341 335,stand,,,
4168 2980 3,21 23 335,stand,,,
4461 2979 19,22 274 274 105,stand,,,
5160 3027 2,25 328 329 334,stand,,,
5565 3081 0,24 328 330 273,stand,,,
6051 3496 26,27 330,stand,,,
6045 3778 6,26 218 28 321 322,stand,,,
6268 3712 44,39 40 27 321 322,stand,,,
6216 3442 44,30 40,stand,,,
6384 3450 44,29 31,stand,,,
6467 3443 44,30 4,stand,,,
6299 3492 180,33 39,stand,,,
6302 3432 180,32 9 38,stand,,,
6410 3519 180,35,stand,,,
6423 3663 180,34 36,stand,,,
6293 3672 180,37 35,stand,,,
6119 3672 180,36 38,stand,,,
6118 3428 180,37 33,stand,,,
6298 3646 44,32 28 40,stand,,,
6237 3650 44,29 28 39,stand,,,
6815 3847 26,42 313 321,stand,,,
6834 4029 1,41 382,stand,,,
6656 4442 0,378 381 382,stand,,,
7090 4857 6,283 377 376,stand,,,
6854 5295 0,231 283 284 311 311 376,stand,,,
6808 5833 18,47 310 311,stand,,,
6793 6025 28,46 48 269 2,stand,,,
6664 6023 32,47 49 268 271 310,stand,,,
6535 6011 21,48 8 52 271 310 268,stand,,,
6368 6808 -51,7 51,stand,,,
6362 6372 -43,52 268 270 50 293,stand,,,
6311 6256 -26,51 53 49,stand,,,
6164 6219 -12,52 54 8,stand,,,
5991 6264 5,53 59,stand,,,
6190 6767 -51,7 56 293,stand,,,
5926 6680 -63,55 57 293 294,stand,,,
5678 6518 -48,58 56 72 71 294,stand,,,
5628 6636 -9,57 60,stand,,,
5821 6128 1,54 73 239 214,stand,,,
5526 6827 -14,58 286,stand,,,
5490 6595 5,62 62 285,stand,,,
5385 6562 5,61 61 63 65 70,stand,,,
5331 6529 5,64 62,stand,,,
5239 6734 5,63 0,stand,,,
5312 6698 141,62 66,stand,,,
5271 6756 141,65 67,stand,,,
5213 6720 141,66 68,stand,,,
5336 6534 141,67 69,stand,,,
5501 6557 141,68,stand,,,
5405 6472 5,62 71,stand,,,
5432 6428 -9,70 75 266 57 76,stand,,,
5547 6297 -17,57 76 294,stand,,,
5689 6107 -9,59 294 214 239 295,stand,,,
4967 5917 32,5 77 267,stand,,,
5277 6025 10,76 71 295 266 267,stand,,,
5420 6205 -9,75 72 71 295,stand,,,
4813 5889 27,74 78 97,stand,,,
4624 5874 25,77 79 97 240,stand,,,
4483 5863 2,78 349 240,stand,,,
3171 5991 -4,353 354 355 258 81,stand,,,
3210 5555 -6,244 244 245 243 355 80 82 258,stand,,,
2956 5019 0,356 83 84 245 81 85,stand,,,
2876 4577 13,84 280 280 347 82,stand,,,
2991 4608 -5,83 85 280 245 357 82,stand,,,
3207 4622 -2,84 275 280 357 82 367,stand,,,
3956 4862 75,87 185 198 246,stand,,,
4055 4934 52,86 198 88,stand,,,
4376 5018 36,289 87 89 199 198,stand,,,
4813 4960 5,96 176 88 175 98 256,stand,,,
5196 5246 4,91 95 158,stand,,,
5352 5205 8,90 92 158 297,stand,,,
5521 5205 -19,93 91,stand,,,
5669 5266 8,92 94 291,stand,,,
5805 5259 3,93 302 301 303,stand,,,
5033 5171 3,96 90 164 99,stand,,,
4898 5072 0,95 89 98 99 176,stand,,,
4678 5717 -13,78 177 240 77 159 290,stand,,,
4841 5243 11,96 181 259 290 89,stand,,,
5116 4912 9,96 176 260 297 100 95,stand,,,
5174 4723 20,101 119 99,stand,,,
5126 4494 14,100 102 256 119,stand,,,
5059 4290 1,101 103 262 263,stand,,,
4992 4125 7,102 104 157 262,stand,,,
4974 3842 3,103 277 327 331,stand,,,
4791 3015 16,329 333 334 274 23,stand,,,
5798 4948 176,107,stand,,,
5789 4751 176,106 108,stand,,,
5662 4698 176,107 109,stand,,,
5628 4793 176,108 110,stand,,,
5470 4799 176,111 109 112,stand,,,
5472 4698 176,110 17,stand,,,
5464 4850 176,110 228,stand,,,
5528 5016 89,228 114,stand,,,
5533 4891 40,115 113,stand,,,
5531 4766 40,114 116 118,stand,,,
5611 4823 40,115 16,stand,,,
5765 4842 40,16 121 309,stand,,,
5415 4693 40,115 120 119,stand,,,
5300 4745 10,297 120 100 260 101 118,stand,,,
5415 4503 19,263 119 118 19,stand,,,
5648 4675 40,117 315,stand,,,
3714 3736 48,123 137 136,stand,,,
3830 3821 184,122 124,stand,,,
3905 3885 184,123 125 129,stand,,,
3954 3833 184,124 126,stand,,,
3754 3649 184,125 127 128,stand,,,
3625 3784 184,126 6,stand,,,
3790 3567 184,126,stand,,,
3851 3961 184,124 130,stand,,,
3882 3983 184,129,stand,,,
3789 4031 48,132 133,stand,,,
3726 4105 39,131 139 153 275,stand,,,
3950 3833 48,131 134,stand,,,
3825 3730 48,133 135 136,stand,,,
3886 3579 48,134 136,stand,,,
3720 3678 48,122 134 135 342,stand,,,
3619 3771 48,13 122,stand,,,
3501 3808 29,139 140 342 275 348,stand,,,
3513 4030 39,138 132 275 344 346,stand,,,
3551 3470 8,138 21 341 342 348 141,stand,,,
3354 3152 -11,20 343 21 140 341 335,stand,,,
3470 4256 42,275 344 367 364,stand,,,
3834 4381 76,144 147 363,stand,,,
3913 4393 76,143 145 363,stand,,,
3979 4408 40,144 146,stand,,,
4040 4408 40,145 276 279 338 339,stand,,,
3811 4570 76,143 361,stand,,,
3763 4258 76,149 362 363,stand,,,
3724 4456 212,148 12 152,stand,,,
3839 4209 212,12 151,stand,,,
3696 4183 212,150 152,stand,,,
3632 4580 212,151 149 12,stand,,,
3863 4139 40,132 336 339,stand,,,
4277 4192 14,155 249 337 338,stand,,,
4574 4155 0,154 156 14 174,stand,,,
4673 4142 0,155 14 157 174,stand,,,
4806 4125 0,156 103 277,stand,,,
5376 5322 -5,91 291 90,stand,,,
4980 5631 -4,160 292 97 290 296,stand,,,
5022 5556 7,159 161,stand,,,
5033 5516 7,18 160 165,stand,,,
5232 5480 7,18 163,stand,,,
5271 5373 7,162 164,stand,,,
4988 5286 7,163 95 166,stand,,,
4974 5492 7,161 166 167,stand,,,
4889 5457 7,165 164,stand,,,
5023 5364 143,165 168,stand,,,
5058 5264 143,167 169 173,stand,,,
5126 5284 143,168 170,stand,,,
5031 5541 143,169 171,stand,,,
4953 5496 143,172 170,stand,,,
4867 5403 143,171 173,stand,,,
5008 5238 143,172 168,stand,,,
4587 4315 -2,155 249 156 370,stand,,,
4681 4769 -13,89 370 254 255,stand,,,
4821 4813 14,89 256 99 255 96,stand,,,
4576 5578 4,178 97 352 290 240,stand,,,
4567 5453 3,177 179,stand,,,
4401 5418 12,178 180,stand,,,
4415 5258 17,179 289 259 181,stand,,,
4739 5196 11,98 180,stand,,,
3529 5236 71,15 184,stand,,,
3516 4826 69,15 359 365 365,stand,,,
3708 5452 67,257 287 182,stand,,,
3807 4771 79,86 276 359 186,stand,,,
3648 4681 71,185 360 364 365,stand,,,
3643 4943 92,11 188 359,stand,,,
3645 5116 92,187 189 358,stand,,,
3645 5221 92,188 358,stand,,,
3891 5073 92,191 197 358,stand,,,
3842 5043 92,190 192,stand,,,
3693 5039 228,191 193,stand,,,
3625 5047 228,192 194,stand,,,
3635 5219 228,193 195,stand,,,
3731 5242 228,194 196,stand,,,
3885 5215 228,195,stand,,,
3926 5070 92,190 198 199,stand,,,
4008 4987 66,197 87 86 199 88,stand,,,
3985 5202 71,197 287 198 289 88,stand,,,
6087 5661 32,1 201,stand,,,
6121 5743 32,200 202 298,stand,,,
6024 5851 168,201 203,stand,,,
5980 5891 168,202 206,stand,,,
6277 5829 168,205,stand,,,
6134 5836 168,204 206,stand,,,
6006 5973 168,205 207 203,stand,,,
6079 6044 168,206 208,stand,,,
6045 6075 168,207,stand,,,
6076 6045 32,210,stand,,,
6000 5971 32,209 211 215,stand,,,
5889 5862 32,210 213,stand,,,
5844 5902 58,213 214,stand,,,
5858 5888 32,212 211,stand,,,
5830 5914 1,212 239 59 73,stand,,,
6112 5869 32,210 216 298,stand,,,
6240 5862 32,215 298,stand,,,
5975 4801 -1,303 308 309,stand,,,
5926 3877 -16,272 320 27 326 325 322,stand,,,
5484 3924 23,10 314,stand,,,
5560 3991 13,221 265 314,stand,,,
5433 3999 130,220 222,stand,,,
5325 4006 130,221 223 226,stand,,,
5333 4082 130,222 224,stand,,,
5603 4043 130,223 225,stand,,,
5590 3898 130,224 226,stand,,,
5318 3931 130,225 222,stand,,,
5432 5028 88,228 260 297,stand,,,
5468 4984 89,113 112 227,stand,,,
4479 3506 0,230 274 340,stand,,,
4810 3523 0,229 274 332 329,stand,,,
6706.48 5378.76 -1.69762,232 235 45 311 304 312 376,stand,,,
6694.47 5070.19 97.125,231 233,stand,,,
6690.34 4933.39 97.125,232,stand,,,
6449.5 4958.72 97.125,281,stand,,,
6605.32 5304.36 -3.47468,231 236 282,stand,,,
6585.28 5013.21 -29.2875,235 237 282,stand,,,
6352.79 4970.26 -27.875,236 238,stand,,,
6271.59 5223.75 41.9955,237 303 312 302 373 372,stand,,,
5531.18 5858.22 14.6231,214 267 59 296 73,stand,,,
4412.29 5706.74 -5.82266,97 78 79 349 352 177,stand,,,
3965.95 5681.82 9.60307,242 258 257 352 351 243,stand,,,
3749.53 5569.57 14.3657,241 243,stand,,,
3490.84 5584.2 12.6331,242 244 258 81 241,stand,,,
3339.42 5428.15 12.3708,243 81 81 245 357,stand,,,
3186.25 5262.88 -2.75324,81 84 244 356 82 357,stand,,,
4199.3 4804.51 -0.568065,86 247 248 279,stand,,,
4399.57 4777.98 -18.5353,246 248 254,stand,,,
4384.71 4496.87 11.6079,247 249 252 246,stand,,,
4409.8 4292.85 8.95259,248 174 154,stand,,,
4382.58 4872.88 131.025,251,stand,,,
4379.78 4729.66 127.5,250 253,stand,,,
4463.28 4497.98 2.00799,248 253,stand,,,
4453.38 4731.23 105.176,252 251,stand,,,
4501.72 4845.31 -0.71394,247 175 371 370,stand,,,
4763.4 4641.8 -15.6153,175 176,stand,,,
4973.54 4712.58 6.82538,101 176 261 89,stand,,,
3942.29 5533 44.1852,184 241 352 289,stand,,,
3700.13 5751.69 10.2234,243 241 351 80 81,stand,,,
4760.88 5332.94 10.1139,98 180 290,stand,,,
5248.15 4912.03 25.485,227 297 99 119,stand,,,
4881.95 4512.58 -8.42728,256 262,stand,,,
4958.39 4291.85 1.54914,261 103 102,stand,,,
5279.44 4267.56 42.6264,102 120 19,stand,,,
5409.6 4141.75 32.518,19 265,crouch,,,
5520.34 4070.16 31.9476,264 220,crouch,,,
5252.24 6248.28 22.0025,71 75,stand,,,
5104.84 5934.63 28.5553,74 75 239 292,stand,,,
6463.01 6186.18 -7.43313,51 48 49,stand,,,
6782.75 6257.68 3.26949,47 270,stand,,,
6599.56 6355.81 -37.3703,269 51 293,stand,,,
6520.13 5837.37 -1.77615,49 304 48,stand,,,
6159.56 4167.72 2.41146,218 307 322 325,stand,,,
5401.87 3450.57 24.119,318 328 320 25 327 329,stand,,,
4573.22 3414.28 -7.80709,229 23 230 329 23 105 335,stand,,,
3424.6 4149.92 28.6634,85 138 142 132 139 343 280 346,stand,,,
3950.98 4634.19 57.8187,146 185,stand,,,
4870.35 3885.57 0.124998,157 104,stand,,,
6444.05 5273.13 97.125,281,stand,,,
4110.24 4698.68 32.069,146 246,stand,,,
2972.5 4264.88 -0.851513,85 275 346 83 84 83 347,stand,,,
6408.81 5072.82 97.125,234 278,stand,,,
6628.38 5117.05 -26.404,236 235 376,stand,,,
7181.62 5157.33 21.9258,44 284 45,stand,,,
7236.02 5424.5 9.54441,283 45,stand,,,
5388.01 6710.95 5.125,61 286,stand,,,
5451.49 6838.04 5.125,285 60,stand,,,
3924.55 5397.58 57.7453,184 199 288,stand,,,
4307.27 5453.88 20.125,287 289,stand,,,
4251.04 5270.16 45.2108,288 88 199 180 352 257,stand,,,
4763.36 5577.75 0.834746,259 98 97 159 177,stand,,,
5287.4 5643.86 10.0887,158 292 296 93,stand,,,
5200.84 5690.18 3.57655,291 159 296 267,stand,,,
6202.46 6518.22 -65.6338,51 270 56 294 55,stand,,,
5691.51 6386.23 -40.0801,56 73 293 295 72 57,stand,,,
5495.53 6067.67 -5.35479,294 75 76 73 296,stand,,,
5289.73 5819.28 19.2043,291 292 239 295 159,stand,,,
5352.85 5037.48 49.9033,91 260 99 227 119,stand,,,
6191.08 5740.29 32.125,201 216 215 299 300,stand,,,
6351.15 5715.7 -21.9404,298 300 304,stand,,,
6215.99 5611.53 -10.1165,299 298 301 304,stand,,,
6027.91 5451.38 33.9855,300 94 302 304 312,stand,,,
6098.54 5276.91 3.38047,94 301 303 312 238 373 372,stand,,,
6009.1 4976.97 -0.653558,94 302 217 309 238 372,stand,,,
6464.66 5588.43 -28.8163,301 271 299 231 311 300,stand,,,
6250.22 4655.03 3.40177,306 307 308 374 372 373,stand,,,
6352.96 4455.13 28.1916,305 307,stand,,,
6177.03 4482.8 35.9389,306 305 272 308 325,stand,,,
6083.54 4568.28 -10.3956,305 307 217 324 325,stand,,,
5859.55 4832.52 32.125,217 117 303 324,stand,,,
6702.63 5882.45 -2.01447,48 46 311 49,stand,,,
6743.55 5523.96 -8.66815,231 45 46 310 304 45,stand,,,
6267.97 5360.81 53.57,238 231 301 302,stand,,,
6566.58 3735.99 50.2363,4 41 321,stand,,,
5601.91 3913.01 -5.875,10 219 220 317 326,stand,,,
5591.25 4358.68 -3.89991,121 316 323,stand,,,
5701.68 4195.36 1.25076,315 317 323,stand,,,
5746.6 4015.18 -6.55717,316 314 325 326,stand,,,
5377.91 3652.05 43.0941,319 320 327 273,stand,,,
5649.36 3674.65 -6.70806,318 320 326,stand,,,
5741.01 3553.54 -9.69705,318 319 218 328 273 330,stand,,,
6434.82 3827.95 30.9272,28 313 41 322 27 383,stand,,,
6217.24 3982.59 7.2533,321 272 28 27 383 218,stand,,,
5744.82 4391.25 0.693862,315 316 324 325,stand,,,
5837.76 4538.52 -2.61134,323 309 325 308,stand,,,
5947.89 4351.41 -8.8244,323 324 272 308 317 218 307,stand,,,
5742.28 3854.83 -8.90728,317 319 314 218,stand,,,
5029.23 3640.34 4.06237,104 318 273 331 329,stand,,,
5674.51 3285.89 -12.5547,273 320 25 24 330,stand,,,
5093.37 3362.98 4.7062,24 327 273 331 230 105 274 334,stand,,,
5885.04 3200.91 5.10942,26 320 328 25,stand,,,
4921.61 3668.68 -0.242781,104 327 329 332,stand,,,
4780.96 3712.88 -1.14737,331 230,stand,,,
4897.1 2796.7 41.8301,334 105,stand,,,
4973.31 3042.79 -0.635588,329 333 24 105,stand,,,
4029.61 3314.45 -15.7574,22 274 341 340 21 141,stand,,,
4147.88 3719.88 11.3266,153 337 339 340 341,stand,,,
4154.1 4056.58 12.5036,154 338 336,stand,,,
4144.11 4194.2 26.0651,154 146 339 337,stand,,,
4007.89 4191.41 40.0221,146 153 338 336,stand,,,
4154.52 3496.72 8.49734,229 335 336 341,stand,,,
3795.19 3411.11 10.3555,342 335 336 140 21 141 340,stand,,,
3656.68 3631.34 40.125,136 341 140 138 348,stand,,,
3126.45 3491.34 -10.987,141 275 20 347 345,stand,,,
3559.08 4290.42 42.125,142 139,stand,,,
2908.01 3420.23 3.07831,20 346 347 343,stand,,,
3260.85 3895.43 5.23389,139 280 347 348 275 345,stand,,,
2866.52 3919.48 18.8529,346 345 343 280 83,stand,,,
3374.69 3654.87 9.60571,138 140 342 346,stand,,,
4143.51 5913.23 27.7404,79 240 350 351,stand,,,
4215.88 6062.36 54.5068,349 351,stand,,,
3849.85 5977.33 16.114,350 349 258 241 353,stand,,,
4136.59 5581.91 15.9469,240 177 257 289 241,stand,,,
3541.95 5988.86 18.5764,351 80,stand,,,
3089.8 6435.39 14.1844,80 355,stand,,,
2922.38 5956.23 -1.9077,80 354 356 81,stand,,,
2868.96 5646.26 13.3448,355 82 245,stand,,,
3257.74 4865.7 10.7289,85 244 84 245 367,stand,,,
3822.32 5128.55 92.125,188 189 190,stand,,,
3657.34 4863.36 84.125,187 183 185,stand,,,
3627.18 4618.5 62.1055,186 361 365,stand,,,
3632.79 4581.74 79.125,360 147 369,stand,,,
3707.95 4225.61 76.125,148 368 363,stand,,,
3845.14 4228.33 76.125,143 144 148 362,stand,,,
3455.71 4579.54 28.5772,186 366 367 142 365,stand,,,
3521.18 4677.87 49.6177,186 183 183 364 360,stand,,,
3552.4 4369.57 76.2619,364 368 369,stand,,,
3359.51 4588.76 21.9452,364 357 85 142,stand,,,
3649.7 4333.22 76.375,366 369 362,stand,,,
3626.54 4438.52 76.375,366 361 368,stand,,,
4576.25 4729.75 8.37526,174 175 371 254,stand,,,
4636.88 4872.88 10.6251,254 370,stand,,,
6131.58 4928.22 2.20008,303 305 238 302 373,stand,,,
6253.93 4907.64 2.00515,238 374 302 305 372 374,stand,,,
6369.2 4881.91 8.51466,373 305 373 375,stand,,,
6452.13 4879.56 14.6715,3 374 378 377,stand,,,
6838.19 5130.92 -0.258625,282 231 45 377 44,stand,,,
6806.16 4856.64 13.5233,376 44 375 378,stand,,,
6648.44 4802.71 4.10799,375 377 3 379 43 381,stand,,,
7122.74 4702.97 7.337,378 380 381,stand,,,
7421.88 4685 7.75435,379 381,stand,,,
6777.52 4304.81 0.061284,380 379 382 378 43,stand,,,
6622.22 4099.89 5.27836,381 43 42 383,stand,,,
6356.9 4092.88 4.34532,382 321 322,stand,,,
1 384
2 5129 6678 5,64,stand,,,
3 5975 5764 32,200,stand,,,
4 7227 6038 0,47,stand,,,
5 6545 4611 8,375 378,stand,,,
6 6592 3452 49,31 313,stand,,,
7 4897 6005 64,74,stand,,,
8 3733 3866 184,127,stand,,,
9 6296 6843 -32,50 55,stand,,,
10 6333 6000 9,49 53,stand,,,
11 6367 3441 180,33,stand,,,
12 5537 3786 -9,219 314,stand,,,
13 3749 4942 92,187,stand,,,
14 3784 4536 212,149 150 152,stand,,,
15 3739 3878 48,137,stand,,,
16 4659 3998 0,156 155,stand,,,
17 3532 5039 72,183 182,stand,,,
18 5622 4977 40,116 117,stand,,,
19 5546 4702 176,111,stand,,,
20 5089 5428 7,161 162,stand,,,
21 5441 4212 29,263 264 120,stand,,,
22 3298 3064 2,21 141 343 345,stand,,,
23 3796 3038 2,20 22 140 141 341 335,stand,,,
24 4168 2980 3,21 23 335,stand,,,
25 4461 2979 19,22 274 274 105,stand,,,
26 5160 3027 2,25 328 329 334,stand,,,
27 5565 3081 0,24 328 330 273,stand,,,
28 6051 3496 26,27 330,stand,,,
29 6045 3778 6,26 218 28 321 322,stand,,,
30 6268 3712 44,39 40 27 321 322,stand,,,
31 6216 3442 44,30 40,stand,,,
32 6384 3450 44,29 31,stand,,,
33 6467 3443 44,30 4,stand,,,
34 6299 3492 180,33 39,stand,,,
35 6302 3432 180,32 9 38,stand,,,
36 6410 3519 180,35,stand,,,
37 6423 3663 180,34 36,stand,,,
38 6293 3672 180,37 35,stand,,,
39 6119 3672 180,36 38,stand,,,
40 6118 3428 180,37 33,stand,,,
41 6298 3646 44,32 28 40,stand,,,
42 6237 3650 44,29 28 39,stand,,,
43 6815 3847 26,42 313 321,stand,,,
44 6834 4029 1,41 382,stand,,,
45 6656 4442 0,378 381 382,stand,,,
46 7090 4857 6,283 377 376,stand,,,
47 6854 5295 0,231 283 284 311 311 376,stand,,,
48 6808 5833 18,47 310 311,stand,,,
49 6793 6025 28,46 48 269 2,stand,,,
50 6664 6023 32,47 49 268 271 310,stand,,,
51 6535 6011 21,48 8 52 271 310 268,stand,,,
52 6368 6808 -51,7 51,stand,,,
53 6362 6372 -43,52 268 270 50 293,stand,,,
54 6311 6256 -26,51 53 49,stand,,,
55 6164 6219 -12,52 54 8,stand,,,
56 5991 6264 5,53 59,stand,,,
57 6190 6767 -51,7 56 293,stand,,,
58 5926 6680 -63,55 57 293 294,stand,,,
59 5678 6518 -48,58 56 72 71 294,stand,,,
60 5628 6636 -9,57 60,stand,,,
61 5821 6128 1,54 73 239 214,stand,,,
62 5526 6827 -14,58 286,stand,,,
63 5490 6595 5,62 62 285,stand,,,
64 5385 6562 5,61 61 63 65 70,stand,,,
65 5331 6529 5,64 62,stand,,,
66 5239 6734 5,63 0,stand,,,
67 5312 6698 141,62 66,stand,,,
68 5271 6756 141,65 67,stand,,,
69 5213 6720 141,66 68,stand,,,
70 5336 6534 141,67 69,stand,,,
71 5501 6557 141,68,stand,,,
72 5405 6472 5,62 71,stand,,,
73 5432 6428 -9,70 75 266 57 76,stand,,,
74 5547 6297 -17,57 76 294,stand,,,
75 5689 6107 -9,59 294 214 239 295,stand,,,
76 4967 5917 32,5 77 267,stand,,,
77 5277 6025 10,76 71 295 266 267,stand,,,
78 5420 6205 -9,75 72 71 295,stand,,,
79 4813 5889 27,74 78 97,stand,,,
80 4624 5874 25,77 79 97 240,stand,,,
81 4483 5863 2,78 349 240,stand,,,
82 3171 5991 -4,353 354 355 258 81,stand,,,
83 3210 5555 -6,244 244 245 243 355 80 82 258,stand,,,
84 2956 5019 0,356 83 84 245 81 85,stand,,,
85 2876 4577 13,84 280 280 347 82,stand,,,
86 2991 4608 -5,83 85 280 245 357 82,stand,,,
87 3207 4622 -2,84 275 280 357 82 367,stand,,,
88 3956 4862 75,87 185 198 246,stand,,,
89 4055 4934 52,86 198 88,stand,,,
90 4376 5018 36,289 87 89 199 198,stand,,,
91 4813 4960 5,96 176 88 175 98 256,stand,,,
92 5196 5246 4,91 95 158,stand,,,
93 5352 5205 8,90 92 158 297,stand,,,
94 5521 5205 -19,93 91,stand,,,
95 5669 5266 8,92 94 291,stand,,,
96 5805 5259 3,93 302 301 303,stand,,,
97 5033 5171 3,96 90 164 99,stand,,,
98 4898 5072 0,95 89 98 99 176,stand,,,
99 4678 5717 -13,78 177 240 77 159 290,stand,,,
100 4841 5243 11,96 181 259 290 89,stand,,,
101 5116 4912 9,96 176 260 297 100 95,stand,,,
102 5174 4723 20,101 119 99,stand,,,
103 5126 4494 14,100 102 256 119,stand,,,
104 5059 4290 1,101 103 262 263,stand,,,
105 4992 4125 7,102 104 157 262,stand,,,
106 4974 3842 3,103 277 327 331,stand,,,
107 4791 3015 16,329 333 334 274 23,stand,,,
108 5798 4948 176,107,stand,,,
109 5789 4751 176,106 108,stand,,,
110 5662 4698 176,107 109,stand,,,
111 5628 4793 176,108 110,stand,,,
112 5470 4799 176,111 109 112,stand,,,
113 5472 4698 176,110 17,stand,,,
114 5464 4850 176,110 228,stand,,,
115 5528 5016 89,228 114,stand,,,
116 5533 4891 40,115 113,stand,,,
117 5531 4766 40,114 116 118,stand,,,
118 5611 4823 40,115 16,stand,,,
119 5765 4842 40,16 121 309,stand,,,
120 5415 4693 40,115 120 119,stand,,,
121 5300 4745 10,297 120 100 260 101 118,stand,,,
122 5415 4503 19,263 119 118 19,stand,,,
123 5648 4675 40,117 315,stand,,,
124 3714 3736 48,123 137 136,stand,,,
125 3830 3821 184,122 124,stand,,,
126 3905 3885 184,123 125 129,stand,,,
127 3954 3833 184,124 126,stand,,,
128 3754 3649 184,125 127 128,stand,,,
129 3625 3784 184,126 6,stand,,,
130 3790 3567 184,126,stand,,,
131 3851 3961 184,124 130,stand,,,
132 3882 3983 184,129,stand,,,
133 3789 4031 48,132 133,stand,,,
134 3726 4105 39,131 139 153 275,stand,,,
135 3950 3833 48,131 134,stand,,,
136 3825 3730 48,133 135 136,stand,,,
137 3886 3579 48,134 136,stand,,,
138 3720 3678 48,122 134 135 342,stand,,,
139 3619 3771 48,13 122,stand,,,
140 3501 3808 29,139 140 342 275 348,stand,,,
141 3513 4030 39,138 132 275 344 346,stand,,,
142 3551 3470 8,138 21 341 342 348 141,stand,,,
143 3354 3152 -11,20 343 21 140 341 335,stand,,,
144 3470 4256 42,275 344 367 364,stand,,,
145 3834 4381 76,144 147 363,stand,,,
146 3913 4393 76,143 145 363,stand,,,
147 3979 4408 40,144 146,stand,,,
148 4040 4408 40,145 276 279 338 339,stand,,,
149 3811 4570 76,143 361,stand,,,
150 3763 4258 76,149 362 363,stand,,,
151 3724 4456 212,148 12 152,stand,,,
152 3839 4209 212,12 151,stand,,,
153 3696 4183 212,150 152,stand,,,
154 3632 4580 212,151 149 12,stand,,,
155 3863 4139 40,132 336 339,stand,,,
156 4277 4192 14,155 249 337 338,stand,,,
157 4574 4155 0,154 156 14 174,stand,,,
158 4673 4142 0,155 14 157 174,stand,,,
159 4806 4125 0,156 103 277,stand,,,
160 5376 5322 -5,91 291 90,stand,,,
161 4980 5631 -4,160 292 97 290 296,stand,,,
162 5022 5556 7,159 161,stand,,,
163 5033 5516 7,18 160 165,stand,,,
164 5232 5480 7,18 163,stand,,,
165 5271 5373 7,162 164,stand,,,
166 4988 5286 7,163 95 166,stand,,,
167 4974 5492 7,161 166 167,stand,,,
168 4889 5457 7,165 164,stand,,,
169 5023 5364 143,165 168,stand,,,
170 5058 5264 143,167 169 173,stand,,,
171 5126 5284 143,168 170,stand,,,
172 5031 5541 143,169 171,stand,,,
173 4953 5496 143,172 170,stand,,,
174 4867 5403 143,171 173,stand,,,
175 5008 5238 143,172 168,stand,,,
176 4587 4315 -2,155 249 156 370,stand,,,
177 4681 4769 -13,89 370 254 255,stand,,,
178 4821 4813 14,89 256 99 255 96,stand,,,
179 4576 5578 4,178 97 352 290 240,stand,,,
180 4567 5453 3,177 179,stand,,,
181 4401 5418 12,178 180,stand,,,
182 4415 5258 17,179 289 259 181,stand,,,
183 4739 5196 11,98 180,stand,,,
184 3529 5236 71,15 184,stand,,,
185 3516 4826 69,15 359 365 365,stand,,,
186 3708 5452 67,257 287 182,stand,,,
187 3807 4771 79,86 276 359 186,stand,,,
188 3648 4681 71,185 360 364 365,stand,,,
189 3643 4943 92,11 188 359,stand,,,
190 3645 5116 92,187 189 358,stand,,,
191 3645 5221 92,188 358,stand,,,
192 3891 5073 92,191 197 358,stand,,,
193 3842 5043 92,190 192,stand,,,
194 3693 5039 228,191 193,stand,,,
195 3625 5047 228,192 194,stand,,,
196 3635 5219 228,193 195,stand,,,
197 3731 5242 228,194 196,stand,,,
198 3885 5215 228,195,stand,,,
199 3926 5070 92,190 198 199,stand,,,
200 4008 4987 66,197 87 86 199 88,stand,,,
201 3985 5202 71,197 287 198 289 88,stand,,,
202 6087 5661 32,1 201,stand,,,
203 6121 5743 32,200 202 298,stand,,,
204 6024 5851 168,201 203,stand,,,
205 5980 5891 168,202 206,stand,,,
206 6277 5829 168,205,stand,,,
207 6134 5836 168,204 206,stand,,,
208 6006 5973 168,205 207 203,stand,,,
209 6079 6044 168,206 208,stand,,,
210 6045 6075 168,207,stand,,,
211 6076 6045 32,210,stand,,,
212 6000 5971 32,209 211 215,stand,,,
213 5889 5862 32,210 213,stand,,,
214 5844 5902 58,213 214,stand,,,
215 5858 5888 32,212 211,stand,,,
216 5830 5914 1,212 239 59 73,stand,,,
217 6112 5869 32,210 216 298,stand,,,
218 6240 5862 32,215 298,stand,,,
219 5975 4801 -1,303 308 309,stand,,,
220 5926 3877 -16,272 320 27 326 325 322,stand,,,
221 5484 3924 23,10 314,stand,,,
222 5560 3991 13,221 265 314,stand,,,
223 5433 3999 130,220 222,stand,,,
224 5325 4006 130,221 223 226,stand,,,
225 5333 4082 130,222 224,stand,,,
226 5603 4043 130,223 225,stand,,,
227 5590 3898 130,224 226,stand,,,
228 5318 3931 130,225 222,stand,,,
229 5432 5028 88,228 260 297,stand,,,
230 5468 4984 89,113 112 227,stand,,,
231 4479 3506 0,230 274 340,stand,,,
232 4810 3523 0,229 274 332 329,stand,,,
233 6706.48 5378.76 -1.69762,232 235 45 311 304 312 376,stand,,,
234 6694.47 5070.19 97.125,231 233,stand,,,
235 6690.34 4933.39 97.125,232,stand,,,
236 6449.5 4958.72 97.125,281,stand,,,
237 6605.32 5304.36 -3.47468,231 236 282,stand,,,
238 6585.28 5013.21 -29.2875,235 237 282,stand,,,
239 6352.79 4970.26 -27.875,236 238,stand,,,
240 6271.59 5223.75 41.9955,237 303 312 302 373 372,stand,,,
241 5531.18 5858.22 14.6231,214 267 59 296 73,stand,,,
242 4412.29 5706.74 -5.82266,97 78 79 349 352 177,stand,,,
243 3965.95 5681.82 9.60307,242 258 257 352 351 243,stand,,,
244 3749.53 5569.57 14.3657,241 243,stand,,,
245 3490.84 5584.2 12.6331,242 244 258 81 241,stand,,,
246 3339.42 5428.15 12.3708,243 81 81 245 357,stand,,,
247 3186.25 5262.88 -2.75324,81 84 244 356 82 357,stand,,,
248 4199.3 4804.51 -0.568065,86 247 248 279,stand,,,
249 4399.57 4777.98 -18.5353,246 248 254,stand,,,
250 4384.71 4496.87 11.6079,247 249 252 246,stand,,,
251 4409.8 4292.85 8.95259,248 174 154,stand,,,
252 4382.58 4872.88 131.025,251,stand,,,
253 4379.78 4729.66 127.5,250 253,stand,,,
254 4463.28 4497.98 2.00799,248 253,stand,,,
255 4453.38 4731.23 105.176,252 251,stand,,,
256 4501.72 4845.31 -0.71394,247 175 371 370,stand,,,
257 4763.4 4641.8 -15.6153,175 176,stand,,,
258 4973.54 4712.58 6.82538,101 176 261 89,stand,,,
259 3942.29 5533 44.1852,184 241 352 289,stand,,,
260 3700.13 5751.69 10.2234,243 241 351 80 81,stand,,,
261 4760.88 5332.94 10.1139,98 180 290,stand,,,
262 5248.15 4912.03 25.485,227 297 99 119,stand,,,
263 4881.95 4512.58 -8.42728,256 262,stand,,,
264 4958.39 4291.85 1.54914,261 103 102,stand,,,
265 5279.44 4267.56 42.6264,102 120 19,stand,,,
266 5409.6 4141.75 32.518,19 265,crouch,,,
267 5520.34 4070.16 31.9476,264 220,crouch,,,
268 5252.24 6248.28 22.0025,71 75,stand,,,
269 5104.84 5934.63 28.5553,74 75 239 292,stand,,,
270 6463.01 6186.18 -7.43313,51 48 49,stand,,,
271 6782.75 6257.68 3.26949,47 270,stand,,,
272 6599.56 6355.81 -37.3703,269 51 293,stand,,,
273 6520.13 5837.37 -1.77615,49 304 48,stand,,,
274 6159.56 4167.72 2.41146,218 307 322 325,stand,,,
275 5401.87 3450.57 24.119,318 328 320 25 327 329,stand,,,
276 4573.22 3414.28 -7.80709,229 23 230 329 23 105 335,stand,,,
277 3424.6 4149.92 28.6634,85 138 142 132 139 343 280 346,stand,,,
278 3950.98 4634.19 57.8187,146 185,stand,,,
279 4870.35 3885.57 0.124998,157 104,stand,,,
280 6444.05 5273.13 97.125,281,stand,,,
281 4110.24 4698.68 32.069,146 246,stand,,,
282 2972.5 4264.88 -0.851513,85 275 346 83 84 83 347,stand,,,
283 6408.81 5072.82 97.125,234 278,stand,,,
284 6628.38 5117.05 -26.404,236 235 376,stand,,,
285 7181.62 5157.33 21.9258,44 284 45,stand,,,
286 7236.02 5424.5 9.54441,283 45,stand,,,
287 5388.01 6710.95 5.125,61 286,stand,,,
288 5451.49 6838.04 5.125,285 60,stand,,,
289 3924.55 5397.58 57.7453,184 199 288,stand,,,
290 4307.27 5453.88 20.125,287 289,stand,,,
291 4251.04 5270.16 45.2108,288 88 199 180 352 257,stand,,,
292 4763.36 5577.75 0.834746,259 98 97 159 177,stand,,,
293 5287.4 5643.86 10.0887,158 292 296 93,stand,,,
294 5200.84 5690.18 3.57655,291 159 296 267,stand,,,
295 6202.46 6518.22 -65.6338,51 270 56 294 55,stand,,,
296 5691.51 6386.23 -40.0801,56 73 293 295 72 57,stand,,,
297 5495.53 6067.67 -5.35479,294 75 76 73 296,stand,,,
298 5289.73 5819.28 19.2043,291 292 239 295 159,stand,,,
299 5352.85 5037.48 49.9033,91 260 99 227 119,stand,,,
300 6191.08 5740.29 32.125,201 216 215 299 300,stand,,,
301 6351.15 5715.7 -21.9404,298 300 304,stand,,,
302 6215.99 5611.53 -10.1165,299 298 301 304,stand,,,
303 6027.91 5451.38 33.9855,300 94 302 304 312,stand,,,
304 6098.54 5276.91 3.38047,94 301 303 312 238 373 372,stand,,,
305 6009.1 4976.97 -0.653558,94 302 217 309 238 372,stand,,,
306 6464.66 5588.43 -28.8163,301 271 299 231 311 300,stand,,,
307 6250.22 4655.03 3.40177,306 307 308 374 372 373,stand,,,
308 6352.96 4455.13 28.1916,305 307,stand,,,
309 6177.03 4482.8 35.9389,306 305 272 308 325,stand,,,
310 6083.54 4568.28 -10.3956,305 307 217 324 325,stand,,,
311 5859.55 4832.52 32.125,217 117 303 324,stand,,,
312 6702.63 5882.45 -2.01447,48 46 311 49,stand,,,
313 6743.55 5523.96 -8.66815,231 45 46 310 304 45,stand,,,
314 6267.97 5360.81 53.57,238 231 301 302,stand,,,
315 6566.58 3735.99 50.2363,4 41 321,stand,,,
316 5601.91 3913.01 -5.875,10 219 220 317 326,stand,,,
317 5591.25 4358.68 -3.89991,121 316 323,stand,,,
318 5701.68 4195.36 1.25076,315 317 323,stand,,,
319 5746.6 4015.18 -6.55717,316 314 325 326,stand,,,
320 5377.91 3652.05 43.0941,319 320 327 273,stand,,,
321 5649.36 3674.65 -6.70806,318 320 326,stand,,,
322 5741.01 3553.54 -9.69705,318 319 218 328 273 330,stand,,,
323 6434.82 3827.95 30.9272,28 313 41 322 27 383,stand,,,
324 6217.24 3982.59 7.2533,321 272 28 27 383 218,stand,,,
325 5744.82 4391.25 0.693862,315 316 324 325,stand,,,
326 5837.76 4538.52 -2.61134,323 309 325 308,stand,,,
327 5947.89 4351.41 -8.8244,323 324 272 308 317 218 307,stand,,,
328 5742.28 3854.83 -8.90728,317 319 314 218,stand,,,
329 5029.23 3640.34 4.06237,104 318 273 331 329,stand,,,
330 5674.51 3285.89 -12.5547,273 320 25 24 330,stand,,,
331 5093.37 3362.98 4.7062,24 327 273 331 230 105 274 334,stand,,,
332 5885.04 3200.91 5.10942,26 320 328 25,stand,,,
333 4921.61 3668.68 -0.242781,104 327 329 332,stand,,,
334 4780.96 3712.88 -1.14737,331 230,stand,,,
335 4897.1 2796.7 41.8301,334 105,stand,,,
336 4973.31 3042.79 -0.635588,329 333 24 105,stand,,,
337 4029.61 3314.45 -15.7574,22 274 341 340 21 141,stand,,,
338 4147.88 3719.88 11.3266,153 337 339 340 341,stand,,,
339 4154.1 4056.58 12.5036,154 338 336,stand,,,
340 4144.11 4194.2 26.0651,154 146 339 337,stand,,,
341 4007.89 4191.41 40.0221,146 153 338 336,stand,,,
342 4154.52 3496.72 8.49734,229 335 336 341,stand,,,
343 3795.19 3411.11 10.3555,342 335 336 140 21 141 340,stand,,,
344 3656.68 3631.34 40.125,136 341 140 138 348,stand,,,
345 3126.45 3491.34 -10.987,141 275 20 347 345,stand,,,
346 3559.08 4290.42 42.125,142 139,stand,,,
347 2908.01 3420.23 3.07831,20 346 347 343,stand,,,
348 3260.85 3895.43 5.23389,139 280 347 348 275 345,stand,,,
349 2866.52 3919.48 18.8529,346 345 343 280 83,stand,,,
350 3374.69 3654.87 9.60571,138 140 342 346,stand,,,
351 4143.51 5913.23 27.7404,79 240 350 351,stand,,,
352 4215.88 6062.36 54.5068,349 351,stand,,,
353 3849.85 5977.33 16.114,350 349 258 241 353,stand,,,
354 4136.59 5581.91 15.9469,240 177 257 289 241,stand,,,
355 3541.95 5988.86 18.5764,351 80,stand,,,
356 3089.8 6435.39 14.1844,80 355,stand,,,
357 2922.38 5956.23 -1.9077,80 354 356 81,stand,,,
358 2868.96 5646.26 13.3448,355 82 245,stand,,,
359 3257.74 4865.7 10.7289,85 244 84 245 367,stand,,,
360 3822.32 5128.55 92.125,188 189 190,stand,,,
361 3657.34 4863.36 84.125,187 183 185,stand,,,
362 3627.18 4618.5 62.1055,186 361 365,stand,,,
363 3632.79 4581.74 79.125,360 147 369,stand,,,
364 3707.95 4225.61 76.125,148 368 363,stand,,,
365 3845.14 4228.33 76.125,143 144 148 362,stand,,,
366 3455.71 4579.54 28.5772,186 366 367 142 365,stand,,,
367 3521.18 4677.87 49.6177,186 183 183 364 360,stand,,,
368 3552.4 4369.57 76.2619,364 368 369,stand,,,
369 3359.51 4588.76 21.9452,364 357 85 142,stand,,,
370 3649.7 4333.22 76.375,366 369 362,stand,,,
371 3626.54 4438.52 76.375,366 361 368,stand,,,
372 4576.25 4729.75 8.37526,174 175 371 254,stand,,,
373 4636.88 4872.88 10.6251,254 370,stand,,,
374 6131.58 4928.22 2.20008,303 305 238 302 373,stand,,,
375 6253.93 4907.64 2.00515,238 374 302 305 372 374,stand,,,
376 6369.2 4881.91 8.51466,373 305 373 375,stand,,,
377 6452.13 4879.56 14.6715,3 374 378 377,stand,,,
378 6838.19 5130.92 -0.258625,282 231 45 377 44,stand,,,
379 6806.16 4856.64 13.5233,376 44 375 378,stand,,,
380 6648.44 4802.71 4.10799,375 377 3 379 43 381,stand,,,
381 7122.74 4702.97 7.337,378 380 381,stand,,,
382 7421.88 4685 7.75435,379 381,stand,,,
383 6777.52 4304.81 0.061284,380 379 382 378 43,stand,,,
384 6622.22 4099.89 5.27836,381 43 42 383,stand,,,
385 6356.9 4092.88 4.34532,382 321 322,stand,,,

View File

@@ -0,0 +1,288 @@
287
434.481 -3496.89 51.9359,1 65 158 192,stand,,,
43.7459 -3336.46 32.4429,0 2 173 158 178 180,stand,,,
-336.267 -3483.15 38.9666,1 66 180,stand,,,
-912.411 -1169.36 -39.8834,4 5,stand,,,
-1234.34 -1034.25 -10.3808,3 5 39,stand,,,
-920.02 -1217.71 -39.9569,4 3 6,stand,,,
-941.434 -1292.9 -37.0614,5 7 8,stand,,,
-736.792 -1379.82 0.766693,6 8 185 43 183,stand,,,
-928.938 -1477.46 -32.4334,7 6 9,stand,,,
-1080 -1700.95 -34.1384,8 10,stand,,,
-980.023 -2000.73 -15.7649,9 11 12,stand,,,
-778.332 -2079.98 7.06384,10 12 182 179 183 185,stand,,,
-949.304 -2171.51 -15.875,11 10 13,stand,,,
-1022.46 -2387.93 -15.9435,12 14 22,stand,,,
-1026.96 -2610.87 -15.8353,13 15 23,stand,,,
-1026.96 -2630.36 16.3636,14 16,stand,,,
-985.958 -2757.01 44.5625,15 17 18 66 179,stand,,,
-1274.63 -2838.29 62.4552,16 18 67,stand,,,
-1377.73 -2683.42 38.4285,17 16 19 24 240 68 67,stand,,,
-1427.01 -2327.63 12.0884,18 24 20 237 238 240,stand,,,
-1262.33 -2270.45 24.9589,21 19 25,stand,,,
-1275.65 -2373.55 16.125,20 22,stand,,,
-1273.54 -2393.13 -15.875,21 13 23,stand,,,
-1299.87 -2577.91 -15.875,22 24 14,stand,,,
-1319.47 -2577.91 16.125,23 18 19 240,stand,,,
-1189.92 -1915.04 31.0927,20 26 27,stand,,,
-1306.3 -1680.9 51.6882,25 27 235 237 239,stand,,,
-1154.75 -1408.92 40.8439,26 25 28,stand,,,
-1184.06 -1151.08 28.563,29 27,stand,,,
-1408.13 -1023.61 32.6884,28 30 31,stand,,,
-1575.16 -1068.86 34.1934,29 32 229 230,stand,,,
-1498.24 -748.929 24.125,29 32 33,stand,,,
-1697.85 -860.622 12.4074,31 35 30 229 228,stand,,,
-1493.48 -729.961 -6.72728,31 34 38,stand,,,
-1530.87 -664.524 -0.851873,33 35 38,stand,,,
-1844.72 -706.094 22.7684,34 32 196 228 229,stand,,,
-1408.87 -537.266 -12.7136,37 38,stand,,,
-1330.08 -553.422 -10.5937,36 38 40,stand,,,
-1414.11 -662.56 -14.7226,36 37 33 34 39 195,stand,,,
-1376.52 -885.656 -15.823,38 4,stand,,,
-1047.2 -437.125 -22.7161,37 41,stand,,,
-672.413 -549.735 -47.0644,40 42,stand,,,
-499.372 -726.158 -55.8929,41 43 44,stand,,,
-422.816 -932.213 -11.454,42 44 7 186 185 189 193 194,stand,,,
-338.75 -732.328 -55.8927,43 42 45,stand,,,
-54.3638 -697.59 -40.3711,44 46,stand,,,
81.0095 -746.487 -23.7548,45 47,stand,,,
283.781 -745.672 -23.6066,46 48,stand,,,
582.224 -813.017 -23.875,47 49 52 50 51,stand,,,
638.896 -683.051 -10.2385,48 50,stand,,,
775.852 -679.292 -18.1692,49 51 48 52 54,stand,,,
848.364 -900.753 -39.875,50 52 48,stand,,,
669.52 -964.875 -20.3092,51 53 48 50,stand,,,
669.667 -984.429 13.0298,52 186 187,stand,,,
799.65 -416.137 -13.875,50 55 56,stand,,,
692.896 -313.513 -13.875,54 56,stand,,,
792.216 -193.212 -13.875,55 54 57,stand,,,
791.462 48.8392 5.92654,56 58 59 201 215,stand,,,
675.126 46.1349 15.7919,59 201 57,stand,,,
690.635 334.72 16.0315,58 57 201 203,stand,,,
3864.59 -3080.06 -10.5134,61 100 102 101,stand,,,
3454.8 -3207.18 33.4113,60 62 101,stand,,,
2801.73 -3427.57 47.0099,61 63 164 155,stand,,,
2214.06 -3541.12 53.3992,62 64 164 152 150,stand,,,
1430.47 -3508.98 37.2852,63 65 150 151 156,stand,,,
840.955 -3461.64 59.6049,64 0 158 156 152,stand,,,
-750.89 -3225.48 31.9599,2 67 177 16 180 179 181,stand,,,
-1368.93 -3046.39 61.8661,66 68 18 17,stand,,,
-1746.91 -2681.24 44.3873,67 69 18 240,stand,,,
-2251.95 -2206.57 39.1132,68 70 237 236 240,stand,,,
-2348.05 -1719.27 8.46388,69 71 227 236,stand,,,
-2599.41 -1285.7 41.6455,70 72 226 227,stand,,,
-2688.68 -562.26 35.724,71 73 225 241,stand,,,
-2747.74 -171.562 32.2291,72 74 225 241 242 278 277,stand,,,
-3407.44 61.1595 32.3387,73 75 243 278,stand,,,
-3416.68 970.154 36.4476,74 76 78 77 243 244,stand,,,
-3814.06 990.774 47.5842,75 77,stand,,,
-3561.44 1047.73 40.4858,76 78 75,stand,,,
-3429.89 1149.69 43.4245,77 75 79 245,stand,,,
-3408.25 1480.08 45.4139,78 81 80 246,stand,,,
-3442.5 1604.88 41.2335,79 81 82 246 276,stand,,,
-3786.27 1469.25 39.834,79 80,stand,,,
-3123.36 1837.54 34.337,80 83 84 246 276,stand,,,
-3040.92 2046.8 40.4001,82 84 86,stand,,,
-2950.74 1782.37 33.0157,83 85 82 248 246,stand,,,
-2717.76 1769.77 36.148,84 86 87 248 251,stand,,,
-2845.78 1981.8 32.8646,85 83,stand,,,
-2240.85 1500.95 82.6314,85 88 253 250 255 251,stand,,,
-1726.71 1816.33 34.1627,87 89 255 256,stand,,,
-1099.42 2165.63 45.057,88 90 256,stand,,,
-348.763 2225.29 4.35022,89 91 257 256,stand,,,
553.846 1855.44 -64.6165,90 92 257 209 259,stand,,,
1545.76 1836.41 -62.5815,91 93 210 209 258,stand,,,
1943.55 1805.02 -48.4079,92 94 210 258 268,stand,,,
2905.11 1542.36 -68.7127,93 95 268 267 273,stand,,,
3596.03 1076.75 -50.3299,94 96 274 273 265,stand,,,
3978.79 212.963 -38.2924,95 97 110 106 274,stand,,,
4100.85 -629.298 4.92864,96 98 106 110,stand,,,
3929.7 -1176.02 -24.7862,97 99 105 106 108,stand,,,
4104.92 -1824.12 11.4692,98 100 104 105,stand,,,
4109.74 -2450.94 53.0531,99 60 102,stand,,,
3317.56 -2655.82 36.9781,61 102 103 167 168 60,stand,,,
3873.1 -2487.27 64.6452,100 101 104 60,stand,,,
3421.45 -2162.43 12.5475,101 104 105 107 167,stand,,,
3805.64 -2143.26 25.7285,103 102 99 105,stand,,,
3607.16 -1626.83 -43.2519,99 103 98 106 104 107 108,stand,,,
3757.52 -631.18 -73.3459,98 105 109 97 96 110 108,stand,,,
3054.76 -1663.29 -8.26293,103 105 143 144 146 167 145,stand,,,
3238.06 -1261.79 14.9014,105 109 143 98 106,stand,,,
3257.85 -493.919 30.2519,108 106 110 139 140 140 138,stand,,,
3462.56 21.6477 -65.0877,97 111 96 109 106 272 265 274,stand,,,
2861.93 -1.87414 25.0148,110 140 264 265 272,stand,,,
1179.34 -768.102 -36.875,113 119,stand,,,
1180.82 -890.94 -37.875,112 114 115 116,stand,,,
1404.35 -901.136 -39.6158,113 120 121 121 122,stand,,,
1228.87 -1076.09 -35.875,113 116 118,stand,,,
1140.32 -995.221 -35.875,113 117 115 118,stand,,,
993.828 -905.463 -35.875,116 118 119 119,stand,,,
1062.07 -1028.73 -35.875,117 115 116,stand,,,
1072.33 -805.968 -37.875,117 112 117,stand,,,
1408.73 -972.473 -38.3921,114 122,stand,,,
1408.58 -814.125 -39.2877,114 114,stand,,,
1495.73 -907.778 -38.8561,120 114 124,stand,,,
1704.02 -1050.87 -2.32493,124 131 132,stand,,,
1652.08 -914.657 -20.399,123 122 125 131,stand,,,
1631.51 -557.805 -15.8766,124 126 129,stand,,,
1627.24 -538.676 16.125,125 127,stand,,,
1414.94 -434.859 82.989,126 128,stand,,,
2065.68 -447.612 58.6355,127 130 139,stand,,,
1817.52 -561.22 -15.8351,130 125 131,stand,,,
1837.07 -561.22 16.125,128 129,stand,,,
1789.38 -882.469 -15.875,129 123 124 133,stand,,,
1704.73 -1080.66 16.125,123 275 147 166 280,stand,,,
2197.72 -923.148 -39.9031,131 134 281,stand,,,
2405.79 -968.278 -39.9367,133 135,stand,,,
2822.7 -841.706 -15.875,134 136,stand,,,
2945.52 -890.802 -9.41905,137 135 141 144 142,stand,,,
2968.12 -727.27 -15.731,136 138,stand,,,
2963.66 -708.197 16.125,137 139 140 109,stand,,,
2786.7 -623.612 39.8187,138 128 109,stand,,,
3173.99 -306.575 35.5305,138 109 111 109 265,stand,,,
3141.99 -1018.66 -15.875,136 142,stand,,,
3105.44 -1080.52 -15.875,141 136 143,stand,,,
3106.3 -1315.49 -9.63004,144 142 107 145 108 282,stand,,,
2997.28 -1461.85 -11.0465,143 136 107 145 146,stand,,,
2443.12 -1351.05 83.3754,144 143 146 166 107 275 280 282,stand,,,
2341.41 -1864.8 -12.8673,107 145 166 153 165 167 149 275 144,stand,,,
1474.54 -1571.41 39.5056,148 166 132 275 149 280,stand,,,
1124.16 -1930.05 11.9564,147 149 166 170 161 169,stand,,,
1472.31 -2374.88 35.3822,148 150 153 146 161 172 147 169 286,stand,,,
1735.84 -3027.42 32.1229,149 64 155 152 164 172 63 284 283,stand,,,
1258.34 -3119.33 39.7984,64 152 156,stand,,,
1475.3 -3124.5 32.125,151 150 63 172 65,stand,,,
2109.07 -2470.68 34.5717,149 154 166 146 165 283,stand,,,
2019.13 -2763.05 35.8302,153 155 165,stand,,,
2308.99 -2997.07 32.1217,154 150 62 165 168,stand,,,
984.473 -3203.81 44.8253,151 157 158 159 163 64 65,stand,,,
637.634 -3119.32 40.2083,156 158 163,stand,,,
653.564 -3284.33 56.436,157 156 65 0 173 163 1,stand,,,
1036.88 -2767.13 34.5991,156 160 163,stand,,,
873.176 -2767.13 32.125,159 161 162 163,stand,,,
873.582 -2700.5 27.9693,160 149 169 148 171 191 190,stand,,,
627.125 -3073.4 33.2678,160 163,stand,,,
950.098 -3100.15 23.1905,162 157 156 160 159 158,stand,,,
2355.28 -3280.5 32.2619,63 150 62 168,stand,,,
2410.37 -2494.62 32.125,155 154 153 146 168,stand,,,
1869.46 -1725.02 24.7089,153 146 147 148 145 275 132,stand,,,
2925.8 -2208.21 68.0889,146 103 101 107 168,stand,,,
2929.02 -2740.25 5.76819,167 155 164 101 165,stand,,,
794.913 -2092.79 15.4501,161 170 148 190 191 149,stand,,,
822.78 -1643.77 23.5716,169 148 187 188,stand,,,
1106.03 -2739.11 42.3487,161 172,stand,,,
1490.62 -2734.29 37.8144,171 150 149 152 286,stand,,,
248.834 -3162.22 35.2591,1 174 178 158 192,stand,,,
77.3768 -2814.13 32.1076,173 175 192,stand,,,
-127.06 -2793.14 50.125,174 176 177 178 184 180 191,stand,,,
-221.123 -2719.13 46.7492,175 177,stand,,,
-400.415 -2908.84 33.7605,176 175 178 66 180 181,stand,,,
-115.139 -3102.1 31.7095,175 173 1 177,stand,,,
-832.047 -2732.83 36.8291,16 11 66 181 182,stand,,,
-369.203 -3236.07 32.1118,66 1 2 177 175,stand,,,
-549.485 -2798.36 37.4473,177 182 66 179,stand,,,
-541.933 -2470.95 40.1247,181 11 179 184 183,stand,,,
-310.442 -2158.86 10.4606,184 182 11 188 185 189 7 190,stand,,,
11.4304 -2444.16 32.8803,183 182 188 175 191,stand,,,
-431.074 -1630.58 15.8081,11 7 183 43 193,stand,,,
206.569 -1166.37 41.6725,43 53 187 188 193,stand,,,
706.604 -1421.64 13.9323,53 170 186 188 190 193,stand,,,
147.219 -1880.76 60.8123,186 187 170 183 189 184 191 190,stand,,,
-139.72 -1732.49 21.8723,43 188 193 183,stand,,,
560.674 -2032.31 28.8322,169 191 188 187 193 161 183,stand,,,
575.134 -2676.77 40.4477,190 169 161 192 175 184 188,stand,,,
533.614 -2835.36 41.8316,191 174 173 0,stand,,,
43.0966 -1435.45 41.8848,187 189 43 190 186 185,stand,,,
-760.56 -992.941 39.9124,43 195,stand,,,
-1350.39 -721.703 24.125,194 38,stand,,,
-2032.81 -653.345 33.5851,35 197 225 226 241 228 229,stand,,,
-2099.47 -49.1303 10.854,196 198 223 224 225 250,stand,,,
-1276.81 186.993 38.1685,197 199 221 223 222,stand,,,
-623.282 78.7743 77.6454,198 200 220 221,stand,,,
91.6239 178.633 25.8306,199 202 219 220 252,stand,,,
617.915 195.865 22.2754,202 58 59 57,stand,,,
598.995 200.754 57.125,200 201 219,stand,,,
815.168 665.482 -24.1335,59 204 216 218,stand,,,
879.918 1095 -26.9129,203 205 207 206,stand,,,
990.284 1219.1 -19.0505,204 206 207,stand,,,
905.726 1322.3 -24.2596,205 207 208 204,stand,,,
779.096 1227.83 -24.8264,206 204 205,stand,,,
893.745 1347.47 9.125,206 209 259,stand,,,
1086.5 1543.67 -59.7345,208 210 91 211 92 259,stand,,,
1423.84 1510.13 -92.8088,209 92 211 93 258,stand,,,
1283.67 1297.9 -39.4883,210 212 209 258,stand,,,
1130.91 803.702 -31.9772,211 213 217 258 269,stand,,,
1107.27 228.543 38.859,212 214 263 269,stand,,,
982.51 65.6175 87.036,213 215,stand,,,
802.802 52.7786 57.125,214 57,stand,,,
915.972 784.052 -19.6487,203 217,stand,,,
931.68 778.888 9.125,216 212,stand,,,
778.364 677.725 9.125,203 219 262,stand,,,
330.874 728.637 -73.2004,218 220 200 202 262,stand,,,
-158.03 736.211 -68.1939,219 199 200 222 262 260,stand,,,
-1222.43 575.985 -61.0197,199 222 198 223 252 253 254,stand,,,
-750.316 761.955 -51.0973,220 221 198 252 254 261 260,stand,,,
-1742.05 587.101 -41.8939,221 197 250 224 251 198 254,stand,,,
-2397.66 346.4 -3.22561,197 225 242 223 250,stand,,,
-2420.82 -330.713 4.03698,224 72 73 196 241 197,stand,,,
-2288.09 -973.053 14.8678,196 71 228 229 241,stand,,,
-2327.75 -1481.05 28.1918,71 228 236 70,stand,,,
-2044.14 -1300.01 43.0377,227 229 226 236 32 35 196,stand,,,
-1738.33 -1123.84 35.1582,228 30 234 236 32 35 226 241 196 279,stand,,,
-1496.69 -1167.83 46.3071,30 231 232,stand,,,
-1312.13 -1243.87 50.125,230,stand,,,
-1447.36 -1348.83 41.2481,230 233 234 279,stand,,,
-1312.13 -1282.13 50.125,232 234,stand,,,
-1566.5 -1595.88 50.125,233 235 232 229,stand,,,
-1566.97 -1667.97 38.5014,234 237 26,stand,,,
-1894.49 -1747.43 2.78535,229 227 70 237 69 240 228,stand,,,
-1675.24 -1878.6 -7.67982,236 235 26 19 239 69 240,stand,,,
-1338.42 -1947 32.4434,19 239,stand,,,
-1414.43 -1809.61 36.0946,238 26 237,stand,,,
-1671.5 -2354.79 32.2795,236 237 19 69 18 68 24,stand,,,
-2360.98 -546.592 -2.31344,226 225 72 196 229 73,stand,,,
-2570.89 337.986 26.2356,224 73 243 249 277,stand,,,
-3011.82 553.183 32.6441,242 75 249 74 278,stand,,,
-2958.8 978.754 41.7884,75 245 247 249,stand,,,
-3087.53 1078.31 41.3272,78 244 246 247,stand,,,
-2986.11 1383.81 23.4192,245 247 82 248 84 80 79,stand,,,
-2812.56 1225.18 20.581,246 248 244 245 249,stand,,,
-2747.86 1428.09 16.9429,247 85 246 84 251,stand,,,
-2503.59 1063.02 -2.73322,247 243 242 250 251 253 277 244,stand,,,
-2316.68 923.803 -23.4784,249 223 224 251 87 253 255 197,stand,,,
-2450.39 1236.24 -0.197223,250 85 249 248 223 253 87 255,stand,,,
-198.104 382.788 12.6056,222 200 221,stand,,,
-1547.73 1064.96 16.9802,221 87 250 251 249 255,stand,,,
-1280.95 1130.83 62.7136,222 221 255 256 223 261,stand,,,
-1638.61 1353.03 -7.40217,254 87 251 253 88 256 250,stand,,,
-896.059 1829.38 -50.6025,88 89 254 257 261 90 255,stand,,,
10.9914 1543.73 -103.636,256 91 260 261 259 262 90,stand,,,
1650.97 1279.59 -103.877,93 211 210 268 212 269 92 270,stand,,,
686.294 1629.89 -87.4188,208 209 91 257 262,stand,,,
-305.732 1172.22 -66.4243,257 261 220 222 262,stand,,,
-776.36 1259.5 66.959,260 256 222 254 257,stand,,,
366.424 1112.06 -100.575,218 219 259 257 220 260,stand,,,
1790.59 31.0692 71.8674,213 264 269 271,stand,,,
2471 29.9673 7.99284,263 111 271 272 266,stand,,,
3217.68 562.524 -97.5375,111 266 110 273 274 95 140,stand,,,
2722.43 729.341 -139.001,265 267 268 271 272 270 264,stand,,,
2667.45 1193.56 -131.246,266 268 273 94,stand,,,
2346.53 1486.49 -72.5859,267 258 270 94 93 266,stand,,,
1612.45 688.883 -104.332,212 263 213 258 270 271,stand,,,
2197.05 971.823 -22.1719,258 268 271 269 266,stand,,,
2215.1 489.356 -16.9384,266 270 269 263 264 272,stand,,,
2928.08 362.115 -72.7782,264 111 266 271 110 273,stand,,,
3020.86 976.441 -122.08,265 267 94 274 95 272,stand,,,
3590.01 565.454 -112.473,273 95 110 96 265,stand,,,
2121.24 -1418.62 70.3548,166 146 145 132 147 280,stand,,,
-3413.07 1856.03 38.6056,80 82,stand,,,
-2706.33 71.2617 32.125,242 278 73 249,stand,,,
-2892.61 212.037 39.3663,277 243 73 74,stand,,,
-1579.38 -1422.52 44.1634,229 232,stand,,,
2143.8 -1094.93 33.8226,132 145 147 281 275 282,stand,,,
2182.76 -963.027 16.4606,133 280,stand,,,
2728.6 -1259.54 36.8695,280 143 145,stand,,,
1887.73 -2586.19 30.3914,153 150 285 284,stand,,,
1974.2 -2711.57 37.8055,150 283,stand,,,
1719.13 -2586.07 37.6685,283 286,stand,,,
1658.03 -2586.93 42.6203,285 149 172,stand,,,
1 287
2 434.481 -3496.89 51.9359,1 65 158 192,stand,,,
3 43.7459 -3336.46 32.4429,0 2 173 158 178 180,stand,,,
4 -336.267 -3483.15 38.9666,1 66 180,stand,,,
5 -912.411 -1169.36 -39.8834,4 5,stand,,,
6 -1234.34 -1034.25 -10.3808,3 5 39,stand,,,
7 -920.02 -1217.71 -39.9569,4 3 6,stand,,,
8 -941.434 -1292.9 -37.0614,5 7 8,stand,,,
9 -736.792 -1379.82 0.766693,6 8 185 43 183,stand,,,
10 -928.938 -1477.46 -32.4334,7 6 9,stand,,,
11 -1080 -1700.95 -34.1384,8 10,stand,,,
12 -980.023 -2000.73 -15.7649,9 11 12,stand,,,
13 -778.332 -2079.98 7.06384,10 12 182 179 183 185,stand,,,
14 -949.304 -2171.51 -15.875,11 10 13,stand,,,
15 -1022.46 -2387.93 -15.9435,12 14 22,stand,,,
16 -1026.96 -2610.87 -15.8353,13 15 23,stand,,,
17 -1026.96 -2630.36 16.3636,14 16,stand,,,
18 -985.958 -2757.01 44.5625,15 17 18 66 179,stand,,,
19 -1274.63 -2838.29 62.4552,16 18 67,stand,,,
20 -1377.73 -2683.42 38.4285,17 16 19 24 240 68 67,stand,,,
21 -1427.01 -2327.63 12.0884,18 24 20 237 238 240,stand,,,
22 -1262.33 -2270.45 24.9589,21 19 25,stand,,,
23 -1275.65 -2373.55 16.125,20 22,stand,,,
24 -1273.54 -2393.13 -15.875,21 13 23,stand,,,
25 -1299.87 -2577.91 -15.875,22 24 14,stand,,,
26 -1319.47 -2577.91 16.125,23 18 19 240,stand,,,
27 -1189.92 -1915.04 31.0927,20 26 27,stand,,,
28 -1306.3 -1680.9 51.6882,25 27 235 237 239,stand,,,
29 -1154.75 -1408.92 40.8439,26 25 28,stand,,,
30 -1184.06 -1151.08 28.563,29 27,stand,,,
31 -1408.13 -1023.61 32.6884,28 30 31,stand,,,
32 -1575.16 -1068.86 34.1934,29 32 229 230,stand,,,
33 -1498.24 -748.929 24.125,29 32 33,stand,,,
34 -1697.85 -860.622 12.4074,31 35 30 229 228,stand,,,
35 -1493.48 -729.961 -6.72728,31 34 38,stand,,,
36 -1530.87 -664.524 -0.851873,33 35 38,stand,,,
37 -1844.72 -706.094 22.7684,34 32 196 228 229,stand,,,
38 -1408.87 -537.266 -12.7136,37 38,stand,,,
39 -1330.08 -553.422 -10.5937,36 38 40,stand,,,
40 -1414.11 -662.56 -14.7226,36 37 33 34 39 195,stand,,,
41 -1376.52 -885.656 -15.823,38 4,stand,,,
42 -1047.2 -437.125 -22.7161,37 41,stand,,,
43 -672.413 -549.735 -47.0644,40 42,stand,,,
44 -499.372 -726.158 -55.8929,41 43 44,stand,,,
45 -422.816 -932.213 -11.454,42 44 7 186 185 189 193 194,stand,,,
46 -338.75 -732.328 -55.8927,43 42 45,stand,,,
47 -54.3638 -697.59 -40.3711,44 46,stand,,,
48 81.0095 -746.487 -23.7548,45 47,stand,,,
49 283.781 -745.672 -23.6066,46 48,stand,,,
50 582.224 -813.017 -23.875,47 49 52 50 51,stand,,,
51 638.896 -683.051 -10.2385,48 50,stand,,,
52 775.852 -679.292 -18.1692,49 51 48 52 54,stand,,,
53 848.364 -900.753 -39.875,50 52 48,stand,,,
54 669.52 -964.875 -20.3092,51 53 48 50,stand,,,
55 669.667 -984.429 13.0298,52 186 187,stand,,,
56 799.65 -416.137 -13.875,50 55 56,stand,,,
57 692.896 -313.513 -13.875,54 56,stand,,,
58 792.216 -193.212 -13.875,55 54 57,stand,,,
59 791.462 48.8392 5.92654,56 58 59 201 215,stand,,,
60 675.126 46.1349 15.7919,59 201 57,stand,,,
61 690.635 334.72 16.0315,58 57 201 203,stand,,,
62 3864.59 -3080.06 -10.5134,61 100 102 101,stand,,,
63 3454.8 -3207.18 33.4113,60 62 101,stand,,,
64 2801.73 -3427.57 47.0099,61 63 164 155,stand,,,
65 2214.06 -3541.12 53.3992,62 64 164 152 150,stand,,,
66 1430.47 -3508.98 37.2852,63 65 150 151 156,stand,,,
67 840.955 -3461.64 59.6049,64 0 158 156 152,stand,,,
68 -750.89 -3225.48 31.9599,2 67 177 16 180 179 181,stand,,,
69 -1368.93 -3046.39 61.8661,66 68 18 17,stand,,,
70 -1746.91 -2681.24 44.3873,67 69 18 240,stand,,,
71 -2251.95 -2206.57 39.1132,68 70 237 236 240,stand,,,
72 -2348.05 -1719.27 8.46388,69 71 227 236,stand,,,
73 -2599.41 -1285.7 41.6455,70 72 226 227,stand,,,
74 -2688.68 -562.26 35.724,71 73 225 241,stand,,,
75 -2747.74 -171.562 32.2291,72 74 225 241 242 278 277,stand,,,
76 -3407.44 61.1595 32.3387,73 75 243 278,stand,,,
77 -3416.68 970.154 36.4476,74 76 78 77 243 244,stand,,,
78 -3814.06 990.774 47.5842,75 77,stand,,,
79 -3561.44 1047.73 40.4858,76 78 75,stand,,,
80 -3429.89 1149.69 43.4245,77 75 79 245,stand,,,
81 -3408.25 1480.08 45.4139,78 81 80 246,stand,,,
82 -3442.5 1604.88 41.2335,79 81 82 246 276,stand,,,
83 -3786.27 1469.25 39.834,79 80,stand,,,
84 -3123.36 1837.54 34.337,80 83 84 246 276,stand,,,
85 -3040.92 2046.8 40.4001,82 84 86,stand,,,
86 -2950.74 1782.37 33.0157,83 85 82 248 246,stand,,,
87 -2717.76 1769.77 36.148,84 86 87 248 251,stand,,,
88 -2845.78 1981.8 32.8646,85 83,stand,,,
89 -2240.85 1500.95 82.6314,85 88 253 250 255 251,stand,,,
90 -1726.71 1816.33 34.1627,87 89 255 256,stand,,,
91 -1099.42 2165.63 45.057,88 90 256,stand,,,
92 -348.763 2225.29 4.35022,89 91 257 256,stand,,,
93 553.846 1855.44 -64.6165,90 92 257 209 259,stand,,,
94 1545.76 1836.41 -62.5815,91 93 210 209 258,stand,,,
95 1943.55 1805.02 -48.4079,92 94 210 258 268,stand,,,
96 2905.11 1542.36 -68.7127,93 95 268 267 273,stand,,,
97 3596.03 1076.75 -50.3299,94 96 274 273 265,stand,,,
98 3978.79 212.963 -38.2924,95 97 110 106 274,stand,,,
99 4100.85 -629.298 4.92864,96 98 106 110,stand,,,
100 3929.7 -1176.02 -24.7862,97 99 105 106 108,stand,,,
101 4104.92 -1824.12 11.4692,98 100 104 105,stand,,,
102 4109.74 -2450.94 53.0531,99 60 102,stand,,,
103 3317.56 -2655.82 36.9781,61 102 103 167 168 60,stand,,,
104 3873.1 -2487.27 64.6452,100 101 104 60,stand,,,
105 3421.45 -2162.43 12.5475,101 104 105 107 167,stand,,,
106 3805.64 -2143.26 25.7285,103 102 99 105,stand,,,
107 3607.16 -1626.83 -43.2519,99 103 98 106 104 107 108,stand,,,
108 3757.52 -631.18 -73.3459,98 105 109 97 96 110 108,stand,,,
109 3054.76 -1663.29 -8.26293,103 105 143 144 146 167 145,stand,,,
110 3238.06 -1261.79 14.9014,105 109 143 98 106,stand,,,
111 3257.85 -493.919 30.2519,108 106 110 139 140 140 138,stand,,,
112 3462.56 21.6477 -65.0877,97 111 96 109 106 272 265 274,stand,,,
113 2861.93 -1.87414 25.0148,110 140 264 265 272,stand,,,
114 1179.34 -768.102 -36.875,113 119,stand,,,
115 1180.82 -890.94 -37.875,112 114 115 116,stand,,,
116 1404.35 -901.136 -39.6158,113 120 121 121 122,stand,,,
117 1228.87 -1076.09 -35.875,113 116 118,stand,,,
118 1140.32 -995.221 -35.875,113 117 115 118,stand,,,
119 993.828 -905.463 -35.875,116 118 119 119,stand,,,
120 1062.07 -1028.73 -35.875,117 115 116,stand,,,
121 1072.33 -805.968 -37.875,117 112 117,stand,,,
122 1408.73 -972.473 -38.3921,114 122,stand,,,
123 1408.58 -814.125 -39.2877,114 114,stand,,,
124 1495.73 -907.778 -38.8561,120 114 124,stand,,,
125 1704.02 -1050.87 -2.32493,124 131 132,stand,,,
126 1652.08 -914.657 -20.399,123 122 125 131,stand,,,
127 1631.51 -557.805 -15.8766,124 126 129,stand,,,
128 1627.24 -538.676 16.125,125 127,stand,,,
129 1414.94 -434.859 82.989,126 128,stand,,,
130 2065.68 -447.612 58.6355,127 130 139,stand,,,
131 1817.52 -561.22 -15.8351,130 125 131,stand,,,
132 1837.07 -561.22 16.125,128 129,stand,,,
133 1789.38 -882.469 -15.875,129 123 124 133,stand,,,
134 1704.73 -1080.66 16.125,123 275 147 166 280,stand,,,
135 2197.72 -923.148 -39.9031,131 134 281,stand,,,
136 2405.79 -968.278 -39.9367,133 135,stand,,,
137 2822.7 -841.706 -15.875,134 136,stand,,,
138 2945.52 -890.802 -9.41905,137 135 141 144 142,stand,,,
139 2968.12 -727.27 -15.731,136 138,stand,,,
140 2963.66 -708.197 16.125,137 139 140 109,stand,,,
141 2786.7 -623.612 39.8187,138 128 109,stand,,,
142 3173.99 -306.575 35.5305,138 109 111 109 265,stand,,,
143 3141.99 -1018.66 -15.875,136 142,stand,,,
144 3105.44 -1080.52 -15.875,141 136 143,stand,,,
145 3106.3 -1315.49 -9.63004,144 142 107 145 108 282,stand,,,
146 2997.28 -1461.85 -11.0465,143 136 107 145 146,stand,,,
147 2443.12 -1351.05 83.3754,144 143 146 166 107 275 280 282,stand,,,
148 2341.41 -1864.8 -12.8673,107 145 166 153 165 167 149 275 144,stand,,,
149 1474.54 -1571.41 39.5056,148 166 132 275 149 280,stand,,,
150 1124.16 -1930.05 11.9564,147 149 166 170 161 169,stand,,,
151 1472.31 -2374.88 35.3822,148 150 153 146 161 172 147 169 286,stand,,,
152 1735.84 -3027.42 32.1229,149 64 155 152 164 172 63 284 283,stand,,,
153 1258.34 -3119.33 39.7984,64 152 156,stand,,,
154 1475.3 -3124.5 32.125,151 150 63 172 65,stand,,,
155 2109.07 -2470.68 34.5717,149 154 166 146 165 283,stand,,,
156 2019.13 -2763.05 35.8302,153 155 165,stand,,,
157 2308.99 -2997.07 32.1217,154 150 62 165 168,stand,,,
158 984.473 -3203.81 44.8253,151 157 158 159 163 64 65,stand,,,
159 637.634 -3119.32 40.2083,156 158 163,stand,,,
160 653.564 -3284.33 56.436,157 156 65 0 173 163 1,stand,,,
161 1036.88 -2767.13 34.5991,156 160 163,stand,,,
162 873.176 -2767.13 32.125,159 161 162 163,stand,,,
163 873.582 -2700.5 27.9693,160 149 169 148 171 191 190,stand,,,
164 627.125 -3073.4 33.2678,160 163,stand,,,
165 950.098 -3100.15 23.1905,162 157 156 160 159 158,stand,,,
166 2355.28 -3280.5 32.2619,63 150 62 168,stand,,,
167 2410.37 -2494.62 32.125,155 154 153 146 168,stand,,,
168 1869.46 -1725.02 24.7089,153 146 147 148 145 275 132,stand,,,
169 2925.8 -2208.21 68.0889,146 103 101 107 168,stand,,,
170 2929.02 -2740.25 5.76819,167 155 164 101 165,stand,,,
171 794.913 -2092.79 15.4501,161 170 148 190 191 149,stand,,,
172 822.78 -1643.77 23.5716,169 148 187 188,stand,,,
173 1106.03 -2739.11 42.3487,161 172,stand,,,
174 1490.62 -2734.29 37.8144,171 150 149 152 286,stand,,,
175 248.834 -3162.22 35.2591,1 174 178 158 192,stand,,,
176 77.3768 -2814.13 32.1076,173 175 192,stand,,,
177 -127.06 -2793.14 50.125,174 176 177 178 184 180 191,stand,,,
178 -221.123 -2719.13 46.7492,175 177,stand,,,
179 -400.415 -2908.84 33.7605,176 175 178 66 180 181,stand,,,
180 -115.139 -3102.1 31.7095,175 173 1 177,stand,,,
181 -832.047 -2732.83 36.8291,16 11 66 181 182,stand,,,
182 -369.203 -3236.07 32.1118,66 1 2 177 175,stand,,,
183 -549.485 -2798.36 37.4473,177 182 66 179,stand,,,
184 -541.933 -2470.95 40.1247,181 11 179 184 183,stand,,,
185 -310.442 -2158.86 10.4606,184 182 11 188 185 189 7 190,stand,,,
186 11.4304 -2444.16 32.8803,183 182 188 175 191,stand,,,
187 -431.074 -1630.58 15.8081,11 7 183 43 193,stand,,,
188 206.569 -1166.37 41.6725,43 53 187 188 193,stand,,,
189 706.604 -1421.64 13.9323,53 170 186 188 190 193,stand,,,
190 147.219 -1880.76 60.8123,186 187 170 183 189 184 191 190,stand,,,
191 -139.72 -1732.49 21.8723,43 188 193 183,stand,,,
192 560.674 -2032.31 28.8322,169 191 188 187 193 161 183,stand,,,
193 575.134 -2676.77 40.4477,190 169 161 192 175 184 188,stand,,,
194 533.614 -2835.36 41.8316,191 174 173 0,stand,,,
195 43.0966 -1435.45 41.8848,187 189 43 190 186 185,stand,,,
196 -760.56 -992.941 39.9124,43 195,stand,,,
197 -1350.39 -721.703 24.125,194 38,stand,,,
198 -2032.81 -653.345 33.5851,35 197 225 226 241 228 229,stand,,,
199 -2099.47 -49.1303 10.854,196 198 223 224 225 250,stand,,,
200 -1276.81 186.993 38.1685,197 199 221 223 222,stand,,,
201 -623.282 78.7743 77.6454,198 200 220 221,stand,,,
202 91.6239 178.633 25.8306,199 202 219 220 252,stand,,,
203 617.915 195.865 22.2754,202 58 59 57,stand,,,
204 598.995 200.754 57.125,200 201 219,stand,,,
205 815.168 665.482 -24.1335,59 204 216 218,stand,,,
206 879.918 1095 -26.9129,203 205 207 206,stand,,,
207 990.284 1219.1 -19.0505,204 206 207,stand,,,
208 905.726 1322.3 -24.2596,205 207 208 204,stand,,,
209 779.096 1227.83 -24.8264,206 204 205,stand,,,
210 893.745 1347.47 9.125,206 209 259,stand,,,
211 1086.5 1543.67 -59.7345,208 210 91 211 92 259,stand,,,
212 1423.84 1510.13 -92.8088,209 92 211 93 258,stand,,,
213 1283.67 1297.9 -39.4883,210 212 209 258,stand,,,
214 1130.91 803.702 -31.9772,211 213 217 258 269,stand,,,
215 1107.27 228.543 38.859,212 214 263 269,stand,,,
216 982.51 65.6175 87.036,213 215,stand,,,
217 802.802 52.7786 57.125,214 57,stand,,,
218 915.972 784.052 -19.6487,203 217,stand,,,
219 931.68 778.888 9.125,216 212,stand,,,
220 778.364 677.725 9.125,203 219 262,stand,,,
221 330.874 728.637 -73.2004,218 220 200 202 262,stand,,,
222 -158.03 736.211 -68.1939,219 199 200 222 262 260,stand,,,
223 -1222.43 575.985 -61.0197,199 222 198 223 252 253 254,stand,,,
224 -750.316 761.955 -51.0973,220 221 198 252 254 261 260,stand,,,
225 -1742.05 587.101 -41.8939,221 197 250 224 251 198 254,stand,,,
226 -2397.66 346.4 -3.22561,197 225 242 223 250,stand,,,
227 -2420.82 -330.713 4.03698,224 72 73 196 241 197,stand,,,
228 -2288.09 -973.053 14.8678,196 71 228 229 241,stand,,,
229 -2327.75 -1481.05 28.1918,71 228 236 70,stand,,,
230 -2044.14 -1300.01 43.0377,227 229 226 236 32 35 196,stand,,,
231 -1738.33 -1123.84 35.1582,228 30 234 236 32 35 226 241 196 279,stand,,,
232 -1496.69 -1167.83 46.3071,30 231 232,stand,,,
233 -1312.13 -1243.87 50.125,230,stand,,,
234 -1447.36 -1348.83 41.2481,230 233 234 279,stand,,,
235 -1312.13 -1282.13 50.125,232 234,stand,,,
236 -1566.5 -1595.88 50.125,233 235 232 229,stand,,,
237 -1566.97 -1667.97 38.5014,234 237 26,stand,,,
238 -1894.49 -1747.43 2.78535,229 227 70 237 69 240 228,stand,,,
239 -1675.24 -1878.6 -7.67982,236 235 26 19 239 69 240,stand,,,
240 -1338.42 -1947 32.4434,19 239,stand,,,
241 -1414.43 -1809.61 36.0946,238 26 237,stand,,,
242 -1671.5 -2354.79 32.2795,236 237 19 69 18 68 24,stand,,,
243 -2360.98 -546.592 -2.31344,226 225 72 196 229 73,stand,,,
244 -2570.89 337.986 26.2356,224 73 243 249 277,stand,,,
245 -3011.82 553.183 32.6441,242 75 249 74 278,stand,,,
246 -2958.8 978.754 41.7884,75 245 247 249,stand,,,
247 -3087.53 1078.31 41.3272,78 244 246 247,stand,,,
248 -2986.11 1383.81 23.4192,245 247 82 248 84 80 79,stand,,,
249 -2812.56 1225.18 20.581,246 248 244 245 249,stand,,,
250 -2747.86 1428.09 16.9429,247 85 246 84 251,stand,,,
251 -2503.59 1063.02 -2.73322,247 243 242 250 251 253 277 244,stand,,,
252 -2316.68 923.803 -23.4784,249 223 224 251 87 253 255 197,stand,,,
253 -2450.39 1236.24 -0.197223,250 85 249 248 223 253 87 255,stand,,,
254 -198.104 382.788 12.6056,222 200 221,stand,,,
255 -1547.73 1064.96 16.9802,221 87 250 251 249 255,stand,,,
256 -1280.95 1130.83 62.7136,222 221 255 256 223 261,stand,,,
257 -1638.61 1353.03 -7.40217,254 87 251 253 88 256 250,stand,,,
258 -896.059 1829.38 -50.6025,88 89 254 257 261 90 255,stand,,,
259 10.9914 1543.73 -103.636,256 91 260 261 259 262 90,stand,,,
260 1650.97 1279.59 -103.877,93 211 210 268 212 269 92 270,stand,,,
261 686.294 1629.89 -87.4188,208 209 91 257 262,stand,,,
262 -305.732 1172.22 -66.4243,257 261 220 222 262,stand,,,
263 -776.36 1259.5 66.959,260 256 222 254 257,stand,,,
264 366.424 1112.06 -100.575,218 219 259 257 220 260,stand,,,
265 1790.59 31.0692 71.8674,213 264 269 271,stand,,,
266 2471 29.9673 7.99284,263 111 271 272 266,stand,,,
267 3217.68 562.524 -97.5375,111 266 110 273 274 95 140,stand,,,
268 2722.43 729.341 -139.001,265 267 268 271 272 270 264,stand,,,
269 2667.45 1193.56 -131.246,266 268 273 94,stand,,,
270 2346.53 1486.49 -72.5859,267 258 270 94 93 266,stand,,,
271 1612.45 688.883 -104.332,212 263 213 258 270 271,stand,,,
272 2197.05 971.823 -22.1719,258 268 271 269 266,stand,,,
273 2215.1 489.356 -16.9384,266 270 269 263 264 272,stand,,,
274 2928.08 362.115 -72.7782,264 111 266 271 110 273,stand,,,
275 3020.86 976.441 -122.08,265 267 94 274 95 272,stand,,,
276 3590.01 565.454 -112.473,273 95 110 96 265,stand,,,
277 2121.24 -1418.62 70.3548,166 146 145 132 147 280,stand,,,
278 -3413.07 1856.03 38.6056,80 82,stand,,,
279 -2706.33 71.2617 32.125,242 278 73 249,stand,,,
280 -2892.61 212.037 39.3663,277 243 73 74,stand,,,
281 -1579.38 -1422.52 44.1634,229 232,stand,,,
282 2143.8 -1094.93 33.8226,132 145 147 281 275 282,stand,,,
283 2182.76 -963.027 16.4606,133 280,stand,,,
284 2728.6 -1259.54 36.8695,280 143 145,stand,,,
285 1887.73 -2586.19 30.3914,153 150 285 284,stand,,,
286 1974.2 -2711.57 37.8055,150 283,stand,,,
287 1719.13 -2586.07 37.6685,283 286,stand,,,
288 1658.03 -2586.93 42.6203,285 149 172,stand,,,

View File

@@ -0,0 +1,243 @@
242
490 504 -2,1 135 139 134 192,stand,,,
688 693 -2,0 135 192 136 201 202,stand,,,
711 1387 -2,3 62 59 60 60 193 63,stand,,,
723 1776 -2,2 111 63 62 167 168 170,stand,,,
717 2602 -2,67 68 164 66 124,stand,,,
102 2886 -2,6 171 172 162 161,stand,,,
-91 2922 -2,5 69 161 162,stand,,,
-773 2321 -2,8 106 158,stand,,,
-568 2333 -2,7 9 13 11 106 183,stand,,,
-574 2539 -2,8 11 106,stand,,,
-643 2804 -2,158 159 160,stand,,,
-362 2578 -2,12 9 8 13 161 112,stand,,,
-264 2331 -2,11 13,stand,,,
-429 2317 -2,12 8 11,stand,,,
-1180 670 -2,72 78 230 231,stand,,,
-391 220 8,77 79 138 73 76,stand,,,
353 -412 11,17 115 137 140,stand,,,
598 -681 16,16 115 141 219,stand,,,
1484 1626 -4,19 32 33 238 241,stand,,,
1509 1357 2,18 32 31 20 241,stand,,,
1697 1131 -2,22 29 19 240,stand,,,
1368 879 -2,121 195 208 195 239,stand,,,
1602 945 -2,29 20 28 27 239,stand,,,
1255 396 13,119 120 123 223,stand,,,
1055 -225 25,25 116 220 221,stand,,,
818 -191 32,24 117 116 216 217 220,stand,,,
1038 954 -2,27 202 61 60 136,stand,,,
1193 984 -2,26 28 61 22,stand,,,
1301 1085 -2,27 29 30 61 22,stand,,,
1559 1110 -2,28 22 20 30,stand,,,
1329 1178 -2,31 61 29 28,stand,,,
1326 1377 3,30 32 19,stand,,,
1415 1519 1,31 19 18,stand,,,
1557 1738 -2,18 41 237 34,stand,,,
1690 2007 -6,35 40 49 237 33,stand,,,
1687 2133 0,34 36 38 48 49,stand,,,
1648 2356 -5,35 48 235 47,stand,,,
1924 2286 -1,38 235,stand,,,
1864 2141 -2,37 39 35 40,stand,,,
1966 2063 -2,38 40,stand,,,
1812 2016 -4,39 34 38 41,stand,,,
1588 1890 -3,40 33 42 49 237 43,stand,,,
1387 1854 -1,41 43,stand,,,
1379 2131 -4,42 44 49 50 41,stand,,,
1367 2237 -3,43 45 47 48 126,stand,,,
1161 2230 2,44 46 47 126 125,stand,,,
935 2258 -2,45 64 169 125 170,stand,,,
1420 2365 -2,44 48 45 126 36,stand,,,
1525 2272 -2,36 49 47 35 44,stand,,,
1552 2081 -3,48 43 35 41 34,stand,,,
1250 2135 -1,43 51 55,stand,,,
1240 1989 -1,50 52 56,stand,,,
1210 1935 -1,51 53 56,stand,,,
1044 1929 -1,52 54 56,stand,,,
1050 2132 -1,53 55,stand,,,
1152 2133 -1,54 50 56,stand,,,
1144 2017 -1,55 52 53 51,stand,,,
1248 1307 3,58,stand,,,
1094 1322 3,57 59,stand,,,
929 1323 -2,58 60 62 2,stand,,,
937 1183 -2,59 61 2 193 2 26,stand,,,
1147 1188 0,60 30 28 27 26,stand,,,
923 1624 -2,59 63 3 2,stand,,,
921 1863 -2,62 64 3 167 170 2,stand,,,
944 2007 -2,63 46 170 170,stand,,,
906 2994 -2,66 127 165,stand,,,
821 2796 -2,65 67 165 4,stand,,,
831 2583 -2,66 4 68 124 127,stand,,,
697 2420 -2,4 67 166 169 168,stand,,,
-426 2912 -3,159 6 160,stand,,,
-1043 1479 -2,71 132 133 230 233,stand,,,
-1028 1171 -2,70 230 231 233 133,stand,,,
-1013 632 -2,78 14 230 227 232 234 231,stand,,,
-413 472 -2,74 77 15 154 156 225,stand,,,
-189 467 -1,73 75 77 156 76,stand,,,
-30 467 -1,74 76 134,stand,,,
-68 339 -2,77 75 138 74 224 15,stand,,,
-311 360 -2,76 15 73 74 156 79,stand,,,
-953 425 -2,72 14 79 232,stand,,,
-589 299 -2,15 77 78 232,stand,,,
-455 860 -2,147 144 154 152,stand,,,
-751 1309 -2,83 143 82 150,stand,,,
-745 1513 -2,149 83 150 81,stand,,,
-607 1334 -2,81 84 143 82,stand,,,
-351 1327 -2,83 85,stand,,,
-73 1332 -4,84 90 188,stand,,,
432 1515 -2,87 186 187,stand,,,
398 1390 -2,86 88 89,stand,,,
413 1288 -2,87 89 189,stand,,,
283 1278 -2,88 90 91 87 187,stand,,,
114 1305 -2,85 89 188,stand,,,
288 1154 -3,89 92 96 97 98,stand,,,
496 1150 2,91 97 157,stand,,,
152 606 -2,94 97 99 194,stand,,,
-44 616 4,93 100 99,stand,,,
-73 1165 -2,96 101 146,stand,,,
131 1149 -2,95 91 101 98,stand,,,
346 971 -4,91 98 92 93 157 194,stand,,,
126 913 -5,97 99 96 101 91,stand,,,
-112 845 -2,98 100 101 93 94,stand,,,
-144 713 -1,94 99 151,stand,,,
-6 1011 -2,99 95 96 98 151,stand,,,
-626 1849 -2,103 113 112 149,stand,,,
-431 1869 -2,104 102 112,stand,,,
-155 1832 -2,103 105 110 109,stand,,,
63 1825 -2,104 109 110 107 180,stand,,,
-728 2225 -2,8 9 7 113 129 130 183,stand,,,
265 1959 0,108 109 105 167 111 178 177 180,stand,,,
388 1836 1,107 109 111 167 186,stand,,,
219 1815 -2,108 105 107 104 186,stand,,,
-85 1947 -2,105 104 114 180,stand,,,
564 1812 -2,108 3 107 167 186,stand,,,
-507 2009 -2,103 113 102 183 184 11,stand,,,
-682 2022 -2,112 106 102 130 149 183,stand,,,
-155 2051 -2,110 182 184 181,stand,,,
570 -402 -2,16 17 140 219 220,stand,,,
1114 -91 33,24 25 118 221 209,stand,,,