diff --git a/UCW_readme.txt b/UCW_readme.txt new file mode 100644 index 0000000..36c5822 --- /dev/null +++ b/UCW_readme.txt @@ -0,0 +1,13 @@ +//***********ULTRA CUBIC WORLD********// + +//pasha97 aka Pavel Chernyshov +//2013-2013 +//Voronezh, Russia +//Skype: pasha.97.97 +//All rights reserved + +How to install this game mode: +1. Extract the files from an archive to appropriate folders of your server +2. Open server.cfg and write UCW to the "gamemode0" line. It must be like: "gamemode0 UCW 1" +3. Add the names of all the plugins which are included to the archive to the "plugins" line of server.cfg +4. Open the server and join! If something works wrong, write it in the release thread. \ No newline at end of file diff --git a/gamemodes/UCW.amx b/gamemodes/UCW.amx new file mode 100644 index 0000000..df557e0 Binary files /dev/null and b/gamemodes/UCW.amx differ diff --git a/gamemodes/UCW.pwn b/gamemodes/UCW.pwn new file mode 100644 index 0000000..50f3900 --- /dev/null +++ b/gamemodes/UCW.pwn @@ -0,0 +1,2721 @@ +//***********ULTRA CUBIC WORLD********// + +//Game Mode version - 1.0 BETA +//pasha97 aka Pavel Chernyshov +//2013-2013 +//Voronezh, Russia +//Skype: pasha.97.97 +//All rights reserved + +#include +#include +#include +#include +#include +#include +#pragma tabsize 0 + + +//***********Variables and defines which can bee edited for some reason********// +#define PRINT_LOADING_INFO //if you define it, server will print to console the process of loading blocks, safe zones etc + +#define MAX_BLOCKS 16000//Max amount of blocks on the server +#define MAX_ZONES 100//Max amount of zones on the server +#define MAX_LABELS 100//Max amount of labels on the server + +#define MAPFILE "GLOBAL_MAP.sav"//File of saved map +#define ZONESFILE "SAFE_ZONES.sav"//File of safe zones +#define LABELSFILE "LABELS.sav"//File of safe labels +#define USERFILE "Users/%s.sav"//File of saved map + +#define BOUND_MAX_X 5295.6675//Some config for player bounds +#define BOUND_MIN_X 4703.5796//Some config for player bounds +#define BOUND_MAX_Y 1372.4235//Some config for player bounds +#define BOUND_MIN_Y 626.7107//Some config for player bounds + +#define BUTTON_SWITCH_T "C"//Text for switch button +#define BUTTON_DISABLE_T "F"//Text for disable button +#define BUTTON_PUT_T "RMB"//Text for put button +#define BUTTON_DESTROY_T "LMB"//Text for destroy button +#define BUTTON_ROTATE_T "Y"//text for rotation button + +#define BUTTON_SWITCH KEY_CROUCH//The switch button +#define BUTTON_DISABLE KEY_SECONDARY_ATTACK//The disable button +#define BUTTON_PUT KEY_HANDBRAKE//The put button +#define BUTTON_DESTROY KEY_FIRE//The destroy button +#define BUTTON_ROTATE KEY_YES//The rotate decoration button + +#define CUBE_SIZE_WIDE 1.76//Size of the cube on wide +#define CUBE_SIZE_HEIGH 1.5//size of the cube on heigh + +#define KOEF 4//by what value the cube heigh size must be multipled to reach the terrain +#define SCALE 10//the maximum distance to put/destroy block +#define MIN_SCALE 5//the minimum distance to put block +#define MIN_SCALE_DES 3//the minimum distance to destroy block + +#define BASE_MODEL 4242//model of the terrain +#define BASE_SIZE_X 199.4//X size of terrain +#define BASE_SIZE_Y 251.3//Y size of terrain +#define BASE_PLACE_X 5000//The center of terrain(X) +#define BASE_PLACE_Y 1000//The center of terrain(Y) +#define BASE_PLACE_Z 5.2//The center of terrain(Z) +#define BASE_COLOR 0xFFccff00//The color of terrain(X) +#define BASE_TX_MODEL -1//The model of the object which has the needed texture for terrain +#define BASE_TX_TXD "none"//The name of TXD file for terrain texture +#define BASE_TX_TEXTURE "none"//The name of terrain textute + +#define PUT_FLOOD_SECONDS 1000//the minimum time in mileseconds between putting blocks +#define DES_FLOOD_SECONDS 500//the minimum time in mileseconds between destroying blocks + +//***********System Variables and defines which do not need to be edited********// + +new timer[MAX_PLAYERS]; + +new Zone[MAX_PLAYERS][2]; +new Text3D:Label[MAX_PLAYERS]; +new Label_ID[MAX_PLAYERS]; +new pname[MAX_PLAYER_NAME]; +new Float:BlockX[MAX_BLOCKS]; +new Float:BlockY[MAX_BLOCKS]; +new Float:BlockZ[MAX_BLOCKS]; +new BlockAdd[MAX_BLOCKS]; +new LastBlock[MAX_PLAYERS][2]; +//new curveh[MAX_PLAYERS]; +//new curveh2[MAX_PLAYERS]; + +native WP_Hash(buffer[], len, const str[]); + +#define PRESSED(%0) \ + (((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0))) +#define RELEASED(%0) \ + (((newkeys & (%0)) != (%0)) && ((oldkeys & (%0)) == (%0))) +#define HOLDING(%0) \ + ((newkeys & (%0)) == (%0)) +#define SetPlayerTimer(%0,%1,%2) SetTimerEx(%0,%1,%2,"i",playerid) + +#define colorlist 93745 +#define glasslist 14455 +#define DIALOGID 2000 +#define DECORATIONS_ID 2000 + +new stringu[512]; +new switchlist; +new naturelist; +new woodlist; +new stonelist; +new fencinglist; +new decorationslist; +new plantslist; + + +new BlockHold[MAX_PLAYERS]; +new BlockID[MAX_PLAYERS]; +new Pointer[MAX_PLAYERS]; +new RotDec[MAX_PLAYERS]; +new SAVED[MAX_BLOCKS]; +new SAVED_ZONE[MAX_ZONES]; +new Text3D:SAVED_LABEL[MAX_LABELS]; +new Text:Center; + +new Text:Logo; +new Text:Tips; + + +new PlayerText:BLOCKINFO[MAX_PLAYERS]; +new PutFlood[MAX_PLAYERS]; +new DesFlood[MAX_PLAYERS]; + +#define DOOR_1 1491 +#define DOOR_2 1502 +#define SIGN 3927 +#define SIGN_ID DECORATIONS_ID+5 + +#define DOOR_RAM_MODEL 19397 + +#define DOOR_RIGHT_X 0.7800 +#define DOOR_RIGHT_Y 0.0 +#define DOOR_RIGHT_Z 1.7600 +#define DOOR_RIGHT_ROT_X 0 +#define DOOR_RIGHT_ROT_Y 0 +#define DOOR_RIGHT_ROT_Z 90 + +#define DOOR_LEFT_X (-0.2930) +#define DOOR_LEFT_Y 0.0 +#define DOOR_LEFT_Z 1.2048 +#define DOOR_LEFT_ROT_X 90 +#define DOOR_LEFT_ROT_Y 0 +#define DOOR_LEFT_ROT_Z 0 + + + +#define DOOR_UP_X 0.7678 +#define DOOR_UP_Y 0 +#define DOOR_UP_Z 2.730 +#define DOOR_UP_ROT_X 0 +#define DOOR_UP_ROT_Y 90 +#define DOOR_UP_ROT_Z -90 + + + +#define SIGN_RAM_MODEL 2258 + +#define SIGN_RIGHT_X (-0.24) +#define SIGN_RIGHT_Y (-0.07) +#define SIGN_RIGHT_Z 0.75 +#define SIGN_RIGHT_ROT_X 0 +#define SIGN_RIGHT_ROT_Y 0 +#define SIGN_RIGHT_ROT_Z 0 + + +new CUBE_MODEL[] =//Array which has object id of all cubes +{ +1685,//grass +1685,//ground +1685,//rock +1685,//water +1685,//sand +1685,//lava +1685,//ice + +1685,//wood1 +1685,//wood2 +1685,//wood3 + +1685,//stone +1685,//stone +1685,//stone +1685,//stone +1685,//stone +1685,//stone +1685,//stone + +1685,//bark + +1685,//new wood +1685,//new wood +1685,//new wood +1685,//new wood + +1685,//black +1685,//white +1685,//red +1685,//orange +1685,//yellow +1685,//green +1685,//green-blue +1685,//blue +1685,//Purple + +1685,//white +1685,//red +1685,//orange +1685,//yellow +1685,//green +1685,//green-blue +1685,//blue +1685,//Purple + + +1685,//fencing +1685,//fencing +1685,//fencing +}; + + +new CUBE_NAME[][] =//array with cubes names +{ +"Grass", +"Ground", +"Rock", +"Water", +"Sand", +"Lava", +"Ice", + +"Wood 1", +"Wood 2", +"Wood 3", + +"Stone 1", +"Stone 2", +"Stone 3", +"Stone 4", +"Stone 5", +"Stone 6", +"Stone 7", + +"Tree Bark", + +"Wood 4", +"Wood 5", +"Wood 6", +"Wood 7", + +"Black", +"White", +"Red", +"Orange", +"Yellow", +"Green", +"Green-Blue", +"Blue", +"Purple", + +"White Glass", +"Red Glass", +"Orange Glass", +"Yellow Glass", +"Green Glass", +"Green-Blue Glass", +"Blue Glass", +"Purple Glass", + + +"Fencing 1", +"Fencing 2", +"Fencing 3" +}; + +new DECO_NAME[][]=//array with decorations names +{ +"Chair 1", +"Chair 2", +"Armchair", +"Tabel 1", +"Fencing 1", +"Sign", +"Bed 1", +"Cabinet 1", +"Cabinet 2", +"Cabinet 3", +"Stairs", +"Door 1", +"Door 2", +"Streetlight", +"Fencing 2", + +"Tree 1", +"Tree 2", +"Tree 3", +"Tree 4", +"Tree 5", +"Tree 6", +"Tree 7", +"Grass 1", +"Grass 2", +"Grass 3", +"Flowers 1", +"Flowers 2" +}; + +new cmodel[] =//array for changing cubes textures +{ +17880,//grass +16134,//ground +898,//rock +3951,//water +16202,//sand +898,//lava +898,//ice + +1224,//wood1 +3260,//wood3 +2988,//wood6 + +4724,//stone +19355,//stone +19364,//stone +19357,//stone +19359,//stone +19363,//stone +19371,//stone + +832,//bark + +19376,//new wood +19378,//new wood +19379,//new wood +19356,//new wood + +19357,//black +19357,//white +19357,//red +19357,//orange +19357,//yellow +19357,//green +19357,//green-blue +19357,//blue +19357,//Purple + +19466,//white +19466,//red +19466,//orange +19466,//yellow +19466,//green +19466,//green-blue +19466,//blue +19466,//Purple + + +983,//fencing +3282,//fencing +4100,//fencing +}; + +new ctxd[][] =//array for changing cubes textures +{ +"landhub",//grass +"desert",//ground +"underwater",//rock +"rczero_track",//water +"des_cen",//sand +"underwater",//lava +"underwater",//ice + + +"boxes",//wood1 +"country_breakable",//wood3 +"kcomp_gx",//wood6 + +"skyscr1_lan2",//stone +"all_walls",//stone +"all_walls",//stone +"all_walls",//stone +"all_walls",//stone +"all_walls",//stone +"all_walls",//stone + +"gta_brokentrees",//bark + +"all_walls",//new wood +"all_walls",//new wood +"all_walls",//new wood +"all_walls",//new wood + +"all_walls",//black +"all_walls",//white +"all_walls",//red +"all_walls",//orange +"all_walls",//yellow +"all_walls",//green +"all_walls",//green-blue +"all_walls",//blue +"all_walls",//Purple + +"lsmall_shops",//white +"lsmall_shops",//red +"lsmall_shops",//orange +"lsmall_shops",//yellow +"lsmall_shops",//green +"lsmall_shops",//green-blue +"lsmall_shops",//blue +"lsmall_shops",//Purple + + +"bar_chainlink",//fencing +"country_breakable",//fencing +"lanfireesc_tr"//fencing +}; + +new ctexture[][] =//array for changing cubes textures +{ +"yardgrass1",//grass +"des_redrock1",//ground +"greyrockbig",//rock +"waterclear256",//water +"des_ripplsand",//sand +"greyrockbig",//lava +"greyrockbig",//ice + +"crate128",//wood1 +"des_ghotwood1",//wood3 +"kmwood_gate",//wood6 + +"sl_librarywall1",//stone +"ab_corWallUpr",//stone +"mp_carter_bwall",//stone +"cj_white_wall2",//stone +"copbtm_brown",//stone +"motel_wall3",//stone +"stormdrain3_nt",//stone + +"CJ_bark",//bark + +"gym_floor5",//new wood +"mp_diner_woodwall",//new wood +"mp_shop_floor2",//new wood +"CJ_LIGHTWOOD",//new wood + +"cj_white_wall2",//black +"cj_white_wall2",//white +"cj_white_wall2",//red +"cj_white_wall2",//orange +"cj_white_wall2",//yellow +"cj_white_wall2",//green +"cj_white_wall2",//green-blue +"cj_white_wall2",//blue +"cj_white_wall2",//Purple + + +"lsmall_window01",//white +"lsmall_window01",//red +"lsmall_window01",//orange +"lsmall_window01",//yellow +"lsmall_window01",//green +"lsmall_window01",//green-blue +"lsmall_window01",//blue +"lsmall_window01",//Purple + +"awirex2",//fencing +"Gen_Meshfencing",//fencing +"Upt_Fence_Mesh"//fencing//fencing +}; + +new ccolor[] =//array for changing cubes textures +{ +0xFF7FFF00,//grass +0xFF834E1D,//ground +0xFFD5D5D5,//rock +0xEE008CF0,//water +0xFFFFF5B0,//sand +0xFFE32636,//lava +0x907FFFD4,//ice + + +0xFFFFFFFF,//wood1 +0xFFFFFFFF,//wood2 +0xFFFFFFFF,//wood3 + +0xFFFFFFFF,//stone +0xFFFFFFFF,//stone +0xFFFFFFFF,//stone +0xFFFFFFFF,//stone +0xFFFFFFFF,//stone +0xFFFFFFFF,//stone +0xFFFFFFFF,//stone + +0xFFFFFFFF,//bark + +0xFFFFFFFF,//wood +0xFFFFFFFF,//wood +0xFFFFFFFF,//wood +0xFFFFFFFF,//wood + +0xFF000000,//black +0,//white +0xFFFF0000,//red +0xFFffa500,//orange +0xFFFFFF00,//yellow +0xFF00FF00,//green +0xFF00ffa0,//green-blue +0xFF0047ab,//blue +0xFFFF00FF,//Purple + +0xFFFFFFFF,//white +0xFFFF0000,//red +0xFFffa500,//orange +0xFFFFFF00,//yellow +0xFF00FF00,//green +0xFF00ffa0,//green-blue +0xFF3636cc,//blue +0xFFFF00FF,//Purple + + +0xFFFFFFFF,//fencing +0xFFFFFFFF,//fencing +0xFFFFFFFF,//fencing +}; + + +new DECO_MODEL[] =//Array which has object id of all decorations +{ +1671,//chair +1720,//chair2 +1711,//armchair +2635,//tabel2 +1408,//fencing +3927,//sign +1802,//bed3 +912,//cabinet1 +2204,//cabinet2 +2328,//cabinet3 +3361,//stairs +1491,//door1 +1502,//door2 +1223,//Streetlight +970,//fencing 2 + +617,//tree +659,//tree +673,//tree +732,//tree +3506,//tree +736,//tree +685,//tree +820,//grass +821,//grass +19473,//grass +869,//flowers +870//flowers +}; +new Float:DECO_Z_INDEX[] =//Array which has value which must be added to Z corrdinate decor +{ +-0.3,//chair +-0.7,//chair2 +-0.8,//armchair +-0.5,//table2 +0.0,//fencing +1.3,//sign +-0.6,//bed3 +-0.3,//cabinet1 +-0.7,//cabinet2 +-0.7,//cabinet3 +-1.3,//stairs +-0.7,//door1 +-0.7,//door2 +-0.9,//Streetlight +-0.1,//fencing2 + +-1.5,//tree +-1.5,//tree +-1.5,//tree +-1.5,//tree +-1.5,//tree +9.4,//tree +-1.5,//tree +-0.9,//grass +-0.9,//grass +-0.9,//grass +-0.4689,//flowers +-0.6724//flowers +}; +new Float:DECO_X_INDEX[] =//Array which has value which must be added to X corrdinate decor +{ +0.0,//chair +0.0,//chair2 +0.0,//armchair +0.0,//table2 +0.0,//fencing +0.0,//sign +-0.5,//bed3 +0.0,//cabinet1 +-1.1,//cabinet2 +0.0,//cabinet3 +2.0,//stairs +-0.8,//door1 +-0.8,//door2 +0.0,//Streetlight +0.0,//fencing2 + +0.0,//tree +0.0,//tree +0.0,//tree +0.0,//tree +0.0,//tree +0.0,//tree +0.0,//tree +0.0,//grass +0.0,//grass +0.0,//grass +0.0,//flowers +0.0//flowers +}; +new Float:DECO_Y_INDEX[] =//Array which has value which must be added to Z corrdinate of decor +{ +0.0,//chair +0.0,//chair2 +0.0,//armchair +0.0,//table2 +0.0,//fencing +0.0,//sign +-2.0,//bed3 +0.0,//cabinet1 +0.0,//cabinet2 +-1.1,//cabinet3 +0.0,//stairs +0.0,//door1 +0.0,//door2 +0.0,//Streetlight +0.0,//fencing2 + +0.0,//tree +0.0,//tree +0.0,//tree +0.0,//tree +0.0,//tree +0.0,//tree +0.0,//tree +0.0,//grass +0.0,//grass +0.0,//grass +0.0,//flowers +0.0//flowers +}; + + +new cnames[][] =//names of blocks in the selection menu +{ +"Natural", +"Wood", +"Facing/stone", +"Colorful", +"Glass", +"Fencing", +"Decorations", +"Plants/treese", +"Disable" +}; + +new wnames[][] =//names of blocks in the selection menu +{ +"Wood 1", +"Wood 2", +"Wood 3", +"Wood 4", +"Wood 5", +"Wood 6", +"Wood 7" +}; + +new snames[][] =//names of blocks in the selection menu +{ +"Stone 1", +"Stone 2", +"Stone 3", +"Stone 4", +"Stone 5", +"Stone 6", +"Stone 7" +}; + +new colnames[][] =//names of blocks in the selection menu +{ +"Black", +"White", +"Red", +"Orange", +"Yellow", +"Green", +"Green-Blue", +"Blue", +"Purple" +}; + +new gnames[][] =//names of blocks in the selection menu +{ +"Simple", +"Red", +"Orange", +"Yellow", +"Green", +"Green-Blue", +"Blue", +"Purple" +}; + +new fnames[][] =//names of blocks in the selection menu +{ +"Fencing 1", +"Fencing 2", +"Fencing 3" +}; + +new nnames[][] =//names of blocks in the selection menu +{ +"Grass", +"Ground", +"Rock", +"Water", +"Sand", +"Lava", +"Ice", +"Tree Bark" +}; + +new dnames[][] =//names of decorations in the selection menu +{ +"Chair 1", +"Chair 2", +"Armchair", +"Tabel 1", +"Fencing 1", +"Sign", +"Bed 1", +"Cabinet 1", +"Cabinet 2", +"Cabinet 3", +"Stairs", +"Door 1", +"Door 2", +"Streetlight", +"Fencing 2" +}; + +new pnames[][] =//names of plants in the selection menu +{ +"Tree 1", +"Tree 2", +"Tree 3", +"Tree 4", +"Tree 5", +"Tree 6", +"Tree 7", +"Grass 1", +"Grass 2", +"Grass 3", +"Flowers 1", +"Flowers 2" +}; + +new colcolors[]=//Colors of blocks in the selection menu +{ +0x000000FF,//black +0xFFFFFFFF,//white +0xFF0000FF,//red +0xffa500FF,//orange +0xFFFF00FF,//yellow +0x00FF00FF,//green +0x00ffa0FF,//green-blue +0x3636ccFF,//blue +0xFF00FFFF//Purple +}; +new gcolors[]=//Colors of blocks in the selection menu +{ +0xFFFFFF44,//white +0xFF000044,//red +0xffa50044,//orange +0xFFFF0044,//yellow +0x00FF0044,//green +0x00ffa044,//green-blue +0x3636cc44,//blue +0xFF00FF44//Purple +}; + +#define SPD ShowPlayerDialog +#define REG_DIALOG 2334 +#define LOG_DIALOG 2335 + +//WARNING!!! This defines can NOT be changed! +//No one can prevent you from doing it, but if you are a honest person, you won't change theese defines! +#define NICK "pasha97" +#define FULL_NAME "Pavel Chernyshov" +#define COPYRIGHT_DATE "2013-2013" +#define LOCATION "Voronezh, Russia" +#define SKYPE "pasha.97.97" +#define CREDITS "Naufal[Many thanks]\nBillyBoy[Many thanks]\nLakiya[Many thanks]\nProZ\nromart97\niheb\nSilverKiller\nVirtual1ty[Many thanks]\nMuqeet" +#define CREDITS_2 "Kalcor\nDracoBlue\nY_Less\nTotto8492\nD0efler\nIncognito" + +//******End of variables and defines*********// + +main() +{ +return 1; +} +public OnPlayerConnect(playerid) +{ + BLOCKINFO[playerid] = CreatePlayerTextDraw(playerid, 509.000000, 379.750091, "Selected block:~n~lolxd"); + PlayerTextDrawLetterSize(playerid, BLOCKINFO[playerid], 0.449999, 1.600000); + PlayerTextDrawTextSize(playerid, BLOCKINFO[playerid], 634.599792, 480.399658); + PlayerTextDrawAlignment(playerid, BLOCKINFO[playerid], 1); + PlayerTextDrawColor(playerid, BLOCKINFO[playerid], -1);// + PlayerTextDrawUseBox(playerid, BLOCKINFO[playerid], true); + PlayerTextDrawBoxColor(playerid, BLOCKINFO[playerid], -2147483393);// + PlayerTextDrawSetShadow(playerid, BLOCKINFO[playerid], 0); + PlayerTextDrawSetOutline(playerid, BLOCKINFO[playerid], 1);// + PlayerTextDrawBackgroundColor(playerid, BLOCKINFO[playerid], -1523963137); + PlayerTextDrawFont(playerid, BLOCKINFO[playerid], 1); + PlayerTextDrawSetProportional(playerid, BLOCKINFO[playerid], 1);// + GameTextForPlayer(playerid,"~w~Welcome to ~r~UCW ~w~server!",5000,5); + + new giocatore[MAX_PLAYER_NAME]; + + GetPlayerName(playerid, giocatore, sizeof(giocatore)); + format(stringu, sizeof(stringu), "{ffffff}%s (ID: %d) {ffcc00}has joined {ff0000}Ultra Cubic World! ", giocatore, playerid); + SendClientMessageToAll(0xFFFFFF, stringu); + + SendClientMessage(playerid, 0xFFFFFFFF,"{ffcc00}~~~~~~~~~~~~~~~~~~~~~~~~~{000000}~~~~~~~~~~~~~{ffcc00}~~~~~~~~~~~~~~~~~~~~~~~"); + SendClientMessage(playerid, 0xFFFFFFFF,"{00ff00}Welcome to {f50000}Ultra Cubic World!"); + SendClientMessage(playerid, 0xFFFFFFFF,"{00ff00}It's a place where you can show your imagination and build great buildings with your friends!"); + SendClientMessage(playerid, 0xFFFFFFFF,"{ffcc00}~~~~~~~~~~~~~~~~~~~~~~~~~{000000}~~~~~~~~~~~~~{ffcc00}~~~~~~~~~~~~~~~~~~~~~~~"); + PlayerPlaySound(playerid,1185,0,0,0); + BlockHold[playerid]=0; + + BlockID[playerid]=-1; + + SetDynamicObjectMaterial(Pointer[playerid], 0, -1, "none", "none", 0x91FF0000); + timer[playerid]=SetPlayerTimer("UpdateCubes",2000,1); + + PutFlood[playerid]=0; + DesFlood[playerid]=0; + RotDec[playerid]=0; + Zone[playerid][0]=-1; + Zone[playerid][1]=-1; + Label[playerid]=Text3D:-1; + Label_ID[playerid]=-1; + LastBlock[playerid][0]=-1; + LastBlock[playerid][1]=-1; + + + + return 1; +} + +public OnPlayerDisconnect(playerid, reason) +{ + new giocatore[MAX_PLAYER_NAME]; + GetPlayerName(playerid, giocatore, sizeof(giocatore)); + switch(reason) + { + case 0: format(stringu, sizeof(stringu), "{ffffff}%s (ID: %d) {ffcc00}has left the server! {ff0000}(Crash)", giocatore, playerid); + case 1: format(stringu, sizeof(stringu), "{ffffff}%s (ID: %d) {ffcc00}has left the server! {ff0000}(Left)", giocatore, playerid); + case 2: format(stringu, sizeof(stringu), "{ffffff}%s (ID: %d) {ffcc00}has left the server! {ff0000}(Kicked)", giocatore, playerid); + } + SendClientMessageToAll(0xFFFFFFFF, stringu); + DestroyDynamicObject(Pointer[playerid]); + TextDrawHideForPlayer(playerid,Center); + TextDrawHideForPlayer(playerid,Logo); + TextDrawHideForPlayer(playerid,Tips); + PlayerTextDrawHide(playerid,BLOCKINFO[playerid]); + KillTimer(timer[playerid]); + return 1; +} + +public OnPlayerCommandText(playerid, cmdtext[]) +{ + new idx; + new cmd[256]; + + cmd = strtok(cmdtext, idx); + + if(strcmp(cmd, "/help", true) == 0 || strcmp(cmd, "/about", true) == 0) + { + new dialogbox[1024]; + strcat(dialogbox,"{ffcc00}Hello, dear player! We are happy to see you here! \nIt is a place where you can show everybody your imagination and creativity! \n"); + strcat(dialogbox,"{00ff00}Create magnificent masterworks from cubes, or just build something more simple - the choice is yours!\n"); + format(stringu, sizeof(stringu), "{ff00ff}To switch blocks, press button {ff0000}%s. \n{ff00ff}To put the block, press {ff0000}%s, {ff00ff} to destroy it, press {ff0000}%s. \n{ff00ff}To change the decoration rotation press {ff0000}%s.\n{ff00ff}To disable block selection press {ff0000}%s\n",BUTTON_SWITCH_T,BUTTON_PUT_T, BUTTON_DESTROY_T,BUTTON_ROTATE_T,BUTTON_DISABLE_T); + strcat(dialogbox,stringu); + format(stringu, sizeof(stringu), "{00ffff}That's all! Good luck and enjoy your game! If you need commands list, check /cmd.\n\n{ff00ff}Project is in development. Since 7 March 2013\nScripter and owner: %s aka %s\nSkype: %s\n\n",NICK,FULL_NAME,SKYPE); + strcat(dialogbox,stringu); + format(stringu,sizeof(stringu),"{ffff00}Special thanks for help and testing:\n{00ff00}%s\n\n{ffff00}And, ofcourse, many thanks to theese people for their tools and plugins:\n{ff0000}%s",CREDITS,CREDITS_2); + strcat(dialogbox,stringu); + SPD(playerid, DIALOGID+1000, DIALOG_STYLE_MSGBOX, "UCW-express your creativity", dialogbox, "..::Ok::..", ""); + return 1; + } + + + if(strcmp(cmd, "/cmd", true) == 0 || strcmp(cmd, "/c", true) == 0 || strcmp(cmd, "/command", true) == 0 || strcmp(cmd, "/commands", true) == 0 || strcmp(cmd, "/cmds", true) == 0) + { + new dialogbox[1024]; + strcat(dialogbox,"{ff00ff}Server commands list:\n\n"); + strcat(dialogbox,"{ffff00}/spawn - go to spawn place\n"); + strcat(dialogbox,"{ffff00}/fly - get jetpack to fly\n{ffff00}/safe [distance] - to set a safe zone at your place\n\n{ffff00}/delsafe - to delete your safe zone\n"); + strcat(dialogbox,"{ffff00}/label [text] - to set a label at your place\n{ffff00}/dellabel - to delete your label\n"); + SPD(playerid, DIALOGID+1000, DIALOG_STYLE_LIST, "UCW-express your creativity", dialogbox, "..::Ok::..", ""); + return 1; + } + + + if (!strcmp("/test", cmd, true)) + { + new tmp[512]; + tmp = strtok(cmdtext, idx); + PlayerPlaySound(playerid,strval(tmp),0,0,0); + return 1; + } + if (!strcmp("/switch", cmd, true)) + { + ShowMPMenu(playerid, switchlist, "Switch blocks",cnames,9, 0xc8c6bf44, 0xDBC77E77 , 0xF4B81BAA); + return 1; + } + if (!strcmp("/spawn", cmd, true)) + { + SetPlayerPos(playerid,BASE_PLACE_X, BASE_PLACE_Y, BASE_PLACE_Z+2); + Inform(playerid,"{00ff00}You have been successfully teleported to spawn!"); + return 1; + } + if (!strcmp("/jet", cmd, true) || !strcmp("/jp", cmdtext, true) || !strcmp("/jetpack", cmdtext, true) || !strcmp("/fly", cmdtext, true)) + { + SetPlayerSpecialAction(playerid,SPECIAL_ACTION_USEJETPACK); + return 1; + } + if (!strcmp("/safe", cmd, true)) + { + new tmp[512]; + tmp = strtok(cmdtext, idx); + if(strval(tmp)<=0 || strval(tmp)>15) return Warn(playerid,"{ff0000}USAGE: /safe [radius:1-15]"); + if(IsPlayerInAnyDynamicArea(playerid)) return Warn(playerid,"{ff0000}You are in another safe area! Come to another place!"); + new Float:x,Float:y,Float:z; + new ft[256]; + new tt[100]; + GetPlayerPos(playerid,x,y,z); + + if(IsValidDynamicArea(Zone[playerid][0])) + { + DestroyDynamicArea(Zone[playerid][0]); + format(tt,sizeof(tt),"%d",Zone[playerid][1]); + dini_Unset(ZONESFILE,tt); + + SAVED_ZONE[Zone[playerid][1]]=-1; + Zone[playerid][1]=-1; + Zone[playerid][0]=-1; + } + Zone[playerid][0]=CreateDynamicCircle(x,y,strval(tmp)); + + new d=0; + new idrd=0; + new zoneidx; + while (d==0) + { + idrd++; + + if(SAVED_ZONE[idrd]!=-1) d=0; + else d=1, zoneidx=idrd; + } + format(tt,sizeof(tt),"%d",zoneidx); + Zone[playerid][1]=zoneidx; + SAVED_ZONE[zoneidx]=Zone[playerid][0]; + format(ft,sizeof(ft),"%f %f %d",x,y,strval(tmp)); + dini_Set(ZONESFILE,tt,ft); + + new file[256]; + GetPlayerName(playerid, pname, sizeof(pname)); + format(file,sizeof(file),USERFILE,pname); + dini_IntSet(file,"SAFE_ZONE",zoneidx); + + Inform(playerid,"You have just created a safe zone at this place! Only can build here now!"); + return 1; + } + + if (!strcmp("/delsafe", cmd, true)) + { + new tt[100]; + + if(IsValidDynamicArea(Zone[playerid][0])) + { + DestroyDynamicArea(Zone[playerid][0]); + format(tt,sizeof(tt),"%d",Zone[playerid][1]); + dini_Unset(ZONESFILE,tt); + + SAVED_ZONE[Zone[playerid][1]]=-1; + Zone[playerid][1]=-1; + Zone[playerid][0]=-1; + Inform(playerid,"{00ff00}You have just deleted your safe zone!"); + } + else + { + Warn(playerid,"{ff0000}You don't have any safe zone created!"); + } + return 1; + } + + if (!strcmp("/label", cmd, true)) + { + new tmp[1024]; + sscanf(cmdtext, "{s[256]}p<->s[1024]", tmp); + if(strlen(tmp)<=0 || strlen(tmp)>50) return Warn(playerid,"{ff0000}USAGE: /label [text from 1 to 50 characters]"); + new Float:x,Float:y,Float:z; + new ft[256]; + new tt[100]; + GetPlayerPos(playerid,x,y,z); + + if(IsValidDynamic3DTextLabel(Label[playerid])) + { + DestroyDynamic3DTextLabel(Label[playerid]); + format(tt,sizeof(tt),"%d",Label_ID[playerid]); + dini_Unset(LABELSFILE,tt); + + SAVED_LABEL[Label_ID[playerid]]=Text3D:-1; + Label_ID[playerid]=-1; + Label[playerid]=Text3D:-1; + } + Label[playerid]=CreateDynamic3DTextLabel(tmp,0xFFFFFFFF, x,y,z,500); + + new d=0; + new idrd=0; + new zoneidx; + while (d==0) + { + idrd++; + + if(SAVED_LABEL[idrd]!=Text3D:-1) d=0; + else d=1, zoneidx=idrd; + } + format(tt,sizeof(tt),"%d",zoneidx); + Label_ID[playerid]=zoneidx; + SAVED_LABEL[zoneidx]=Label[playerid]; + format(ft,sizeof(ft),"%f %f %f %s",x,y,z,tmp); + dini_Set(LABELSFILE,tt,ft); + + new file[256]; + GetPlayerName(playerid, pname, sizeof(pname)); + format(file,sizeof(file),USERFILE,pname); + dini_IntSet(file,"SAFE_LABEL",zoneidx); + + Inform(playerid,"{00ff00}You have just created a text label at this place!"); + return 1; + } + + if (!strcmp("/dellabel", cmd, true)) + { + + new tt[100]; + + if(IsValidDynamic3DTextLabel(Label[playerid])) + { + DestroyDynamic3DTextLabel(Label[playerid]); + format(tt,sizeof(tt),"%d",Label_ID[playerid]); + dini_Unset(LABELSFILE,tt); + + SAVED_LABEL[Label_ID[playerid]]=Text3D:-1; + Label_ID[playerid]=-1; + Label[playerid]=Text3D:-1; + Inform(playerid,"{00ff00}You have just deleted your text label!"); + } + else + { + Warn(playerid,"{ff0000}You don't have any label created!"); + } + + return 1; + } + + return Warn(playerid,"{ff0000}This command does not exist! {ffffff}Look at commands list! /cmd"); +} + +public OnPlayerSpawn(playerid) +{ + SetPlayerInterior(playerid,0); + SetPlayerPos(playerid,BASE_PLACE_X, BASE_PLACE_Y, BASE_PLACE_Z+2); + + GameTextForPlayer(playerid, "~r~Wait! ~g~Loading objects!", 2500, 3); + SetPlayerTimer("Unfreeze",3000,0); + SetPlayerHealth(playerid,10000000); + SetPlayerAttachedObject(playerid, 0, 18635, 6, -0.015000, 0.015000, 0.041999, -5.900000, -12.000002, 0.000000); + + + + + + return 1; +} + +public OnPlayerDeath(playerid, killerid, reason) +{ + return 1; +} + + + +public OnPlayerRequestClass(playerid, classid) +{ SetPlayerPos(playerid,2011.0867,1357.0909,10.8203); + SetPlayerFacingAngle(playerid, 279.5659); + SetPlayerCameraPos(playerid,2017.8021,1356.7081,12.1); + SetPlayerCameraLookAt(playerid,2011.0867,1357.0909,10.8203,CAMERA_MOVE); + return 1; +} +public OnPlayerRequestSpawn(playerid) +{ + if(!IsPlayerRegistered(playerid)) + { + SPD(playerid, DIALOGID+REG_DIALOG, DIALOG_STYLE_PASSWORD, "UCW-register", "{ff00ff}Hello! You are first time here! \n {00ff00}To continune, create a password and type it below!", "..::Ok::..", ""); + return 0; + } + else + { + if(IsIpMatch(playerid)) Login(playerid); + else + { + SPD(playerid, DIALOGID+LOG_DIALOG, DIALOG_STYLE_PASSWORD, "UCW-login", "{ff00ff}Welcome back! Your IP had changed! \n {00ff00}To continune, type your password below!", "..::Ok::..", ""); + return 0; + } + } + PlayerPlaySound(playerid,1186,0,0,0); + HTTP(playerid, HTTP_GET, "192.168.0.101:7775", "", "PlayRadio"); + TextDrawShowForPlayer(playerid,Center); + TextDrawShowForPlayer(playerid,Logo); + TextDrawShowForPlayer(playerid,Tips); + PlayerTextDrawShow(playerid,BLOCKINFO[playerid]); + + + return 1; +} +public OnGameModeInit() +{ + print("\n----------------------------------"); + print("WAIT! LOADING SERVER!\n"); + print("----------------------------------\n"); + SetGameModeText("Creative•Minecraft"); + SendRconCommand("mapname Made by our players"); + SendRconCommand("hostname •• ••©Ultra Cubic World™ 0.3x•• ••"); + ShowPlayerMarkers(1); + ShowNameTags(1); + SetWeather(1); + Streamer_VisibleItems(STREAMER_TYPE_OBJECT, 950); + + +Center = TextDrawCreate(330.046386, 215.041732, "|"); +TextDrawLetterSize(Center, 0.415328, 2.235836); +TextDrawAlignment(Center, 2); +TextDrawColor(Center, 0xFFFFFF); +TextDrawSetShadow(Center, 0); +TextDrawSetOutline(Center, 0); +TextDrawBackgroundColor(Center, 51); +TextDrawFont(Center, 0); +TextDrawSetProportional(Center, 1); + + +Logo = TextDrawCreate(316.799804, 431.141510, "~b~Ultra ~h~Cubes ~h~World ~w~1.0 ~g~BETA ~r~For more info - ~p~/help"); +TextDrawLetterSize(Logo, 0.449999, 1.600000); +TextDrawTextSize(Logo, 469.000000, 644.582092); +TextDrawAlignment(Logo, 2); +TextDrawColor(Logo, -1); +TextDrawUseBox(Logo, true); +TextDrawBoxColor(Logo, 1431655850); +TextDrawSetShadow(Logo, 0); +TextDrawSetOutline(Logo, 1); +TextDrawBackgroundColor(Logo, 255); +TextDrawFont(Logo, 1); +TextDrawSetProportional(Logo, 1); + + +Tips = TextDrawCreate(8.011749, 219.566619, "~g~Useful keys:~n~~y~~k~~PED_DUCK~ - ~p~Switch blocks~n~~y~~k~~PED_LOCK_TARGET~ - ~p~Put block~n~~y~~k~~PED_FIREWEAPON~ - ~p~Destroy block~n~~y~~k~~VEHICLE_ENTER_EXIT~ - ~p~Disable selection~n~~y~~k~~CONVERSATION_YES~ - ~p~Rotate decoration"); +TextDrawLetterSize(Tips, 0.449999, 1.600000); +TextDrawTextSize(Tips, 182.500000, -65.916694); +TextDrawAlignment(Tips, 1); +TextDrawColor(Tips, -1); +TextDrawUseBox(Tips, true); +TextDrawBoxColor(Tips, 1717985587); +TextDrawSetShadow(Tips, 0); +TextDrawSetOutline(Tips, 1); +TextDrawBackgroundColor(Tips, 286340010); +TextDrawFont(Tips, 1); +TextDrawSetProportional(Tips, 1); + + + AddPlayerClass(260,BASE_PLACE_X, BASE_PLACE_Y, BASE_PLACE_Z+2,270.1425,0,0,0,0,-1,-1); + + for(new i=0; i<300;i++) + { + AddPlayerClass(i,BASE_PLACE_X, BASE_PLACE_Y, BASE_PLACE_Z+2,270.1425,0,0,0,0,-1,-1); + } + new idx; + for(new i=0; i<2;i++) + { + //1 side + idx=CreateObject(BASE_MODEL, BASE_PLACE_X + (BASE_SIZE_X*i), BASE_PLACE_Y, BASE_PLACE_Z, 0.00, 0.00, 0.00); + SetObjectMaterial(idx, 0, BASE_TX_MODEL, BASE_TX_TXD, BASE_TX_TEXTURE, BASE_COLOR); + if(i!=0) + { + idx=CreateObject(BASE_MODEL, BASE_PLACE_X - (BASE_SIZE_X*i), BASE_PLACE_Y, BASE_PLACE_Z, 0.00, 0.00, 0.00); + SetObjectMaterial(idx, 0, BASE_TX_MODEL, BASE_TX_TXD, BASE_TX_TEXTURE, BASE_COLOR); + } + + for(new d=1;d<2;d++) + { + idx=CreateObject(BASE_MODEL, BASE_PLACE_X + (BASE_SIZE_X*i), BASE_PLACE_Y + (BASE_SIZE_Y*d), BASE_PLACE_Z, 0.00, 0.00, 0.00); + SetObjectMaterial(idx, 0, BASE_TX_MODEL, BASE_TX_TXD, BASE_TX_TEXTURE, BASE_COLOR); + idx=CreateObject(BASE_MODEL, BASE_PLACE_X + (BASE_SIZE_X*i), BASE_PLACE_Y - (BASE_SIZE_Y*d), BASE_PLACE_Z, 0.00, 0.00, 0.00); + SetObjectMaterial(idx, 0, BASE_TX_MODEL, BASE_TX_TXD, BASE_TX_TEXTURE, BASE_COLOR); + + idx=CreateObject(BASE_MODEL, BASE_PLACE_X - (BASE_SIZE_X*i), BASE_PLACE_Y + (BASE_SIZE_Y*d), BASE_PLACE_Z, 0.00, 0.00, 0.00); + SetObjectMaterial(idx, 0, BASE_TX_MODEL, BASE_TX_TXD, BASE_TX_TEXTURE, BASE_COLOR); + idx=CreateObject(BASE_MODEL, BASE_PLACE_X - (BASE_SIZE_X*i), BASE_PLACE_Y - (BASE_SIZE_Y*d), BASE_PLACE_Z, 0.00, 0.00, 0.00); + SetObjectMaterial(idx, 0, BASE_TX_MODEL, BASE_TX_TXD, BASE_TX_TEXTURE, BASE_COLOR); + + } + + + + } + #if defined PRINT_LOADING_INFO + print("Terrain loaded!\n"); + #endif + + + switchlist = LoadMPMenu("switch.txt"); + naturelist = LoadMPMenu("nature.txt"); + woodlist = LoadMPMenu("wood.txt"); + stonelist = LoadMPMenu("stone.txt"); + fencinglist = LoadMPMenu("fencing.txt"); + decorationslist = LoadMPMenu("decorations.txt"); + plantslist = LoadMPMenu("plants.txt"); + + + new blocksam=0, zonesam=0, labelsam=0; + + + new idtz[100],ftz[256]; + new Float:xz, Float:yz, rz; + for(new i=0;is[1024]", xl,yl,zl,rtl); + + SAVED_LABEL[i]=CreateDynamic3DTextLabel(rtl,0xFFFFFFFF, xl,yl,zl,500); + labelsam++; + + + #if defined PRINT_LOADING_INFO + printf("Loading labels: %d",labelsam); + #endif + } + else + { + SAVED_LABEL[i]=Text3D:-1; + } + } + + #if defined PRINT_LOADING_INFO + print("Labels loaded!\n"); + #endif + + + + +new string[256]; +new File:objectsFile = fopen(MAPFILE, io_read); + +// check if it is a valid file handle, it might crash the server if it isn't +if(objectsFile) +{ + // it's always better to declare variables outside loops + new id, seq,Float:x, Float:y, Float:z, r,text[512]; + + // we read the file line by line, first line is stored into string and so on.. + while(fread(objectsFile, string)) + { + blocksam++; + // we extract the contents of string into variables + sscanf(string, "p<=>dp<;>dfffI(0)p<=>s[512]", seq,id, x, y, z, r,text); + + SAVED[seq]=CreateBlock(id, x, y, z, r); + if(id==SIGN_ID) UpdateSignText(SAVED[seq],text); + #if defined PRINT_LOADING_INFO + if(blocksam%100==0)printf("Loading blocks: %d",blocksam); + #endif + + + } + fclose(objectsFile); +} + + + + #if defined PRINT_LOADING_INFO + print("Blocks loaded!\n"); + #endif + + + + + print("\n----------------------------------"); + print("Ultra Cubic World server loaded"); + printf("With %d blocks, %d safe zones, %d labels\n",blocksam,zonesam, labelsam); + printf(" -%s aka %s",NICK,FULL_NAME); + printf(" -%s",COPYRIGHT_DATE); + printf(" -%s",LOCATION); + printf(" -Skype: %s",SKYPE); + print(" -All rights reserved\n"); + print("----------------------------------\n"); + + return 1; +} + + + +strtok(const string[], &index) +{ + new length = strlen(string); + while ((index < length) && (string[index] <= ' ')) + { + index++; + } + + new offset = index; + new result[20]; + while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1))) + { + result[index - offset] = string[index]; + index++; + } + result[index - offset] = EOS; + return result; +} + +CreateBlock(blockmodel,Float:x, Float:y, Float:z,rot=0) +{ + new ob; + if(blockmodel0) size=36; + if(strlen(text)>15) size=28; + if(strlen(text)>20) size=20; +SetDynamicObjectMaterialText(BlockAdd[blockid],0,text,OBJECT_MATERIAL_SIZE_256x128,"Arial",size,1,0xFF000000,0,OBJECT_MATERIAL_TEXT_ALIGN_CENTER); +} + +DisableBlock(playerid) +{ + BlockHold[playerid]=0; + + BlockID[playerid]=-1; + + return 1; +} + +FindClosestVal(Float:val,Float:toval, &Float:fval) +{ + new a=0; + new Float:x=0, Float:x2=0; + new Float: val2=val*100; + new val3=floatround(val2,floatround_round); + new val31=val3; + + new Float:val4=toval*100; + + new val5=floatround(val4,floatround_round); + + while (a==0) + { + x= val3 % val5; + x2= val31 % val5; + + if(x==0) a=1; + if(x2==0) a=2; + if(x2!=0 && x!=0) a=0,val3=val3+1,val31=val31-1; + } + if(a==1) fval=float(val3); + if(a==2) fval=float(val31); + fval=fval/100; + + return 1; +} + +forward PlayRadio(playerid, response_code, const data[]); +public PlayRadio(playerid, response_code, const data[]) +{ + + if(response_code == 200) + { + + PlayAudioStreamForPlayer(playerid,"http://ultrabee.dlinkddns.com:7775/live"); + SendClientMessage(playerid, 0xFFFFFFFF,"{00ff00}Our radio is online! You started to listen to it!"); + } + else + { + + SendClientMessage(playerid, 0xFFFFFFFF,"{ff0000}Our radio is offline! {00ff00}We are sorry :("); + } +} + +GetXYInFrontOfPlayer(playerid, &Float:XP, &Float:YP, &Float:ZP, Float:distance) +{ + new + Float:fPX, Float:fPY, Float:fPZ, + Float:fVX, Float:fVY, Float:fVZ; + + + GetPlayerCameraPos(playerid, fPX, fPY, fPZ); + GetPlayerCameraFrontVector(playerid, fVX, fVY, fVZ); + + ZP = fPZ + floatmul(fVZ, distance); + XP = fPX + floatmul(fVX, distance); + YP = fPY + floatmul(fVY, distance); + + if(ZP=0) + { + XP = fPX + floatmul(fVX, distance)/k; + YP = fPY + floatmul(fVY, distance)/k; + } + if(k<0) + { + XP = fPX + floatmul(fVX, distance)/(-k); + YP = fPY + floatmul(fVY, distance)/(-k); + } + } + + +} + +stock abs( value ) +{ + return ( ( value < 0 ) ? ( -value ) : ( value ) ); +} +public OnPlayerKeyStateChange(playerid, newkeys, oldkeys) +{ + + if(PRESSED(BUTTON_SWITCH)) + { + CallLocalFunction( "OnPlayerCommandText", "ds", playerid,"/switch"); + new act=GetPlayerSpecialAction(playerid); + ClearAnimations(playerid); + SetPlayerSpecialAction(playerid,act); + } + + + + + if(PRESSED(BUTTON_DISABLE)) + { + if(BlockHold[playerid]==1) + { + DisableBlock(playerid); + PlayerPlaySound(playerid, 1138, 0.0, 0.0, 0.0); + RotDec[playerid]=0; + } + } + + if(PRESSED(BUTTON_PUT)) + { + if(BlockHold[playerid]==1) + { + if(PutFlood[playerid]==1) return 1; + if(IsPlayerInRangeOfPoint(playerid, 10.0, BASE_PLACE_X, BASE_PLACE_Y, BASE_PLACE_Z)) return Warn(playerid,"{ff0000}You can't build so close to spawn"); + PlayerPlaySound(playerid,6400,0,0,0); + SetTimerEx("PutBlockFromPlayer",400,0,"d",playerid); + SetPlayerTimer("ClearPutFlood",PUT_FLOOD_SECONDS,0); + PutFlood[playerid]=1; + + } + } + + if(PRESSED(BUTTON_DESTROY)) + { + if(DesFlood[playerid]==1) return 1; + PlayerPlaySound(playerid,6400,0,0,0); + SetTimerEx("DestroyBlockFromPlayer",400,0,"d",playerid); + SetPlayerTimer("ClearDesFlood",DES_FLOOD_SECONDS,0); + DesFlood[playerid]=1; + } + + if(PRESSED(BUTTON_ROTATE)) + { + + if(BlockID[playerid]=360) RotDec[playerid]=0; + format(stringu,sizeof(stringu),"{00ff00}You have changed the decoration rotation to %d",RotDec[playerid]); + SendClientMessage(playerid, 0xFFFFFFFF,stringu); + + } + return 1; +} + +public OnDialogResponse(playerid,dialogid,response,listitem,inputtext[]) +{ + switch(dialogid) + { + case DIALOGID+REG_DIALOG: + { + if(response) + { + if(strlen(inputtext)<=0 || strlen(inputtext)>32) return SPD(playerid, DIALOGID+REG_DIALOG, DIALOG_STYLE_PASSWORD, "UCW-register", "{ff0000}Password should have from 1 to 32 characters!", "..::Ok::..", ""); + Register(playerid,inputtext); + } + if(!response) return SPD(playerid, DIALOGID+REG_DIALOG, DIALOG_STYLE_PASSWORD, "UCW-register", "{ff0000}You have to register if you want to play here!", "..::Ok::..", ""); + } + case DIALOGID+LOG_DIALOG: + { + if(response) + { + if(!IsPasswordMatch(playerid,inputtext)) return SPD(playerid, DIALOGID+LOG_DIALOG, DIALOG_STYLE_PASSWORD, "UCW-lgoin", "{ff0000}You have typed a wrong password! Try again!", "..::Ok::..", ""); + Login(playerid); + } + if(!response) return SPD(playerid, DIALOGID+LOG_DIALOG, DIALOG_STYLE_PASSWORD, "UCW-login", "{ff0000}You have to type your password if you want to play here!", "..::Ok::..", ""); + } + case DIALOGID+1: + { + if(response) + { + if(strlen(inputtext)<=0) return SPD(playerid,DIALOGID+1,DIALOG_STYLE_INPUT,"Sign","{ff0000}You didn't type anything!","..::Ok::..","..::No::.."); + UpdateSignText(LastBlock[playerid][0],inputtext); + new idt[100],ft[256]; + format(idt,sizeof(idt),"%d",LastBlock[playerid][1]); + ft=dini_Get(MAPFILE,idt); + format(ft,sizeof(ft),"%s %s",ft,inputtext); + dini_Set(MAPFILE,idt,ft); + } + else + { + UpdateSignText(LastBlock[playerid][0],"Blank sign"); + new idt[100],ft[256]; + format(idt,sizeof(idt),"%d",LastBlock[playerid][1]); + ft=dini_Get(MAPFILE,idt); + format(ft,sizeof(ft),"%s Blank sign",ft); + dini_Set(MAPFILE,idt,ft); + } + } + } + return 1; +} +public OnPlayerEnterDynamicArea(playerid,areaid) +{ + if(areaid==Zone[playerid][0]) Inform(playerid,"{00ff00}You have just entered your own safe zone!"); + else Inform(playerid,"{ffff00}You have just entered someone's safe zone!"); + return 1; +} + +forward Unfreeze(playerid); +public Unfreeze(playerid) +{ +TogglePlayerControllable(playerid,1); +PlayerPlaySound(playerid,1137 ,0.0,0.0,0.0); +GameTextForPlayer(playerid, "~b~Done!", 2000, 3); +CallLocalFunction( "OnPlayerCommandText", "ds", playerid,"/switch"); +} + +IsThereAnyBlock(Float:x,Float:y,Float:z) +{ + new a=0; + for(new i=0;i=SCALE) sc=1; + } + if(x3==0 && y3==0 && z3==0) return 1; + if(IsPlayerInRangeOfPoint(playerid, 1.0, x3, y3, z3)) return PlayerPlaySound(playerid,1150,0,0,0); + if(IsPointInAnyDynamicArea(x3,y3,z3)) + { + if(!IsPointInDynamicArea(Zone[playerid][0], x3,y3,z3)) return Warn(playerid,"{ff0000}This area is protected by /safe! You can't build here!"); + } + + + PlayerPlaySound(playerid,1135,0,0,0); + + new d=0; + new idrd=0; + while (d==0) + { + idrd++; + + if(SAVED[idrd]!=0) d=0; + else d=1, blockidx=idrd; + } + format(idt,sizeof(idt),"%d",blockidx); + format(ft,sizeof(ft),"%d %f %f %f %d",BlockID[playerid],x3,y3,z3,RotDec[playerid]); + dini_Set(MAPFILE,idt,ft); + + + + if(BlockID[playerid]'9' || line[i]<'0') return 0;} + return 1;} diff --git a/pawno/include/Dini.inc b/pawno/include/Dini.inc new file mode 100644 index 0000000..7db7718 --- /dev/null +++ b/pawno/include/Dini.inc @@ -0,0 +1,268 @@ +/* + * Dini 1.6 + * (c) Copyright 2006-2008 by DracoBlue + * + * @author : DracoBlue (http://dracoblue.com) + * @date : 13th May 2006 + * @update : 16th Sep 2008 + * + * This file is provided as is (no warranties). + * + * It's released under the terms of MIT. + * + * Feel free to use it, a little message in + * about box is honouring thing, isn't it? + * + */ + +#if defined _dini_included + #endinput +#endif + +#define _dini_included +#pragma library dini + +#if defined MAX_STRING +#define DINI_MAX_STRING MAX_STRING +#else +#define DINI_MAX_STRING 255 +#endif + +stock dini_Exists(filename[]) { + return fexist(filename); +} + +stock dini_Remove(filename[]) { + return fremove(filename); +} + +stock dini_Create(filename[]) { + if (fexist(filename)) return false; + new File:fhnd; + fhnd=fopen(filename,io_write); + if (fhnd) { + fclose(fhnd); + return true; + } + return false; +} + +stock dini_Set(filename[],key[],value[]) { + // If we have no key, it can't be set + // we also have no chance to set the value, if all together is bigger then the max string + new key_length = strlen(key); + new value_length = strlen(value); + if (key_length==0 || key_length+value_length+2>DINI_MAX_STRING) return false; + + new File:fohnd, File:fwhnd; + new tmpres[DINI_MAX_STRING]; + new bool:wasset=false; + + // Let's remove the old *.part file if there was one. + format(tmpres,sizeof(tmpres),"%s.part",filename); + fremove(tmpres); + + // We'll open the source file. + fohnd=fopen(filename,io_read); + if (!fohnd) return false; + + fwhnd=fopen(tmpres,io_write); + if (!fwhnd) { + // we can't open the second file for writing, so .. let's close the open one and exit. + fclose(fohnd); + return false; + } + + while (fread(fohnd,tmpres)) { + if ( + !wasset + && tmpres[key_length]=='=' + && !strcmp(tmpres, key, true, key_length) + ) { + // We've got what needs to be replaced! + format(tmpres,sizeof(tmpres),"%s=%s",key,value); + wasset=true; + } else { + DINI_StripNewLine(tmpres); + } + fwrite(fwhnd,tmpres); + fwrite(fwhnd,"\r\n"); + } + + if (!wasset) { + format(tmpres,sizeof(tmpres),"%s=%s",key,value); + fwrite(fwhnd,tmpres); + fwrite(fwhnd,"\r\n"); + } + + fclose(fohnd); + fclose(fwhnd); + + format(tmpres,sizeof(tmpres),"%s.part",filename); + if (DINI_fcopytextfile(tmpres,filename)) { + return fremove(tmpres); + } + return false; +} + + +stock dini_IntSet(filename[],key[],value) { + new valuestring[DINI_MAX_STRING]; + format(valuestring,DINI_MAX_STRING,"%d",value); + return dini_Set(filename,key,valuestring); +} + +stock dini_Int(filename[],key[]) { + return strval(dini_Get(filename,key)); +} + +stock dini_FloatSet(filename[],key[],Float:value) { + new valuestring[DINI_MAX_STRING]; + format(valuestring,DINI_MAX_STRING,"%f",value); + return dini_Set(filename,key,valuestring); +} + +stock Float:dini_Float(filename[],key[]) { + return floatstr(dini_Get(filename,key)); +} + +stock dini_Bool(filename[],key[]) { + return strval(dini_Get(filename,key)); +} + +stock dini_BoolSet(filename[],key[],value) { + if (value) { + return dini_Set(filename,key,"1"); + } + return dini_Set(filename,key,"0"); +} + +stock dini_Unset(filename[],key[]) { + // If we have no key, it can't be set + // we also have no chance to unset the key, if all together is bigger then the max string + new key_length = strlen(key); + if (key_length==0 || key_length+2>DINI_MAX_STRING) return false; + + new File:fohnd, File:fwhnd; + new tmpres[DINI_MAX_STRING]; + + // Let's remove the old *.part file if there was one. + format(tmpres,DINI_MAX_STRING,"%s.part",filename); + fremove(tmpres); + + // We'll open the source file. + fohnd=fopen(filename,io_read); + if (!fohnd) return false; + + fwhnd=fopen(tmpres,io_write); + if (!fwhnd) { + // we can't open the second file for writing, so .. let's close the open one and exit. + fclose(fohnd); + return false; + } + + while (fread(fohnd,tmpres)) { + if ( + tmpres[key_length]=='=' + && !strcmp(tmpres, key, true, key_length) + ) { + // We've got what needs to be removed! + } else { + DINI_StripNewLine(tmpres); + fwrite(fwhnd,tmpres); + fwrite(fwhnd,"\r\n"); + } + } + + fclose(fohnd); + fclose(fwhnd); + + format(tmpres,DINI_MAX_STRING,"%s.part",filename); + if (DINI_fcopytextfile(tmpres,filename)) { + return fremove(tmpres); + } + return false; +} + +stock dini_Get(filename[],key[]) { + new tmpres[DINI_MAX_STRING]; + + new key_length = strlen(key); + if (key_length==0 || key_length+2>DINI_MAX_STRING) return tmpres; + + new File:fohnd; + fohnd=fopen(filename,io_read); + if (!fohnd) return tmpres; + + while (fread(fohnd,tmpres)) { + if ( + tmpres[key_length]=='=' + && !strcmp(tmpres, key, true, key_length) + ) { + /* We've got what we need */ + DINI_StripNewLine(tmpres); + strmid(tmpres, tmpres, key_length + 1, strlen(tmpres), DINI_MAX_STRING); + fclose(fohnd); + return tmpres; + } + } + fclose(fohnd); + return tmpres; +} + + +stock dini_Isset(filename[],key[]) { + new key_length = strlen(key); + if (key_length==0 || key_length+2>DINI_MAX_STRING) return false; + + new File:fohnd; + fohnd=fopen(filename,io_read); + if (!fohnd) return false; + + new tmpres[DINI_MAX_STRING]; + while (fread(fohnd,tmpres)) { + if ( + tmpres[key_length]=='=' + && !strcmp(tmpres, key, true, key_length) + ) { + // We've got what we need + fclose(fohnd); + return true; + } + } + fclose(fohnd); + return false; +} + + + +stock DINI_StripNewLine(stringd[]) { + new len = strlen(stringd); + if (stringd[0]==0) return ; + if ((stringd[len - 1] == '\n') || (stringd[len - 1] == '\r')) { + stringd[len - 1] = 0; + if (stringd[0]==0) return ; + if ((stringd[len - 2] == '\n') || (stringd[len - 2] == '\r')) stringd[len - 2] = 0; + } +} + +stock DINI_fcopytextfile(oldname[],newname[]) { + new File:ohnd,File:nhnd; + if (!fexist(oldname)) return false; + ohnd=fopen(oldname,io_read); + if (!ohnd) return false; + nhnd=fopen(newname,io_write); + if (!nhnd) { + fclose(ohnd); + return false; + } + new tmpres[DINI_MAX_STRING]; + while (fread(ohnd,tmpres)) { + DINI_StripNewLine(tmpres); + format(tmpres,sizeof(tmpres),"%s\r\n",tmpres); + fwrite(nhnd,tmpres); + } + fclose(ohnd); + fclose(nhnd); + return true; +} \ No newline at end of file diff --git a/pawno/include/MPM.inc b/pawno/include/MPM.inc new file mode 100644 index 0000000..2cf9ce6 --- /dev/null +++ b/pawno/include/MPM.inc @@ -0,0 +1,967 @@ +// MPM - Model Preview Menus system.(0.3x++) + +// - Creator: Pasha97 (2013-...) +// - Thanks to Doefler and Kalcor + +//Include version: 1.0 + + +/*Available functions + +LoadMPMenu(f_name[]) +HideMPMenu(playerid) +ShowMPMenu(playerid, ListID, header_text[], titles_array[][],titles_amount = 0, dialogBGcolor = 0x34c924BB, previewBGcolor = 0xBEF57499 , tdSelectionColor = 0xCCFF00AA, tdTitleColor = 0xcd5700AA) +ShowDynamicMPMenu(playerid, items_array[], item_amount, header_text[], extraid, Float:Xrot = 0.0, Float:Yrot = 0.0, Float:Zrot = 0.0, Float:mZoom = 1.0, titles_array[][], dialogBGcolor = 0x34c924BB, previewBGcolor = 0xBEF57499, tdSelectionColor = 0xCCFF00AA,tdTitleColor = 0xcd5700AA) + +//NEW +ShowColorMPMenu(playerid, items_array[], item_amount, header_text[], extraid, titles_array[][], dialogBGcolor = 0x34c924BB, previewBGcolor = 0xBEF57499, tdSelectionColor = 0xCCFF00AA,tdTitleColor = 0xcd5700AA) +//This function shows colorful selection, not with models.In this this function items_array[] must be an array of diffrent colors for each item. +*/ + +// Callbacks +forward OnMPMenuResponse(playerid, response, listid, modelid, listitem); +forward OnDynamicMPMenuResponse(playerid, response, extraid, modelid, listitem); + +// Common settings +new MPM_TITLE_ALIGNMENT = 2 /*Alignment of titles (1-left 2-centered 3-right)*/; +new MPM_TITLE_POSITION = 1 /*Position of titles (1-top of the item 2-bottom of the item)*/; + +#define MPM_NEXT_BUTTON "Next" //Text of 'Next' Button +#define MPM_BACK_BUTTON "Back" //Text of 'Back' Button +#define MPM_EXIT_BUTTON "Exit" //Text of 'Exit' Button + +// Settings for static lists +#define MPM_TOTAL_ITEMS 1000 // Max amount of items from all lists +#define MPM_TOTAL_LISTS 90 // Max amount of lists +#define MPM_TOTAL_ROT_ZOOM 100 // Max amount of items using extra information like zoom or rotations + +// Settings for dynamic (per player) lists +#define MPM_DYNAMIC_MAX_ITEMS 1000 + +//All parts of script below are not for usual users! + +#define MPM_INVALID_LISTID MPM_TOTAL_LISTS +#define MPM_DYNAMIC_LISTID (MPM_TOTAL_LISTS+1) +#define MPM_COLOR_LISTID (MPM_TOTAL_LISTS+2) + +new DynamicList[MAX_PLAYERS][MPM_DYNAMIC_MAX_ITEMS]; +new ColorList[MAX_PLAYERS][MPM_DYNAMIC_MAX_ITEMS]; + +new MPM_previewBGcolor[MAX_PLAYERS][MPM_DYNAMIC_MAX_ITEMS]; + + +new NO_TITLES[][]= +{ +" ", +" " +}; + +#define MPM_SELECTION_ITEMS 21 +#define MPM_ITEMS_PER_LINE 7 +#define MPM_DIALOG_BASE_X 75.0 +#define MPM_DIALOG_BASE_Y 120.0//130 +#define MPM_DIALOG_WIDTH 550.0 +#define MPM_DIALOG_HEIGHT 180.0 +#define MPM_SPRITE_DIM_X 60.0 +#define MPM_SPRITE_DIM_Y 70.0 + +new PlayerText:CurrentPageTextDraw[MAX_PLAYERS]; +new PlayerText:HeaderTextDraw[MAX_PLAYERS]; +new PlayerText:BackgroundTextDraw[MAX_PLAYERS]; +new PlayerText:NextButtonTextDraw[MAX_PLAYERS]; +new PlayerText:PrevButtonTextDraw[MAX_PLAYERS]; +new PlayerText:CancelButtonTextDraw[MAX_PLAYERS]; +new PlayerText:ItemsTD[MAX_PLAYERS][MPM_SELECTION_ITEMS]; +new PreviewItemModel[MAX_PLAYERS][MPM_SELECTION_ITEMS]; +new ItemID[MAX_PLAYERS][MPM_SELECTION_ITEMS]; +new PlayerText:Title[MAX_PLAYERS][101]; +new globalItemAt[MAX_PLAYERS]; + +#define MPM_LIST_START 0 +#define MPM_LIST_END 1 +new All_Lists[MPM_TOTAL_LISTS][2]; // list information start/end index + +#define MPM_ITEM_MODEL 0 +#define MPM_ITEM_ROT_ZOOM_ID 1 +new All_Items[MPM_TOTAL_ITEMS][2]; + +new Float:RotZoomInfo[MPM_TOTAL_ROT_ZOOM][4]; // Array for saving rotation and zoom info +new ItemAmount = 0; // Amount of items used +new ListAmount = 0; // Amount of lists used +new RotZoomInfoAmount = 0; // Amount of Rotation/Zoom informations used +#pragma tabsize 0 +//------------------------------------------------ + +stock MPM_GetPagesAmount(ListID) +{ + new ItemAmount_m = MPM_GetAmountOfListItems(ListID); + if((ItemAmount_m >= MPM_SELECTION_ITEMS) && (ItemAmount_m % MPM_SELECTION_ITEMS) == 0) + { + return (ItemAmount_m / MPM_SELECTION_ITEMS); + } + else return (ItemAmount_m / MPM_SELECTION_ITEMS) + 1; +} + +//------------------------------------------------ + +stock MPM_GetPagesAmountEx(playerid) +{ + new ItemAmount_m = MPM_GetAmountOfListItemsEx(playerid); + if((ItemAmount_m >= MPM_SELECTION_ITEMS) && (ItemAmount_m % MPM_SELECTION_ITEMS) == 0) + { + return (ItemAmount_m / MPM_SELECTION_ITEMS); + } + else return (ItemAmount_m / MPM_SELECTION_ITEMS) + 1; +} + +//------------------------------------------------ + +stock MPM_GetAmountOfListItems(ListID) +{ + return (All_Lists[ListID][MPM_LIST_END] - All_Lists[ListID][MPM_LIST_START])+1; +} + +//------------------------------------------------ + +stock MPM_GetAmountOfListItemsEx(playerid) +{ + return GetPVarInt(playerid, "MPM_DYNAMIC_item_amount"); +} +stock MPM_GetAmountOfListItemsEx2(playerid) +{ + return GetPVarInt(playerid, "MPM_COLOR_item_amount"); +} + +//------------------------------------------------ + +stock MPM_GetPlayerCurrentListID(playerid) +{ + if(GetPVarInt(playerid, "MPM_list_active") == 1) return GetPVarInt(playerid, "MPM_list_id"); + else return MPM_INVALID_LISTID; +} + +//------------------------------------------------ + +stock PlayerText:MPM_CreateCurrentPageTextDraw(playerid, Float:Xpos, Float:Ypos) +{ + new PlayerText:txtInit; + txtInit = CreatePlayerTextDraw(playerid, Xpos, Ypos, "0/0"); + PlayerTextDrawUseBox(playerid, txtInit, 0); + PlayerTextDrawLetterSize(playerid, txtInit, 0.4, 1.1); + PlayerTextDrawFont(playerid, txtInit, 1); + PlayerTextDrawSetShadow(playerid, txtInit, 0); + PlayerTextDrawSetOutline(playerid, txtInit, 1); + PlayerTextDrawColor(playerid, txtInit, 0xACCBF1FF); + PlayerTextDrawShow(playerid, txtInit); + return txtInit; +} + +//------------------------------------------------ +// Creates a button textdraw and returns the textdraw ID. + +stock PlayerText:MPM_CreatePlayerDialogButton(playerid, Float:Xpos, Float:Ypos, Float:Width, Float:Height, button_text[]) +{ + new PlayerText:txtInit; + txtInit = CreatePlayerTextDraw(playerid, Xpos, Ypos, button_text); + PlayerTextDrawUseBox(playerid, txtInit, 1); + PlayerTextDrawBoxColor(playerid, txtInit, 0x000000FF); + PlayerTextDrawBackgroundColor(playerid, txtInit, 0x000000FF); + PlayerTextDrawLetterSize(playerid, txtInit, 0.4, 1.1); + PlayerTextDrawFont(playerid, txtInit, 1); + PlayerTextDrawSetShadow(playerid, txtInit, 0); // no shadow + PlayerTextDrawSetOutline(playerid, txtInit, 0); + PlayerTextDrawColor(playerid, txtInit, 0x4A5A6BFF); + PlayerTextDrawSetSelectable(playerid, txtInit, 1); + PlayerTextDrawAlignment(playerid, txtInit, 2); + PlayerTextDrawTextSize(playerid, txtInit, Height, Width); // The width and height are reversed for centering.. something the game does + PlayerTextDrawShow(playerid, txtInit); + return txtInit; +} + +//------------------------------------------------ + +stock PlayerText:MPM_CreatePlayerHeaderTextDraw(playerid, Float:Xpos, Float:Ypos, header_text[]) +{ + new PlayerText:txtInit; + txtInit = CreatePlayerTextDraw(playerid, Xpos, Ypos, header_text); + PlayerTextDrawUseBox(playerid, txtInit, 0); + PlayerTextDrawLetterSize(playerid, txtInit, 1.25, 3.0); + PlayerTextDrawFont(playerid, txtInit, 1); + PlayerTextDrawSetShadow(playerid, txtInit, 0); + PlayerTextDrawSetOutline(playerid, txtInit, 1); + PlayerTextDrawColor(playerid, txtInit, 0xACCBF1FF); + PlayerTextDrawShow(playerid, txtInit); + return txtInit; +} + +//------------------------------------------------ + +stock PlayerText:MPM_CreatePlayerBGTextDraw(playerid, Float:Xpos, Float:Ypos, Float:Width, Float:Height, bgcolor) +{ + new PlayerText:txtBackground = CreatePlayerTextDraw(playerid, Xpos, Ypos," ~n~"); // enough space for everyone + PlayerTextDrawUseBox(playerid, txtBackground, 1); + PlayerTextDrawBoxColor(playerid, txtBackground, bgcolor); + PlayerTextDrawLetterSize(playerid, txtBackground, 5.0, 5.0); + PlayerTextDrawFont(playerid, txtBackground, 0); + PlayerTextDrawSetShadow(playerid, txtBackground, 0); + PlayerTextDrawSetOutline(playerid, txtBackground, 0); + PlayerTextDrawColor(playerid, txtBackground,0x000000FF); + PlayerTextDrawTextSize(playerid, txtBackground, Width, Height); + PlayerTextDrawBackgroundColor(playerid, txtBackground, bgcolor); + PlayerTextDrawShow(playerid, txtBackground); + return txtBackground; +} + +//------------------------------------------------ +// Creates a model preview sprite + +stock PlayerText:MPM_CreateMPTextDraw(playerid, modelindex, Float:Xpos, Float:Ypos, Float:Xrot, Float:Yrot, Float:Zrot, Float:mZoom, Float:width, Float:height, bgcolor) +{ + new PlayerText:txtPlayerSprite = CreatePlayerTextDraw(playerid, Xpos, Ypos, ""); // it has to be set with SetText later + PlayerTextDrawFont(playerid, txtPlayerSprite, TEXT_DRAW_FONT_MODEL_PREVIEW); + PlayerTextDrawColor(playerid, txtPlayerSprite, 0xFFFFFFFF); + PlayerTextDrawBackgroundColor(playerid, txtPlayerSprite, bgcolor); + PlayerTextDrawTextSize(playerid, txtPlayerSprite, width, height); // Text size is the Width:Height + PlayerTextDrawSetPreviewModel(playerid, txtPlayerSprite, modelindex); + PlayerTextDrawSetPreviewRot(playerid,txtPlayerSprite, Xrot, Yrot, Zrot, mZoom); + PlayerTextDrawSetSelectable(playerid, txtPlayerSprite, 1); + PlayerTextDrawShow(playerid,txtPlayerSprite); + return txtPlayerSprite; +} +stock PlayerText:MPM_CreateTitle(playerid, text[], Float:Xpos, Float:Ypos,tdTitleColor) +{ + new Float:XposF,Float:YposF; + if(MPM_TITLE_POSITION == 1) YposF=Ypos; + if(MPM_TITLE_POSITION == 2) YposF=Ypos+50; + if(MPM_TITLE_ALIGNMENT == 1) XposF=Xpos; + if(MPM_TITLE_ALIGNMENT == 2) XposF=Xpos+28; + if(MPM_TITLE_ALIGNMENT == 3) XposF=Xpos+58; + + new PlayerText:txtPlayerSprite = CreatePlayerTextDraw(playerid, XposF, YposF, text); // it has to be set with SetText later + PlayerTextDrawFont(playerid, txtPlayerSprite, 1); + PlayerTextDrawAlignment(playerid, txtPlayerSprite, MPM_TITLE_ALIGNMENT); + if(MPM_TITLE_ALIGNMENT == 2) PlayerTextDrawTextSize(playerid, txtPlayerSprite, 50, 60); + PlayerTextDrawLetterSize(playerid, txtPlayerSprite, 0.35, 1.1); + PlayerTextDrawColor(playerid, txtPlayerSprite, tdTitleColor); + PlayerTextDrawSetShadow(playerid,txtPlayerSprite,0); + PlayerTextDrawSetOutline(playerid,txtPlayerSprite,1); + PlayerTextDrawBackgroundColor(playerid,txtPlayerSprite ,0x000000FF); + PlayerTextDrawShow(playerid,txtPlayerSprite); + return txtPlayerSprite; +} +//------------------------------------------------ + +stock MPM_DestroyPlayerMPs(playerid) +{ + new x=0; + while(x != MPM_SELECTION_ITEMS) { + if(ItemsTD[playerid][x] != PlayerText:INVALID_TEXT_DRAW) { + PlayerTextDrawDestroy(playerid, ItemsTD[playerid][x]); + ItemsTD[playerid][x] = PlayerText:INVALID_TEXT_DRAW; + } + x++; + } + for(new i=0;i<100;i++) + { + if(Title[playerid][i] != PlayerText:INVALID_TEXT_DRAW) + { + PlayerTextDrawDestroy(playerid, Title[playerid][i]); + Title[playerid][i] = PlayerText:INVALID_TEXT_DRAW; + } + } +} + +//------------------------------------------------ + +stock MPM_ShowPlayerMPs(playerid) +{ +//print("showplayermps"); + new bgcolor = GetPVarInt(playerid, "MPM_previewBGcolor"); + new x=0; + new Float:BaseX = MPM_DIALOG_BASE_X; + new Float:BaseY = MPM_DIALOG_BASE_Y - (MPM_SPRITE_DIM_Y * 0.33); // down a bit + new linetracker = 0; + new itemid = 0; + + new MPM_listID = MPM_GetPlayerCurrentListID(playerid); + if(MPM_listID == MPM_DYNAMIC_LISTID) + { +//print("dynamic"); + new itemat = (GetPVarInt(playerid, "MPM_list_page") * MPM_SELECTION_ITEMS); + new Float:rotzoom[4]; + rotzoom[0] = GetPVarFloat(playerid, "MPM_DYNAMIC_Xrot"); + rotzoom[1] = GetPVarFloat(playerid, "MPM_DYNAMIC_Yrot"); + rotzoom[2] = GetPVarFloat(playerid, "MPM_DYNAMIC_Zrot"); + rotzoom[3] = GetPVarFloat(playerid, "MPM_DYNAMIC_Zoom"); + new itemamount = MPM_GetAmountOfListItemsEx(playerid); + // Destroy any previous ones created + MPM_DestroyPlayerMPs(playerid); + + while(x != MPM_SELECTION_ITEMS && itemat < (itemamount)) { + if(linetracker == 0) { + BaseX = MPM_DIALOG_BASE_X + 25.0; // in a bit from the box + BaseY += MPM_SPRITE_DIM_Y + 1.0; // move on the Y for the next line + } + ItemsTD[playerid][x] = MPM_CreateMPTextDraw(playerid, DynamicList[playerid][itemat], BaseX, BaseY, rotzoom[0], rotzoom[1], rotzoom[2], rotzoom[3], MPM_SPRITE_DIM_X, MPM_SPRITE_DIM_Y, bgcolor); + PreviewItemModel[playerid][x] = DynamicList[playerid][itemat]; + ItemID[playerid][x] = itemid; + BaseX += MPM_SPRITE_DIM_X + 1.0; // move on the X for the next sprite + linetracker++; + itemid++; + if(linetracker == MPM_ITEMS_PER_LINE) linetracker = 0; + itemat++; + x++; + } + } + if(MPM_listID == MPM_COLOR_LISTID) + { +//print("color"); + new itemat = (GetPVarInt(playerid, "MPM_list_page") * MPM_SELECTION_ITEMS); + new itemamount = MPM_GetAmountOfListItemsEx2(playerid); + // Destroy any previous ones created + MPM_DestroyPlayerMPs(playerid); +//printf("x=%d != 21, itemat=%d < itemamount=%d",x,itemat,itemamount); + while(x != MPM_SELECTION_ITEMS && itemat < (itemamount)) { + if(linetracker == 0) { + BaseX = MPM_DIALOG_BASE_X + 25.0; // in a bit from the box + BaseY += MPM_SPRITE_DIM_Y + 1.0; // move on the Y for the next line + } +//printf("creating mp number %d, and something is %d",x,itemat); + ItemsTD[playerid][x] = MPM_CreateMPTextDraw(playerid, 19300, BaseX, BaseY, 0, 0, 0, 0, MPM_SPRITE_DIM_X, MPM_SPRITE_DIM_Y, MPM_previewBGcolor[playerid][x]); + PreviewItemModel[playerid][x] = ColorList[playerid][itemat]; + ItemID[playerid][x] = itemid; + BaseX += MPM_SPRITE_DIM_X + 1.0; // move on the X for the next sprite + linetracker++; + itemid++; + if(linetracker == MPM_ITEMS_PER_LINE) linetracker = 0; + itemat++; + x++; + } + } + if(MPM_listID != MPM_COLOR_LISTID && MPM_listID != MPM_DYNAMIC_LISTID) + { +//print("not color and not dynamic"); + new itemat = (All_Lists[MPM_listID][MPM_LIST_START] + (GetPVarInt(playerid, "MPM_list_page") * MPM_SELECTION_ITEMS)); + + // Destroy any previous ones created + MPM_DestroyPlayerMPs(playerid); + + while(x != MPM_SELECTION_ITEMS && itemat < (All_Lists[MPM_listID][MPM_LIST_END]+1)) { + if(linetracker == 0) { + BaseX = MPM_DIALOG_BASE_X + 25.0; // in a bit from the box + BaseY += MPM_SPRITE_DIM_Y + 1.0; // move on the Y for the next line + } + new rzID = All_Items[itemat][MPM_ITEM_ROT_ZOOM_ID]; // avoid long line + if(rzID > -1) ItemsTD[playerid][x] = MPM_CreateMPTextDraw(playerid, All_Items[itemat][MPM_ITEM_MODEL], BaseX, BaseY, RotZoomInfo[rzID][0], RotZoomInfo[rzID][1], RotZoomInfo[rzID][2], RotZoomInfo[rzID][3], MPM_SPRITE_DIM_X, MPM_SPRITE_DIM_Y, bgcolor); + else ItemsTD[playerid][x] = MPM_CreateMPTextDraw(playerid, All_Items[itemat][MPM_ITEM_MODEL], BaseX, BaseY, 0.0, 0.0, 0.0, 1.0, MPM_SPRITE_DIM_X, MPM_SPRITE_DIM_Y, bgcolor); + PreviewItemModel[playerid][x] = All_Items[itemat][MPM_ITEM_MODEL]; + ItemID[playerid][x] = itemid; + BaseX += MPM_SPRITE_DIM_X + 1.0; // move on the X for the next sprite + linetracker++; + itemid++; + if(linetracker == MPM_ITEMS_PER_LINE) linetracker = 0; + itemat++; + x++; + } + } +} + +//------------------------------------------------ + +stock MPM_UpdatePageTextDraw(playerid) +{ + new PageText[64+1]; + new listID = MPM_GetPlayerCurrentListID(playerid); + if(listID == MPM_DYNAMIC_LISTID || listID == MPM_COLOR_LISTID) + { + format(PageText, 64, "%d/%d", GetPVarInt(playerid,"MPM_list_page") + 1, MPM_GetPagesAmountEx(playerid)); + PlayerTextDrawSetString(playerid, CurrentPageTextDraw[playerid], PageText); + } + + else + { + format(PageText, 64, "%d/%d", GetPVarInt(playerid,"MPM_list_page") + 1, MPM_GetPagesAmount(listID)); + PlayerTextDrawSetString(playerid, CurrentPageTextDraw[playerid], PageText); + } +} + +//------------------------------------------------ +stock ShowMPMenu(playerid, ListID, header_text[], titles_array[][],titles_amount = 0, dialogBGcolor = 0x34c924BB, previewBGcolor = 0xBEF57499 , tdSelectionColor = 0xCCFF00AA, tdTitleColor = 0xcd5700AA) +{ + if(!(0 <= ListID < MPM_TOTAL_LISTS && All_Lists[ListID][MPM_LIST_START] != All_Lists[ListID][MPM_LIST_END])) return 0; + MPM_DestroySelectionMenu(playerid); + SetPVarInt(playerid, "MPM_list_page", 0); + SetPVarInt(playerid, "MPM_list_id", ListID); + SetPVarInt(playerid, "MPM_list_active", 1); + SetPVarInt(playerid, "MPM_list_time", GetTickCount()); + + BackgroundTextDraw[playerid] = MPM_CreatePlayerBGTextDraw(playerid, MPM_DIALOG_BASE_X, MPM_DIALOG_BASE_Y + 20.0, MPM_DIALOG_WIDTH, MPM_DIALOG_HEIGHT, dialogBGcolor); + HeaderTextDraw[playerid] = MPM_CreatePlayerHeaderTextDraw(playerid, MPM_DIALOG_BASE_X, MPM_DIALOG_BASE_Y, header_text); + CurrentPageTextDraw[playerid] = MPM_CreateCurrentPageTextDraw(playerid, MPM_DIALOG_WIDTH - 30.0, MPM_DIALOG_BASE_Y + 15.0); + NextButtonTextDraw[playerid] = MPM_CreatePlayerDialogButton(playerid, MPM_DIALOG_WIDTH - 30.0, MPM_DIALOG_BASE_Y+MPM_DIALOG_HEIGHT+100.0, 50.0, 16.0, MPM_NEXT_BUTTON); + PrevButtonTextDraw[playerid] = MPM_CreatePlayerDialogButton(playerid, MPM_DIALOG_WIDTH - 90.0, MPM_DIALOG_BASE_Y+MPM_DIALOG_HEIGHT+100.0, 50.0, 16.0, MPM_BACK_BUTTON); + CancelButtonTextDraw[playerid] = MPM_CreatePlayerDialogButton(playerid, MPM_DIALOG_WIDTH - 440.0, MPM_DIALOG_BASE_Y+MPM_DIALOG_HEIGHT+100.0, 50.0, 16.0, MPM_EXIT_BUTTON); + + SetPVarInt(playerid, "MPM_previewBGcolor", previewBGcolor); + MPM_ShowPlayerMPs(playerid); + MPM_UpdatePageTextDraw(playerid); +if(titles_amount >21) +{ +print("-MPM system- WARNING: Too many titles given to \"ShowMPMenu\", Max titles: 21. This cannot be changed"); +titles_amount=21; +} +if(titles_amount !=0) +{ +new linetracker=0; + new Float:BaseX = MPM_DIALOG_BASE_X; + new Float:BaseY = MPM_DIALOG_BASE_Y - (MPM_SPRITE_DIM_Y * 0.33); // down a bit + for(new i=0;i MPM_DYNAMIC_MAX_ITEMS) + { + item_amount = MPM_DYNAMIC_MAX_ITEMS; + print("-MPM system- WARNING: Too many items given to \"ShowDynamicMPMenu\", increase \"MPM_DYNAMIC_MAX_ITEMS\" to fix this"); + } + if(item_amount > 0) + { + for(new i=0;i MPM_DYNAMIC_MAX_ITEMS) + { + item_amount = MPM_DYNAMIC_MAX_ITEMS; + print("-MPM system- WARNING: Too many items given to \"ShowColorMPMenu\", increase \"MPM_COLOR_MAX_ITEMS\" to fix this"); + } + if(item_amount > 0) + { + for(new i=0;i 0) { + SetPVarInt(playerid, "MPM_list_page", curpage - 1); + MPM_ShowPlayerMPs(playerid); + MPM_UpdatePageTextDraw(playerid); + PlayerPlaySound(playerid, 1084, 0.0, 0.0, 0.0); + } else { + PlayerPlaySound(playerid, 1085, 0.0, 0.0, 0.0); + } + return 1; + } + + // Search in the array of textdraws used for the items + new x=0; + while(x != MPM_SELECTION_ITEMS) { + if(playertextid == ItemsTD[playerid][x]) { + new listID = MPM_GetPlayerCurrentListID(playerid); + if(listID == MPM_DYNAMIC_LISTID) + { + PlayerPlaySound(playerid, 1083, 0.0, 0.0, 0.0); + new item_id = PreviewItemModel[playerid][x]; + new item_id2 = ItemID[playerid][x]; + new extraid = GetPVarInt(playerid, "MPM_DYNAMIC_extraid"); + HideMPMenu(playerid); + CallLocalFunction("OnDynamicMPMenuResponse", "ddddd", playerid, 1, extraid, item_id, item_id2); + + return 1; + } + if(listID == MPM_COLOR_LISTID) + { + PlayerPlaySound(playerid, 1083, 0.0, 0.0, 0.0); + new item_id = PreviewItemModel[playerid][x]; + new item_id2 = ItemID[playerid][x]; + new extraid = GetPVarInt(playerid, "MPM_COLOR_extraid"); + HideMPMenu(playerid); + CallLocalFunction("OnDynamicMPMenuResponse", "ddddd", playerid, 1, extraid, item_id, item_id2); + + return 1; + } + if(listID != MPM_COLOR_LISTID && listID != MPM_DYNAMIC_LISTID) + { + PlayerPlaySound(playerid, 1083, 0.0, 0.0, 0.0); + new item_id = PreviewItemModel[playerid][x]; + new item_id2 = ItemID[playerid][x]; + HideMPMenu(playerid); + CallLocalFunction("OnMPMenuResponse", "ddddd", playerid, 1, listID, item_id, item_id2); + + return 1; + } + } + x++; + } + + return CallLocalFunction("MP_OPCPTD", "ii", playerid, _:playertextid); +} + +#if defined _ALS_OnPlayerClickPlayerTD + #undef OnPlayerClickPlayerTextDraw +#else + #define _ALS_OnPlayerClickPlayerTD +#endif +#define OnPlayerClickPlayerTextDraw MP_OPCPTD + +forward MP_OPCPTD(playerid, PlayerText:playertextid); + +//------------------------------------------------------------------ + + +stock LoadMPMenu(f_name[]) +{ + new File:f, str[75]; + format(str, sizeof(str), "%s", f_name); + f = fopen(str, io_read); + if( !f ) { + printf("-MPM system- WARNING: Failed to load list: \"%s\"", f_name); + return MPM_INVALID_LISTID; + } + + if(ListAmount >= MPM_TOTAL_LISTS) + { + printf("-MPM system- WARNING: Reached maximum amount of lists, increase \"MPM_TOTAL_LISTS\"", f_name); + return MPM_INVALID_LISTID; + } + new tmp_ItemAmount = ItemAmount; // copy value if loading fails + + + new line[128], idxx; + while(fread(f,line,sizeof(line),false)) + { + if(tmp_ItemAmount >= MPM_TOTAL_ITEMS) + { + printf("-MPM system- WARNING: Reached maximum amount of items, increase \"MPM_TOTAL_ITEMS\"", f_name); + break; + } + idxx = 0; + if(!line[0]) continue; + new mID = strval( MPM_strtok(line,idxx) ); + if(0 <= mID < 20000) + { + All_Items[tmp_ItemAmount][MPM_ITEM_MODEL] = mID; + + new tmp_MPM_strtok[20]; + new Float:mRotation[3], Float:mZoom = 1.0; + new bool:useRotation = false; + + tmp_MPM_strtok = MPM_strtok(line,idxx); + if(tmp_MPM_strtok[0]) { + useRotation = true; + mRotation[0] = floatstr(tmp_MPM_strtok); + } + tmp_MPM_strtok = MPM_strtok(line,idxx); + if(tmp_MPM_strtok[0]) { + useRotation = true; + mRotation[1] = floatstr(tmp_MPM_strtok); + } + tmp_MPM_strtok = MPM_strtok(line,idxx); + if(tmp_MPM_strtok[0]) { + useRotation = true; + mRotation[2] = floatstr(tmp_MPM_strtok); + } + tmp_MPM_strtok = MPM_strtok(line,idxx); + if(tmp_MPM_strtok[0]) { + useRotation = true; + mZoom = floatstr(tmp_MPM_strtok); + } + if(useRotation) + { + new bool:foundRotZoom = false; + for(new i=0; i < RotZoomInfoAmount; i++) + { + if(RotZoomInfo[i][0] == mRotation[0] && RotZoomInfo[i][1] == mRotation[1] && RotZoomInfo[i][2] == mRotation[2] && RotZoomInfo[i][3] == mZoom) + { + foundRotZoom = true; + All_Items[tmp_ItemAmount][MPM_ITEM_ROT_ZOOM_ID] = i; + break; + } + } + if(RotZoomInfoAmount < MPM_TOTAL_ROT_ZOOM) + { + if(!foundRotZoom) + { + RotZoomInfo[RotZoomInfoAmount][0] = mRotation[0]; + RotZoomInfo[RotZoomInfoAmount][1] = mRotation[1]; + RotZoomInfo[RotZoomInfoAmount][2] = mRotation[2]; + RotZoomInfo[RotZoomInfoAmount][3] = mZoom; + All_Items[tmp_ItemAmount][MPM_ITEM_ROT_ZOOM_ID] = RotZoomInfoAmount; + RotZoomInfoAmount++; + } + } + else print("-MPM system- WARNING: Not able to save rotation/zoom information. Reached maximum rotation/zoom information count. Increase '#define MPM_TOTAL_ROT_ZOOM' to fix the issue"); + } + else All_Items[tmp_ItemAmount][MPM_ITEM_ROT_ZOOM_ID] = -1; + tmp_ItemAmount++; + } + } + if(tmp_ItemAmount > ItemAmount) // any models loaded ? + { + All_Lists[ListAmount][MPM_LIST_START] = ItemAmount; + ItemAmount = tmp_ItemAmount; // copy back + All_Lists[ListAmount][MPM_LIST_END] = (ItemAmount-1); + + ListAmount++; + return (ListAmount-1); + } + printf("-MPM system- WARNING: No Items found in file: %s", f_name); + return MPM_INVALID_LISTID; +} + + + +stock MPM_strtok(const string[], &index) +{ + new length = strlen(string); + while ((index < length) && (string[index] <= ' ')) + { + index++; + } + + new offset = index; + new result[20]; + while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1))) + { + result[index - offset] = string[index]; + index++; + } + result[index - offset] = EOS; + return result; +} diff --git a/pawno/include/sscanf2.inc b/pawno/include/sscanf2.inc new file mode 100644 index 0000000..3cacbcb --- /dev/null +++ b/pawno/include/sscanf2.inc @@ -0,0 +1,595 @@ +/* + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * [url]http://www.mozilla.org/MPL/[/url] + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is the sscanf 2.0 SA:MP plugin. + * + * The Initial Developer of the Original Code is Alex "Y_Less" Cole. + * Portions created by the Initial Developer are Copyright (C) 2010 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Special Thanks to: + * + * SA:MP Team past, present and future + */ + +#if defined _inc_a_npc + #pragma library sscanf +#elseif !defined _inc_a_samp + #error Please include or first. +#endif + +#define SSCANF:%0(%1) sscanf_%0(%1);public sscanf_%0(%1) + +#if defined sscanf + #error sscanf (possibly the PAWN version) already defined. +#endif + +native sscanf(const data[], const format[], {Float,_}:...); +native unformat(const data[], const format[], {Float,_}:...) = sscanf; +native SSCANF_Init(players, invalid, len); +native SSCANF_Join(playerid, const name[], npc); +native SSCANF_Leave(playerid); + +native SSCANF_Option(const name[], value); + +stock const + SSCANF_QUIET[] = "SSCANF_QUIET", + OLD_DEFAULT_NAME[] = "OLD_DEFAULT_NAME", + MATCH_NAME_PARTIAL[] = "MATCH_NAME_PARTIAL", + CELLMIN_ON_MATCHES[] = "CELLMIN_ON_MATCHES", + OLD_DEFAULT_KUSTOM[] = "OLD_DEFAULT_KUSTOM", + OLD_DEFAULT_CUSTOM[] = "OLD_DEFAULT_CUSTOM"; + +static stock + bool:SSCANF_gInit = false, + SSCANF_g_sPlayers[MAX_PLAYERS char]; + +#if defined _inc_a_npc + forward SSCANF_PlayerCheck(); + + /* + OnNPCModeInit + + Called when the script starts if it is a NPC mode, sets up the system, + then calls the "real" OnNPCModeInit (using the new ALS 2 hook method). + */ + + public OnNPCModeInit() + { + SSCANF_Init(MAX_PLAYERS, INVALID_PLAYER_ID, MAX_PLAYER_NAME); + #if !defined SSCANF_NO_PLAYERS + // Initialise the system. + SSCANF_PlayerCheck(); + SetTimer("SSCANF_PlayerCheck", 1, 1); + #endif + #if defined SSCANF_OnNPCModeInit + SSCANF_OnNPCModeInit(); + #endif + return 1; + } + + #if defined _ALS_OnNPCModeInit + #undef OnNPCModeInit + #else + #define _ALS_OnNPCModeInit + #endif + #define OnNPCModeInit SSCANF_OnNPCModeInit + #if defined SSCANF_OnNPCModeInit + forward SSCANF_OnNPCModeInit(); + #endif + + /* + SSCANF_PlayerCheck + + NPC modes have no "OnPlayerConnect callback, so we need to simulate one. + */ + + #if !defined SSCANF_NO_PLAYERS + public SSCANF_PlayerCheck() + { + for (new i = 0; i != MAX_PLAYERS; ++i) + { + if (IsPlayerConnected(i)) + { + if (!SSCANF_g_sPlayers{i}) + { + new + name[MAX_PLAYER_NAME]; + GetPlayerName(i, name, sizeof (name)); + // We have no way to know if they are an NPC or not! + SSCANF_Join(i, name, 0); + SSCANF_g_sPlayers{i} = 1; + } + } + else + { + if (SSCANF_g_sPlayers{i}) + { + SSCANF_Leave(i); + SSCANF_g_sPlayers{i} = 0; + } + } + } + } + #endif +#else + /* + OnFilterScriptInit + + Called when the script starts if it is a filterscript, sets up the system, + then calls the "real" OnFilterScriptInit (using the new ALS 2 hook + method). + */ + + public OnFilterScriptInit() + { + SSCANF_Init(GetMaxPlayers(), INVALID_PLAYER_ID, MAX_PLAYER_NAME); + SSCANF_gInit = true; + #if defined SSCANF_OnFilterScriptInit + SSCANF_OnFilterScriptInit(); + #endif + return 1; + } + + #if defined _ALS_OnFilterScriptInit + #undef OnFilterScriptInit + #else + #define _ALS_OnFilterScriptInit + #endif + #define OnFilterScriptInit SSCANF_OnFilterScriptInit + #if defined SSCANF_OnFilterScriptInit + forward SSCANF_OnFilterScriptInit(); + #endif + + /* + OnGameModeInit + + Called when the script starts if it is a gamemode. This callback is also + called in filterscripts so we don't want to reinitialise the system in + that case. + */ + + public OnGameModeInit() + { + if (!SSCANF_gInit) + { + SSCANF_Init(GetMaxPlayers(), INVALID_PLAYER_ID, MAX_PLAYER_NAME); + SSCANF_gInit = true; + } + #if defined SSCANF_OnGameModeInit + SSCANF_OnGameModeInit(); + #endif + return 1; + } + + #if defined _ALS_OnGameModeInit + #undef OnGameModeInit + #else + #define _ALS_OnGameModeInit + #endif + #define OnGameModeInit SSCANF_OnGameModeInit + #if defined SSCANF_OnGameModeInit + forward SSCANF_OnGameModeInit(); + #endif + + /* + OnPlayerConnect + + Called when a player connects. Actually increments an internal count so + that if a script ends and "OnPlayerDisconnect" is called then "sscanf" + still knows that the player is really connected. Also stores their name + internally. + */ + + public OnPlayerConnect(playerid) + { + new + name[MAX_PLAYER_NAME]; + GetPlayerName(playerid, name, sizeof (name)); + SSCANF_Join(playerid, name, IsPlayerNPC(playerid)); + #if defined SSCANF_OnPlayerConnect + SSCANF_OnPlayerConnect(playerid); + #endif + return 1; + } + + #if defined _ALS_OnPlayerConnect + #undef OnPlayerConnect + #else + #define _ALS_OnPlayerConnect + #endif + #define OnPlayerConnect SSCANF_OnPlayerConnect + #if defined SSCANF_OnPlayerConnect + forward SSCANF_OnPlayerConnect(playerid); + #endif + + /* + OnPlayerDisconnect + + Called when a player disconnects, or when a script is ended. + */ + + public OnPlayerDisconnect(playerid, reason) + { + #if defined SSCANF_OnPlayerDisconnect + SSCANF_OnPlayerDisconnect(playerid, reason); + #endif + SSCANF_Leave(playerid); + return 1; + } + + #if defined _ALS_OnPlayerDisconnect + #undef OnPlayerDisconnect + #else + #define _ALS_OnPlayerDisconnect + #endif + #define OnPlayerDisconnect SSCANF_OnPlayerDisconnect + #if defined SSCANF_OnPlayerDisconnect + forward SSCANF_OnPlayerDisconnect(playerid, reason); + #endif +#endif + +#define SSCANF_Init +#define SSCANF_Join +#define SSCANF_Leave + +#define extract%0->%1; EXTRN%1;unformat(_:EXTRZ:EXTRV:EXTRX:%0,##,%1,,); +#define unformat(_:EXTRZ:EXTRV:EXTRX:%0,##,%1);%2else if (unformat(_:EXTRV:EXTRX:%0,##,%1)) + +#define EXTRV:EXTRX:%0<%3>##,%9new%1,%2) EXTRY:%0##P<%3>,|||%1|||%2) +#define EXTRX:%0##,%9new%1,%2) EXTRY:%0##,|||%1|||%2) +#define EXTRY: EXTR8:EXTR9:EXTR0:EXTR1:EXTR2:EXTR3:EXTR4: + +#define EXTR8:EXTR9:EXTR0:EXTR1:EXTR2:EXTR3:EXTR4:%0##%1,%2|||%6:%3=%9|||%4) %6_EXTRO:%0##%1,%2|||%3=%9|||%4) +#define EXTR9:EXTR0:EXTR1:EXTR2:EXTR3:EXTR4:%0##%1,%2|||%3=%9|||%4) __EXTRO:%0##%1,%2|||%3=%9|||%4) +#define EXTR0:EXTR1:EXTR2:EXTR3:EXTR4:%0##%1,%2|||%6:%3[%7]|||%4) %6_EXTRW:%0##%1,%2|||%3[%7]|||%4) +#define EXTR1:EXTR2:EXTR3:EXTR4:%0##%1,%2|||%3[%7]|||%4) __EXTRW:%0##%1,%2|||%3|||%4) +#define EXTR2:EXTR3:EXTR4:%0##%1,%2|||%6:%3|||%4) %6_EXTRN:%0##%1,%2|||%3|||%4) +#define EXTR3:EXTR4:%0##%1,,%2||||||%4) %0##%1,%2) +#define EXTR4:%0##%1,%2|||%3|||%4) __EXTRN:%0##%1,%2|||%3|||%4) + +// Optional specifiers. +#define __EXTRO:%0##%1,%2|||%3=%9|||%4,%5) EXTRY:%0##%1I"("#%9")"#,%2,%3|||%4|||%5) +#define Float_EXTRO:%0##%1,%2|||%3=%9|||%4,%5) EXTRY:%0##%1F"("#%9")"#,%2,%3|||%4|||%5) +#define player_EXTRO:%0##%1,%2|||%3=%9|||%4,%5) EXTRY:%0##%1U"("#%9")"#,%2,%3|||%4|||%5) +#define string_EXTRO:%0##%1,%2|||%3[%7]=%9|||%4,%5) EXTRY:%0##%1S"("#%9")"#[%7],%2,%3|||%4|||%5) + +// Normal specifiers (the double underscore is to work for "_:". +#define __EXTRN:%0##%1,%2|||%3|||%4,%5) EXTRY:%0##%1i,%2,%3|||%4|||%5) +#define Float_EXTRN:%0##%1,%2|||%3|||%4,%5) EXTRY:%0##%1f,%2,%3|||%4|||%5) +#define player_EXTRN:%0##%1,%2|||%3|||%4,%5) EXTRY:%0##%1u,%2,%3|||%4|||%5) +//#define string_EXTRW:%0##%1,%2|||%3[%7]|||%4,%5) EXTRY:%0##%1s[%7],%2,%3|||%4|||%5) + +// Array versions of normal specifiers. +#define __EXTRW:%0##%1,%2|||%3[%7]|||%4,%5) EXTRY:%0##%1a[%7],%2,%3|||%4|||%5) +#define Float_EXTRW:%0##%1,%2|||%3[%7]|||%4,%5) EXTRY:%0##%1a[%7],%2,%3|||%4|||%5) +#define player_EXTRW:%0##%1,%2|||%3[%7]|||%4,%5) EXTRY:%0##%1a[%7],%2,%3|||%4|||%5) +#define string_EXTRW:%0##%1,%2|||%3[%7]|||%4,%5) EXTRY:%0##%1s[%7],%2,%3|||%4|||%5) + +// Get rid of excess leading space which causes warnings. +#define EXTRN%0new%1; new%1; + +#if !defined string + #define string: +#endif + +#define player: + +#define hex: +#define hex_EXTRO:%0##%1,%2|||%3=%9|||%4,%5) EXTRY:%0##%1H"("#%9")"#,%2,%3|||%4|||%5) +#define hex_EXTRN:%0##%1,%2|||%3|||%4,%5) EXTRY:%0##%1h,%2,%3|||%4|||%5) +#define hex_EXTRW:%0##%1,%2|||%3[%7]|||%4,%5) EXTRY:%0##%1a[%7],%2,%3|||%4|||%5) + +#define bin: +#define bin_EXTRO:%0##%1,%2|||%3=%9|||%4,%5) EXTRY:%0##%1B"("#%9")"#,%2,%3|||%4|||%5) +#define bin_EXTRN:%0##%1,%2|||%3|||%4,%5) EXTRY:%0##%1b,%2,%3|||%4|||%5) +#define bin_EXTRW:%0##%1,%2|||%3[%7]|||%4,%5) EXTRY:%0##%1a[%7],%2,%3|||%4|||%5) + +#define kustom:%0<%1> %0 +#define kustom_EXTRO:%0##%1,%2|||%3<%8>=%9|||%4,%5) EXTRY:%0##%1K<%8>"("#%9")"#,%2,%3|||%4|||%5) +#define kustom_EXTRN:%0##%1,%2|||%3<%8>|||%4,%5) EXTRY:%0##%1k<%8>,%2,%3|||%4|||%5) +//#define bin_EXTRW:%0##%1,%2|||%3[%7]|||%4,%5) EXTRY:%0##%1a[%7],%2,%3|||%4|||%5) + +SSCANF:weapon(string[]) +{ + // This function is VERY basic, needs VASTLY improving to detect variations. + if ('0' <= string[0] <= '9') + { + new + ret = strval(string); + if (0 <= ret <= 18 || 22 <= ret <= 46) + { + return ret; + } + } + else if (!strcmp(string, "Unarmed")) return 0; + else if (!strcmp(string, "Brass Knuckles")) return 1; + else if (!strcmp(string, "Golf Club")) return 2; + else if (!strcmp(string, "Night Stick")) return 3; + else if (!strcmp(string, "Knife")) return 4; + else if (!strcmp(string, "Baseball Bat")) return 5; + else if (!strcmp(string, "Shovel")) return 6; + else if (!strcmp(string, "Pool cue")) return 7; + else if (!strcmp(string, "Katana")) return 8; + else if (!strcmp(string, "Chainsaw")) return 9; + else if (!strcmp(string, "Purple Dildo")) return 10; + else if (!strcmp(string, "White Dildo")) return 11; + else if (!strcmp(string, "Long White Dildo")) return 12; + else if (!strcmp(string, "White Dildo 2")) return 13; + else if (!strcmp(string, "Flowers")) return 14; + else if (!strcmp(string, "Cane")) return 15; + else if (!strcmp(string, "Grenades")) return 16; + else if (!strcmp(string, "Tear Gas")) return 17; + else if (!strcmp(string, "Molotovs")) return 18; + else if (!strcmp(string, "Pistol")) return 22; + else if (!strcmp(string, "Silenced Pistol")) return 23; + else if (!strcmp(string, "Desert Eagle")) return 24; + else if (!strcmp(string, "Shotgun")) return 25; + else if (!strcmp(string, "Sawn Off Shotgun")) return 26; + else if (!strcmp(string, "Combat Shotgun")) return 27; + else if (!strcmp(string, "Micro Uzi")) return 28; + else if (!strcmp(string, "Mac 10")) return 28; + else if (!strcmp(string, "MP5")) return 29; + else if (!strcmp(string, "AK47")) return 30; + else if (!strcmp(string, "M4")) return 31; + else if (!strcmp(string, "Tec9")) return 32; + else if (!strcmp(string, "Rifle")) return 33; + else if (!strcmp(string, "Sniper Rifle")) return 34; + else if (!strcmp(string, "RPG")) return 35; + else if (!strcmp(string, "Missile Launcher")) return 36; + else if (!strcmp(string, "Flame Thrower")) return 37; + else if (!strcmp(string, "Minigun")) return 38; + else if (!strcmp(string, "Sachel Charges")) return 39; + else if (!strcmp(string, "Detonator")) return 40; + else if (!strcmp(string, "Spray Paint")) return 41; + else if (!strcmp(string, "Fire Extinguisher")) return 42; + else if (!strcmp(string, "Camera")) return 43; + else if (!strcmp(string, "Nightvision Goggles")) return 44; + else if (!strcmp(string, "Thermal Goggles")) return 45; + else if (!strcmp(string, "Parachute")) return 46; + return -1; +} + +SSCANF:vehicle(string[]) +{ + // This function is VERY basic, needs VASTLY improving to detect variations. + if ('0' <= string[0] <= '9') + { + new + ret = strval(string); + if (400 <= ret <= 611) + { + return ret; + } + } + else if (!strcmp(string, "Landstalker")) return 400; + else if (!strcmp(string, "Bravura")) return 401; + else if (!strcmp(string, "Buffalo")) return 402; + else if (!strcmp(string, "Linerunner")) return 403; + else if (!strcmp(string, "Perenniel")) return 404; + else if (!strcmp(string, "Sentinel")) return 405; + else if (!strcmp(string, "Dumper")) return 406; + else if (!strcmp(string, "Firetruck")) return 407; + else if (!strcmp(string, "Trashmaster")) return 408; + else if (!strcmp(string, "Stretch")) return 409; + else if (!strcmp(string, "Manana")) return 410; + else if (!strcmp(string, "Infernus")) return 411; + else if (!strcmp(string, "Voodoo")) return 412; + else if (!strcmp(string, "Pony")) return 413; + else if (!strcmp(string, "Mule")) return 414; + else if (!strcmp(string, "Cheetah")) return 415; + else if (!strcmp(string, "Ambulance")) return 416; + else if (!strcmp(string, "Leviathan")) return 417; + else if (!strcmp(string, "Moonbeam")) return 418; + else if (!strcmp(string, "Esperanto")) return 419; + else if (!strcmp(string, "Taxi")) return 420; + else if (!strcmp(string, "Washington")) return 421; + else if (!strcmp(string, "Bobcat")) return 422; + else if (!strcmp(string, "Mr Whoopee")) return 423; + else if (!strcmp(string, "BF Injection")) return 424; + else if (!strcmp(string, "Hunter")) return 425; + else if (!strcmp(string, "Premier")) return 426; + else if (!strcmp(string, "Enforcer")) return 427; + else if (!strcmp(string, "Securicar")) return 428; + else if (!strcmp(string, "Banshee")) return 429; + else if (!strcmp(string, "Predator")) return 430; + else if (!strcmp(string, "Bus")) return 431; + else if (!strcmp(string, "Rhino")) return 432; + else if (!strcmp(string, "Barracks")) return 433; + else if (!strcmp(string, "Hotknife")) return 434; + else if (!strcmp(string, "Article Trailer")) return 435; + else if (!strcmp(string, "Previon")) return 436; + else if (!strcmp(string, "Coach")) return 437; + else if (!strcmp(string, "Cabbie")) return 438; + else if (!strcmp(string, "Stallion")) return 439; + else if (!strcmp(string, "Rumpo")) return 440; + else if (!strcmp(string, "RC Bandit")) return 441; + else if (!strcmp(string, "Romero")) return 442; + else if (!strcmp(string, "Packer")) return 443; + else if (!strcmp(string, "Monster")) return 444; + else if (!strcmp(string, "Admiral")) return 445; + else if (!strcmp(string, "Squallo")) return 446; + else if (!strcmp(string, "Seasparrow")) return 447; + else if (!strcmp(string, "Pizzaboy")) return 448; + else if (!strcmp(string, "Tram")) return 449; + else if (!strcmp(string, "Article Trailer 2")) return 450; + else if (!strcmp(string, "Turismo")) return 451; + else if (!strcmp(string, "Speeder")) return 452; + else if (!strcmp(string, "Reefer")) return 453; + else if (!strcmp(string, "Tropic")) return 454; + else if (!strcmp(string, "Flatbed")) return 455; + else if (!strcmp(string, "Yankee")) return 456; + else if (!strcmp(string, "Caddy")) return 457; + else if (!strcmp(string, "Solair")) return 458; + else if (!strcmp(string, "Berkley's RC Van")) return 459; + else if (!strcmp(string, "Skimmer")) return 460; + else if (!strcmp(string, "PCJ-600")) return 461; + else if (!strcmp(string, "Faggio")) return 462; + else if (!strcmp(string, "Freeway")) return 463; + else if (!strcmp(string, "RC Baron")) return 464; + else if (!strcmp(string, "RC Raider")) return 465; + else if (!strcmp(string, "Glendale")) return 466; + else if (!strcmp(string, "Oceanic")) return 467; + else if (!strcmp(string, "Sanchez")) return 468; + else if (!strcmp(string, "Sparrow")) return 469; + else if (!strcmp(string, "Patriot")) return 470; + else if (!strcmp(string, "Quad")) return 471; + else if (!strcmp(string, "Coastguard")) return 472; + else if (!strcmp(string, "Dinghy")) return 473; + else if (!strcmp(string, "Hermes")) return 474; + else if (!strcmp(string, "Sabre")) return 475; + else if (!strcmp(string, "Rustler")) return 476; + else if (!strcmp(string, "ZR-350")) return 477; + else if (!strcmp(string, "Walton")) return 478; + else if (!strcmp(string, "Regina")) return 479; + else if (!strcmp(string, "Comet")) return 480; + else if (!strcmp(string, "BMX")) return 481; + else if (!strcmp(string, "Burrito")) return 482; + else if (!strcmp(string, "Camper")) return 483; + else if (!strcmp(string, "Marquis")) return 484; + else if (!strcmp(string, "Baggage")) return 485; + else if (!strcmp(string, "Dozer")) return 486; + else if (!strcmp(string, "Maverick")) return 487; + else if (!strcmp(string, "SAN News Maverick")) return 488; + else if (!strcmp(string, "Rancher")) return 489; + else if (!strcmp(string, "FBI Rancher")) return 490; + else if (!strcmp(string, "Virgo")) return 491; + else if (!strcmp(string, "Greenwood")) return 492; + else if (!strcmp(string, "Jetmax")) return 493; + else if (!strcmp(string, "Hotring Racer")) return 494; + else if (!strcmp(string, "Sandking")) return 495; + else if (!strcmp(string, "Blista Compact")) return 496; + else if (!strcmp(string, "Police Maverick")) return 497; + else if (!strcmp(string, "Boxville")) return 498; + else if (!strcmp(string, "Benson")) return 499; + else if (!strcmp(string, "Mesa")) return 500; + else if (!strcmp(string, "RC Goblin")) return 501; + else if (!strcmp(string, "Hotring Racer")) return 502; + else if (!strcmp(string, "Hotring Racer")) return 503; + else if (!strcmp(string, "Bloodring Banger")) return 504; + else if (!strcmp(string, "Rancher")) return 505; + else if (!strcmp(string, "Super GT")) return 506; + else if (!strcmp(string, "Elegant")) return 507; + else if (!strcmp(string, "Journey")) return 508; + else if (!strcmp(string, "Bike")) return 509; + else if (!strcmp(string, "Mountain Bike")) return 510; + else if (!strcmp(string, "Beagle")) return 511; + else if (!strcmp(string, "Cropduster")) return 512; + else if (!strcmp(string, "Stuntplane")) return 513; + else if (!strcmp(string, "Tanker")) return 514; + else if (!strcmp(string, "Roadtrain")) return 515; + else if (!strcmp(string, "Nebula")) return 516; + else if (!strcmp(string, "Majestic")) return 517; + else if (!strcmp(string, "Buccaneer")) return 518; + else if (!strcmp(string, "Shamal")) return 519; + else if (!strcmp(string, "Hydra")) return 520; + else if (!strcmp(string, "FCR-900")) return 521; + else if (!strcmp(string, "NRG-500")) return 522; + else if (!strcmp(string, "HPV1000")) return 523; + else if (!strcmp(string, "Cement Truck")) return 524; + else if (!strcmp(string, "Towtruck")) return 525; + else if (!strcmp(string, "Fortune")) return 526; + else if (!strcmp(string, "Cadrona")) return 527; + else if (!strcmp(string, "FBI Truck")) return 528; + else if (!strcmp(string, "Willard")) return 529; + else if (!strcmp(string, "Forklift")) return 530; + else if (!strcmp(string, "Tractor")) return 531; + else if (!strcmp(string, "Combine Harvester")) return 532; + else if (!strcmp(string, "Feltzer")) return 533; + else if (!strcmp(string, "Remington")) return 534; + else if (!strcmp(string, "Slamvan")) return 535; + else if (!strcmp(string, "Blade")) return 536; + else if (!strcmp(string, "Freight (Train)")) return 537; + else if (!strcmp(string, "Brownstreak (Train)")) return 538; + else if (!strcmp(string, "Vortex")) return 539; + else if (!strcmp(string, "Vincent")) return 540; + else if (!strcmp(string, "Bullet")) return 541; + else if (!strcmp(string, "Clover")) return 542; + else if (!strcmp(string, "Sadler")) return 543; + else if (!strcmp(string, "Firetruck LA")) return 544; + else if (!strcmp(string, "Hustler")) return 545; + else if (!strcmp(string, "Intruder")) return 546; + else if (!strcmp(string, "Primo")) return 547; + else if (!strcmp(string, "Cargobob")) return 548; + else if (!strcmp(string, "Tampa")) return 549; + else if (!strcmp(string, "Sunrise")) return 550; + else if (!strcmp(string, "Merit")) return 551; + else if (!strcmp(string, "Utility Van")) return 552; + else if (!strcmp(string, "Nevada")) return 553; + else if (!strcmp(string, "Yosemite")) return 554; + else if (!strcmp(string, "Windsor")) return 555; + else if (!strcmp(string, "Monster \"A\"")) return 556; + else if (!strcmp(string, "Monster \"B\"")) return 557; + else if (!strcmp(string, "Uranus")) return 558; + else if (!strcmp(string, "Jester")) return 559; + else if (!strcmp(string, "Sultan")) return 560; + else if (!strcmp(string, "Stratum")) return 561; + else if (!strcmp(string, "Elegy")) return 562; + else if (!strcmp(string, "Raindance")) return 563; + else if (!strcmp(string, "RC Tiger")) return 564; + else if (!strcmp(string, "Flash")) return 565; + else if (!strcmp(string, "Tahoma")) return 566; + else if (!strcmp(string, "Savanna")) return 567; + else if (!strcmp(string, "Bandito")) return 568; + else if (!strcmp(string, "Freight Flat Trailer (Train)")) return 569; + else if (!strcmp(string, "Streak Trailer (Train)")) return 570; + else if (!strcmp(string, "Kart")) return 571; + else if (!strcmp(string, "Mower")) return 572; + else if (!strcmp(string, "Dune")) return 573; + else if (!strcmp(string, "Sweeper")) return 574; + else if (!strcmp(string, "Broadway")) return 575; + else if (!strcmp(string, "Tornado")) return 576; + else if (!strcmp(string, "AT400")) return 577; + else if (!strcmp(string, "DFT-30")) return 578; + else if (!strcmp(string, "Huntley")) return 579; + else if (!strcmp(string, "Stafford")) return 580; + else if (!strcmp(string, "BF-400")) return 581; + else if (!strcmp(string, "Newsvan")) return 582; + else if (!strcmp(string, "Tug")) return 583; + else if (!strcmp(string, "Petrol Trailer")) return 584; + else if (!strcmp(string, "Emperor")) return 585; + else if (!strcmp(string, "Wayfarer")) return 586; + else if (!strcmp(string, "Euros")) return 587; + else if (!strcmp(string, "Hotdog")) return 588; + else if (!strcmp(string, "Club")) return 589; + else if (!strcmp(string, "Freight Box Trailer (Train)")) return 590; + else if (!strcmp(string, "Article Trailer 3")) return 591; + else if (!strcmp(string, "Andromada")) return 592; + else if (!strcmp(string, "Dodo")) return 593; + else if (!strcmp(string, "RC Cam")) return 594; + else if (!strcmp(string, "Launch")) return 595; + else if (!strcmp(string, "Police Car (LSPD)")) return 596; + else if (!strcmp(string, "Police Car (SFPD)")) return 597; + else if (!strcmp(string, "Police Car (LVPD)")) return 598; + else if (!strcmp(string, "Police Ranger")) return 599; + else if (!strcmp(string, "Picador")) return 600; + else if (!strcmp(string, "S.W.A.T.")) return 601; + else if (!strcmp(string, "Alpha")) return 602; + else if (!strcmp(string, "Phoenix")) return 603; + else if (!strcmp(string, "Glendale Shit")) return 604; + else if (!strcmp(string, "Sadler Shit")) return 605; + else if (!strcmp(string, "Baggage Trailer \"A\"")) return 606; + else if (!strcmp(string, "Baggage Trailer \"B\"")) return 607; + else if (!strcmp(string, "Tug Stairs Trailer")) return 608; + else if (!strcmp(string, "Boxville")) return 609; + else if (!strcmp(string, "Farm Trailer")) return 610; + else if (!strcmp(string, "Utility Trailer")) return 611; + return -1; +} + +// Fix the compiler crash when both the PAWN and Plugin versions of sscanf are +// found by renaming the old version at declaration. (fixes.inc compatible +// naming scheme: "BAD_Function()"). +#define sscanf(%0:...) BAD_sscanf(%0:...) diff --git a/pawno/include/streamer.inc b/pawno/include/streamer.inc new file mode 100644 index 0000000..08d82e0 --- /dev/null +++ b/pawno/include/streamer.inc @@ -0,0 +1,512 @@ +/* + * Copyright (C) 2012 Incognito + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include + +// Definitions + +#define STREAMER_TYPE_OBJECT (0) +#define STREAMER_TYPE_PICKUP (1) +#define STREAMER_TYPE_CP (2) +#define STREAMER_TYPE_RACE_CP (3) +#define STREAMER_TYPE_MAP_ICON (4) +#define STREAMER_TYPE_3D_TEXT_LABEL (5) +#define STREAMER_TYPE_AREA (6) + +#define STREAMER_AREA_TYPE_CIRCLE (0) +#define STREAMER_AREA_TYPE_RECTANGLE (1) +#define STREAMER_AREA_TYPE_SPHERE (2) +#define STREAMER_AREA_TYPE_CUBE (3) +#define STREAMER_AREA_TYPE_POLYGON (4) + +#define STREAMER_OBJECT_TYPE_GLOBAL (0) +#define STREAMER_OBJECT_TYPE_PLAYER (1) +#define STREAMER_OBJECT_TYPE_DYNAMIC (2) + +#if !defined FLOAT_INFINITY + #define FLOAT_INFINITY (Float:0x7F800000) +#endif + +// Include File Version + +public Streamer_IncludeFileVersion = 0x26105; + +#pragma unused Streamer_IncludeFileVersion + +// Enumerator + +enum +{ + E_STREAMER_ATTACHED_OBJECT, + E_STREAMER_ATTACHED_PLAYER, + E_STREAMER_ATTACHED_VEHICLE, + E_STREAMER_ATTACH_OFFSET_X, + E_STREAMER_ATTACH_OFFSET_Y, + E_STREAMER_ATTACH_OFFSET_Z, + E_STREAMER_ATTACH_R_X, + E_STREAMER_ATTACH_R_Y, + E_STREAMER_ATTACH_R_Z, + E_STREAMER_ATTACH_X, + E_STREAMER_ATTACH_Y, + E_STREAMER_ATTACH_Z, + E_STREAMER_COLOR, + E_STREAMER_DRAW_DISTANCE, + E_STREAMER_EXTRA_ID, + E_STREAMER_INTERIOR_ID, + E_STREAMER_MAX_X, + E_STREAMER_MAX_Y, + E_STREAMER_MAX_Z, + E_STREAMER_MIN_X, + E_STREAMER_MIN_Y, + E_STREAMER_MIN_Z, + E_STREAMER_MODEL_ID, + E_STREAMER_MOVE_R_X, + E_STREAMER_MOVE_R_Y, + E_STREAMER_MOVE_R_Z, + E_STREAMER_MOVE_SPEED, + E_STREAMER_MOVE_X, + E_STREAMER_MOVE_Y, + E_STREAMER_MOVE_Z, + E_STREAMER_NEXT_X, + E_STREAMER_NEXT_Y, + E_STREAMER_NEXT_Z, + E_STREAMER_PLAYER_ID, + E_STREAMER_R_X, + E_STREAMER_R_Y, + E_STREAMER_R_Z, + E_STREAMER_SIZE, + E_STREAMER_STREAM_DISTANCE, + E_STREAMER_STYLE, + E_STREAMER_TEST_LOS, + E_STREAMER_TYPE, + E_STREAMER_WORLD_ID, + E_STREAMER_X, + E_STREAMER_Y, + E_STREAMER_Z +} + +// Natives (Settings) + +native Streamer_TickRate(rate); +native Streamer_MaxItems(type, items); +native Streamer_VisibleItems(type, items); +native Streamer_CellDistance(Float:distance); +native Streamer_CellSize(Float:size); + +// Natives (Updates) + +native Streamer_ProcessActiveItems(); +native Streamer_ToggleIdleUpdate(playerid, toggle); +native Streamer_ToggleItemUpdate(playerid, type, toggle); +native Streamer_Update(playerid); +native Streamer_UpdateEx(playerid, Float:x, Float:y, Float:z, worldid = -1, interiorid = -1); + +// Natives (Data Manipulation) + +native Streamer_GetFloatData(type, {Text3D,_}:id, data, &Float:result); +native Streamer_SetFloatData(type, {Text3D,_}:id, data, Float:value); +native Streamer_GetIntData(type, {Text3D,_}:id, data); +native Streamer_SetIntData(type, {Text3D,_}:id, data, value); +native Streamer_GetArrayData(type, {Text3D,_}:id, data, dest[], maxlength = sizeof dest); +native Streamer_SetArrayData(type, {Text3D,_}:id, data, const src[], maxlength = sizeof src); +native Streamer_IsInArrayData(type, {Text3D,_}:id, data, value); +native Streamer_AppendArrayData(type, {Text3D,_}:id, data, value); +native Streamer_RemoveArrayData(type, {Text3D,_}:id, data, value); +native Streamer_GetUpperBound(type); + +// Natives (Miscellaneous) + +native Streamer_GetDistanceToItem(Float:x, Float:y, Float:z, type, {Text3D,_}:id, &Float:distance); +native Streamer_IsItemVisible(playerid, type, {Text3D,_}:id); +native Streamer_DestroyAllVisibleItems(playerid, type); +native Streamer_CountVisibleItems(playerid, type); + +// Natives (Objects) + +native CreateDynamicObject(modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = 300.0); +native DestroyDynamicObject(objectid); +native IsValidDynamicObject(objectid); +native SetDynamicObjectPos(objectid, Float:x, Float:y, Float:z); +native GetDynamicObjectPos(objectid, &Float:x, &Float:y, &Float:z); +native SetDynamicObjectRot(objectid, Float:rx, Float:ry, Float:rz); +native GetDynamicObjectRot(objectid, &Float:rx, &Float:ry, &Float:rz); +native MoveDynamicObject(objectid, Float:x, Float:y, Float:z, Float:speed, Float:rx = -1000.0, Float:ry = -1000.0, Float:rz = -1000.0); +native StopDynamicObject(objectid); +native IsDynamicObjectMoving(objectid); +native AttachCameraToDynamicObject(playerid, objectid); +native AttachDynamicObjectToVehicle(objectid, vehicleid, Float:offsetx, Float:offsety, Float:offsetz, Float:rx, Float:ry, Float:rz); +native EditDynamicObject(playerid, objectid); +native GetDynamicObjectMaterial(objectid, materialindex, &modelid, txdname[], texturename[], &materialcolor, maxtxdname = sizeof txdname, maxtexturename = sizeof texturename); +native SetDynamicObjectMaterial(objectid, materialindex, modelid, const txdname[], const texturename[], materialcolor = 0); +native GetDynamicObjectMaterialText(objectid, materialindex, text[], &materialsize, fontface[], &fontsize, &bold, &fontcolor, &backcolor, &textalignment, maxtext = sizeof text, maxfontface = sizeof fontface); +native SetDynamicObjectMaterialText(objectid, materialindex, const text[], materialsize = OBJECT_MATERIAL_SIZE_256x128, const fontface[] = "Arial", fontsize = 24, bold = 1, fontcolor = 0xFFFFFFFF, backcolor = 0, textalignment = 0); +native DestroyAllDynamicObjects(); +native CountDynamicObjects(); + +// Natives (Pickups) + +native CreateDynamicPickup(modelid, type, Float:x, Float:y, Float:z, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = 100.0); +native DestroyDynamicPickup(pickupid); +native IsValidDynamicPickup(pickupid); +native DestroyAllDynamicPickups(); +native CountDynamicPickups(); + +// Natives (Checkpoints) + +native CreateDynamicCP(Float:x, Float:y, Float:z, Float:size, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = 100.0); +native DestroyDynamicCP(checkpointid); +native IsValidDynamicCP(checkpointid); +native TogglePlayerDynamicCP(playerid, checkpointid, toggle); +native TogglePlayerAllDynamicCPs(playerid, toggle); +native IsPlayerInDynamicCP(playerid, checkpointid); +native GetPlayerVisibleDynamicCP(playerid); +native DestroyAllDynamicCPs(); +native CountDynamicCPs(); + +// Natives (Race Checkpoints) + +native CreateDynamicRaceCP(type, Float:x, Float:y, Float:z, Float:nextx, Float:nexty, Float:nextz, Float:size, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = 100.0); +native DestroyDynamicRaceCP(checkpointid); +native IsValidDynamicRaceCP(checkpointid); +native TogglePlayerDynamicRaceCP(playerid, checkpointid, toggle); +native TogglePlayerAllDynamicRaceCPs(playerid, toggle); +native IsPlayerInDynamicRaceCP(playerid, checkpointid); +native GetPlayerVisibleDynamicRaceCP(playerid); +native DestroyAllDynamicRaceCPs(); +native CountDynamicRaceCPs(); + +// Natives (Map Icons) + +native CreateDynamicMapIcon(Float:x, Float:y, Float:z, type, color, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = 100.0); +native DestroyDynamicMapIcon(iconid); +native IsValidDynamicMapIcon(iconid); +native DestroyAllDynamicMapIcons(); +native CountDynamicMapIcons(); + +// Natives (3D Text Labels) + +native Text3D:CreateDynamic3DTextLabel(const text[], color, Float:x, Float:y, Float:z, Float:drawdistance, attachedplayer = INVALID_PLAYER_ID, attachedvehicle = INVALID_VEHICLE_ID, testlos = 0, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = 100.0); +native DestroyDynamic3DTextLabel(Text3D:id); +native IsValidDynamic3DTextLabel(Text3D:id); +native GetDynamic3DTextLabelText(Text3D:id, text[], maxlength = sizeof text); +native UpdateDynamic3DTextLabelText(Text3D:id, color, const text[]); +native DestroyAllDynamic3DTextLabels(); +native CountDynamic3DTextLabels(); + +// Natives (Areas) + +native CreateDynamicCircle(Float:x, Float:y, Float:size, worldid = -1, interiorid = -1, playerid = -1); +native CreateDynamicRectangle(Float:minx, Float:miny, Float:maxx, Float:maxy, worldid = -1, interiorid = -1, playerid = -1); +native CreateDynamicSphere(Float:x, Float:y, Float:z, Float:size, worldid = -1, interiorid = -1, playerid = -1); +native CreateDynamicCube(Float:minx, Float:miny, Float:minz, Float:maxx, Float:maxy, Float:maxz, worldid = -1, interiorid = -1, playerid = -1); +native CreateDynamicPolygon(Float:points[], Float:minz = -FLOAT_INFINITY, Float:maxz = FLOAT_INFINITY, maxpoints = sizeof points, worldid = -1, interiorid = -1, playerid = -1); +native DestroyDynamicArea(areaid); +native IsValidDynamicArea(areaid); +native TogglePlayerDynamicArea(playerid, areaid, toggle); +native TogglePlayerAllDynamicAreas(playerid, toggle); +native IsPlayerInDynamicArea(playerid, areaid); +native IsPlayerInAnyDynamicArea(playerid); +native IsPointInDynamicArea(areaid, Float:x, Float:y, Float:z); +native IsPointInAnyDynamicArea(Float:x, Float:y, Float:z); +native AttachDynamicAreaToObject(areaid, objectid, type = STREAMER_OBJECT_TYPE_DYNAMIC, playerid = INVALID_PLAYER_ID); +native AttachDynamicAreaToPlayer(areaid, playerid); +native AttachDynamicAreaToVehicle(areaid, vehicleid); +native DestroyAllDynamicAreas(); +native CountDynamicAreas(); + +// Natives (Extended) + +native CreateDynamicObjectEx(modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz, Float:drawdistance = 0.0, Float:streamdistance = 200.0, worlds[] = { -1 }, interiors[] = { -1 }, players[] = { -1 }, maxworlds = sizeof worlds, maxinteriors = sizeof interiors, maxplayers = sizeof players); +native CreateDynamicPickupEx(modelid, type, Float:x, Float:y, Float:z, Float:streamdistance = 100.0, worlds[] = { -1 }, interiors[] = { -1 }, players[] = { -1 }, maxworlds = sizeof worlds, maxinteriors = sizeof interiors, maxplayers = sizeof players); +native CreateDynamicCPEx(Float:x, Float:y, Float:z, Float:size, Float:streamdistance = 100.0, worlds[] = { -1 }, interiors[] = { -1 }, players[] = { -1 }, maxworlds = sizeof worlds, maxinteriors = sizeof interiors, maxplayers = sizeof players); +native CreateDynamicRaceCPEx(type, Float:x, Float:y, Float:z, Float:nextx, Float:nexty, Float:nextz, Float:size, Float:streamdistance = 100.0, worlds[] = { -1 }, interiors[] = { -1 }, players[] = { -1 }, maxworlds = sizeof worlds, maxinteriors = sizeof interiors, maxplayers = sizeof players); +native CreateDynamicMapIconEx(Float:x, Float:y, Float:z, type, color, style = MAPICON_LOCAL, Float:streamdistance = 100.0, worlds[] = { -1 }, interiors[] = { -1 }, players[] = { -1 }, maxworlds = sizeof worlds, maxinteriors = sizeof interiors, maxplayers = sizeof players); +native Text3D:CreateDynamic3DTextLabelEx(const text[], color, Float:x, Float:y, Float:z, Float:drawdistance, attachedplayer = INVALID_PLAYER_ID, attachedvehicle = INVALID_VEHICLE_ID, testlos = 0, Float:streamdistance = 100.0, worlds[] = { -1 }, interiors[] = { -1 }, players[] = { -1 }, maxworlds = sizeof worlds, maxinteriors = sizeof interiors, maxplayers = sizeof players); +native CreateDynamicCircleEx(Float:x, Float:y, Float:size, worlds[] = { -1 }, interiors[] = { -1 }, players[] = { -1 }, maxworlds = sizeof worlds, maxinteriors = sizeof interiors, maxplayers = sizeof players); +native CreateDynamicRectangleEx(Float:minx, Float:miny, Float:maxx, Float:maxy, worlds[] = { -1 }, interiors[] = { -1 }, players[] = { -1 }, maxworlds = sizeof worlds, maxinteriors = sizeof interiors, maxplayers = sizeof players); +native CreateDynamicSphereEx(Float:x, Float:y, Float:z, Float:size, worlds[] = { -1 }, interiors[] = { -1 }, players[] = { -1 }, maxworlds = sizeof worlds, maxinteriors = sizeof interiors, maxplayers = sizeof players); +native CreateDynamicCubeEx(Float:minx, Float:miny, Float:minz, Float:maxx, Float:maxy, Float:maxz, worlds[] = { -1 }, interiors[] = { -1 }, players[] = { -1 }, maxworlds = sizeof worlds, maxinteriors = sizeof interiors, maxplayers = sizeof players); +native CreateDynamicPolygonEx(Float:points[], Float:minz = -FLOAT_INFINITY, Float:maxz = FLOAT_INFINITY, maxpoints = sizeof points, worlds[] = { -1 }, interiors[] = { -1 }, players[] = { -1 }, maxworlds = sizeof worlds, maxinteriors = sizeof interiors, maxplayers = sizeof players); + +// Natives (Internal) + +native Streamer_CallbackHook(callback, {Float,_}:...); + +// Callbacks + +forward OnDynamicObjectMoved(objectid); +forward OnPlayerEditDynamicObject(playerid, objectid, response, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz); +forward OnPlayerSelectDynamicObject(playerid, objectid, modelid, Float:x, Float:y, Float:z); +forward OnPlayerPickUpDynamicPickup(playerid, pickupid); +forward OnPlayerEnterDynamicCP(playerid, checkpointid); +forward OnPlayerLeaveDynamicCP(playerid, checkpointid); +forward OnPlayerEnterDynamicRaceCP(playerid, checkpointid); +forward OnPlayerLeaveDynamicRaceCP(playerid, checkpointid); +forward OnPlayerEnterDynamicArea(playerid, areaid); +forward OnPlayerLeaveDynamicArea(playerid, areaid); + +// Callback Hook Section + +#define STREAMER_OPC (0) +#define STREAMER_OPDC (1) +#define STREAMER_OPEO (2) +#define STREAMER_OPSO (3) +#define STREAMER_OPPP (4) +#define STREAMER_OPEC (5) +#define STREAMER_OPLC (6) +#define STREAMER_OPERC (7) +#define STREAMER_OPLRC (8) + +static bool:Streamer_g_OPC = false; +static bool:Streamer_g_OPDC = false; +static bool:Streamer_g_OPEO = false; +static bool:Streamer_g_OPSO = false; +static bool:Streamer_g_OPPP = false; +static bool:Streamer_g_OPEC = false; +static bool:Streamer_g_OPLC = false; +static bool:Streamer_g_OPERC = false; +static bool:Streamer_g_OPLRC = false; + +public OnFilterScriptInit() +{ + Streamer_g_OPC = funcidx("Streamer_OnPlayerConnect") != -1; + Streamer_g_OPDC = funcidx("Streamer_OnPlayerDisconnect") != -1; + Streamer_g_OPEO = funcidx("Streamer_OnPlayerEditObject") != -1; + Streamer_g_OPSO = funcidx("Streamer_OnPlayerSelectObject") != -1; + Streamer_g_OPPP = funcidx("Streamer_OnPlayerPickUpPickup") != -1; + Streamer_g_OPEC = funcidx("Streamer_OnPlayerEnterCP") != -1; + Streamer_g_OPLC = funcidx("Streamer_OnPlayerLeaveCP") != -1; + Streamer_g_OPERC = funcidx("Streamer_OnPlayerEnterRaceCP") != -1; + Streamer_g_OPLRC = funcidx("Streamer_OnPlayerLeaveRaceCP") != -1; + if (funcidx("Streamer_OnFilterScriptInit") != -1) + { + return CallLocalFunction("Streamer_OnFilterScriptInit", ""); + } + return 1; +} + +#if defined _ALS_OnFilterScriptInit + #undef OnFilterScriptInit +#else + #define _ALS_OnFilterScriptInit +#endif +#define OnFilterScriptInit Streamer_OnFilterScriptInit + +forward Streamer_OnFilterScriptInit(); + +public OnGameModeInit() +{ + Streamer_g_OPC = funcidx("Streamer_OnPlayerConnect") != -1; + Streamer_g_OPDC = funcidx("Streamer_OnPlayerDisconnect") != -1; + Streamer_g_OPEO = funcidx("Streamer_OnPlayerEditObject") != -1; + Streamer_g_OPSO = funcidx("Streamer_OnPlayerSelectObject") != -1; + Streamer_g_OPPP = funcidx("Streamer_OnPlayerPickUpPickup") != -1; + Streamer_g_OPEC = funcidx("Streamer_OnPlayerEnterCP") != -1; + Streamer_g_OPLC = funcidx("Streamer_OnPlayerLeaveCP") != -1; + Streamer_g_OPERC = funcidx("Streamer_OnPlayerEnterRaceCP") != -1; + Streamer_g_OPLRC = funcidx("Streamer_OnPlayerLeaveRaceCP") != -1; + if (funcidx("Streamer_OnGameModeInit") != -1) + { + return CallLocalFunction("Streamer_OnGameModeInit", ""); + } + return 1; +} + +#if defined _ALS_OnGameModeInit + #undef OnGameModeInit +#else + #define _ALS_OnGameModeInit +#endif +#define OnGameModeInit Streamer_OnGameModeInit + +forward Streamer_OnGameModeInit(); + +public OnPlayerConnect(playerid) +{ + Streamer_CallbackHook(STREAMER_OPC, playerid); + if (Streamer_g_OPC) + { + return CallLocalFunction("Streamer_OnPlayerConnect", "d", playerid); + } + return 1; +} + +#if defined _ALS_OnPlayerConnect + #undef OnPlayerConnect +#else + #define _ALS_OnPlayerConnect +#endif +#define OnPlayerConnect Streamer_OnPlayerConnect + +forward Streamer_OnPlayerConnect(playerid); + +public OnPlayerDisconnect(playerid, reason) +{ + Streamer_CallbackHook(STREAMER_OPDC, playerid, reason); + if (Streamer_g_OPDC) + { + return CallLocalFunction("Streamer_OnPlayerDisconnect", "dd", playerid, reason); + } + return 1; +} + +#if defined _ALS_OnPlayerDisconnect + #undef OnPlayerDisconnect +#else + #define _ALS_OnPlayerDisconnect +#endif +#define OnPlayerDisconnect Streamer_OnPlayerDisconnect + +forward Streamer_OnPlayerDisconnect(playerid, reason); + +public OnPlayerEditObject(playerid, playerobject, objectid, response, Float:fX, Float:fY, Float:fZ, Float:fRotX, Float:fRotY, Float:fRotZ) +{ + if (playerobject) + { + Streamer_CallbackHook(STREAMER_OPEO, playerid, playerobject, objectid, response, fX, fY, fZ, fRotX, fRotY, fRotZ); + } + if (Streamer_g_OPEO) + { + return CallLocalFunction("Streamer_OnPlayerEditObject", "ddddffffff", playerid, playerobject, objectid, response, fX, fY, fZ, fRotX, fRotY, fRotZ); + } + return 1; +} + +#if defined _ALS_OnPlayerEditObject + #undef OnPlayerEditObject +#else + #define _ALS_OnPlayerEditObject +#endif +#define OnPlayerEditObject Streamer_OnPlayerEditObject + +forward Streamer_OnPlayerEditObject(playerid, playerobject, objectid, response, Float:fX, Float:fY, Float:fZ, Float:fRotX, Float:fRotY, Float:fRotZ); + +public OnPlayerSelectObject(playerid, type, objectid, modelid, Float:fX, Float:fY, Float:fZ) +{ + if (type == SELECT_OBJECT_PLAYER_OBJECT) + { + Streamer_CallbackHook(STREAMER_OPSO, playerid, type, objectid, modelid, fX, fY, fZ); + } + if (Streamer_g_OPSO) + { + return CallLocalFunction("Streamer_OnPlayerSelectObject", "ddddfff", playerid, type, objectid, modelid, fX, fY, fZ); + } + return 1; +} + +#if defined _ALS_OnPlayerSelectObject + #undef OnPlayerSelectObject +#else + #define _ALS_OnPlayerSelectObject +#endif +#define OnPlayerSelectObject Streamer_OnPlayerSelectObject + +forward Streamer_OnPlayerSelectObject(playerid, type, objectid, modelid, Float:fX, Float:fY, Float:fZ); + +public OnPlayerPickUpPickup(playerid, pickupid) +{ + Streamer_CallbackHook(STREAMER_OPPP, playerid, pickupid); + if (Streamer_g_OPPP) + { + return CallLocalFunction("Streamer_OnPlayerPickUpPickup", "dd", playerid, pickupid); + } + return 1; +} + +#if defined _ALS_OnPlayerPickUpPickup + #undef OnPlayerPickUpPickup +#else + #define _ALS_OnPlayerPickUpPickup +#endif +#define OnPlayerPickUpPickup Streamer_OnPlayerPickUpPickup + +forward Streamer_OnPlayerPickUpPickup(playerid, pickupid); + +public OnPlayerEnterCheckpoint(playerid) +{ + Streamer_CallbackHook(STREAMER_OPEC, playerid); + if (Streamer_g_OPEC) + { + return CallLocalFunction("Streamer_OnPlayerEnterCP", "d", playerid); + } + return 1; +} + +#if defined _ALS_OnPlayerEnterCheckpoint + #undef OnPlayerEnterCheckpoint +#else + #define _ALS_OnPlayerEnterCheckpoint +#endif +#define OnPlayerEnterCheckpoint Streamer_OnPlayerEnterCP + +forward Streamer_OnPlayerEnterCP(playerid); + +public OnPlayerLeaveCheckpoint(playerid) +{ + Streamer_CallbackHook(STREAMER_OPLC, playerid); + if (Streamer_g_OPLC) + { + return CallLocalFunction("Streamer_OnPlayerLeaveCP", "d", playerid); + } + return 1; +} + +#if defined _ALS_OnPlayerLeaveCheckpoint + #undef OnPlayerLeaveCheckpoint +#else + #define _ALS_OnPlayerLeaveCheckpoint +#endif +#define OnPlayerLeaveCheckpoint Streamer_OnPlayerLeaveCP + +forward Streamer_OnPlayerLeaveCP(playerid); + +public OnPlayerEnterRaceCheckpoint(playerid) +{ + Streamer_CallbackHook(STREAMER_OPERC, playerid); + if (Streamer_g_OPERC) + { + return CallLocalFunction("Streamer_OnPlayerEnterRaceCP", "d", playerid); + } + return 1; +} + +#if defined _ALS_OnPlayerEnterRaceCP + #undef OnPlayerEnterRaceCheckpoint +#else + #define _ALS_OnPlayerEnterRaceCP +#endif +#define OnPlayerEnterRaceCheckpoint Streamer_OnPlayerEnterRaceCP + +forward Streamer_OnPlayerEnterRaceCP(playerid); + +public OnPlayerLeaveRaceCheckpoint(playerid) +{ + Streamer_CallbackHook(STREAMER_OPLRC, playerid); + if (Streamer_g_OPLRC) + { + return CallLocalFunction("Streamer_OnPlayerLeaveRaceCP", "d", playerid); + } + return 1; +} + +#if defined _ALS_OnPlayerLeaveRaceCP + #undef OnPlayerLeaveRaceCheckpoint +#else + #define _ALS_OnPlayerLeaveRaceCP +#endif +#define OnPlayerLeaveRaceCheckpoint Streamer_OnPlayerLeaveRaceCP + +forward Streamer_OnPlayerLeaveRaceCP(playerid); diff --git a/plugins/Whirlpool.dll b/plugins/Whirlpool.dll new file mode 100644 index 0000000..5d15363 Binary files /dev/null and b/plugins/Whirlpool.dll differ diff --git a/plugins/Whirlpool.so b/plugins/Whirlpool.so new file mode 100644 index 0000000..54278b7 Binary files /dev/null and b/plugins/Whirlpool.so differ diff --git a/plugins/sscanf.dll b/plugins/sscanf.dll new file mode 100644 index 0000000..49c513d Binary files /dev/null and b/plugins/sscanf.dll differ diff --git a/plugins/sscanf.so b/plugins/sscanf.so new file mode 100644 index 0000000..5ed5035 Binary files /dev/null and b/plugins/sscanf.so differ diff --git a/plugins/streamer.dll b/plugins/streamer.dll new file mode 100644 index 0000000..ad6f400 Binary files /dev/null and b/plugins/streamer.dll differ diff --git a/plugins/streamer.so b/plugins/streamer.so new file mode 100644 index 0000000..b8a90e4 Binary files /dev/null and b/plugins/streamer.so differ diff --git a/scriptfiles/GLOBAL_MAP.sav b/scriptfiles/GLOBAL_MAP.sav new file mode 100644 index 0000000..e69de29 diff --git a/scriptfiles/LABELS.sav b/scriptfiles/LABELS.sav new file mode 100644 index 0000000..e69de29 diff --git a/scriptfiles/Nature.txt b/scriptfiles/Nature.txt new file mode 100644 index 0000000..2de43fb --- /dev/null +++ b/scriptfiles/Nature.txt @@ -0,0 +1,8 @@ +11332 90 0 0 0.05 +1303 0 0 0 0.2 +18228 0 0 0 0.05 +18844 0 0 0 0.05 +16202 90 0 0 0.05 +19091 90 0 0 0.2 +1649 0 0 0 0.4 +832 0 0 90 0.17 \ No newline at end of file diff --git a/scriptfiles/SAFE_ZONES.sav b/scriptfiles/SAFE_ZONES.sav new file mode 100644 index 0000000..e69de29 diff --git a/scriptfiles/color.txt b/scriptfiles/color.txt new file mode 100644 index 0000000..1b90058 --- /dev/null +++ b/scriptfiles/color.txt @@ -0,0 +1,9 @@ +19300 +19300 +19300 +19300 +19300 +19300 +19300 +19300 +19300 \ No newline at end of file diff --git a/scriptfiles/decorations.txt b/scriptfiles/decorations.txt new file mode 100644 index 0000000..b70b637 --- /dev/null +++ b/scriptfiles/decorations.txt @@ -0,0 +1,15 @@ +1671 0 0 165 +1720 0 0 165 +1711 0 0 180 1.4 +2635 +1408 +3927 +1802 -15 0 0 1.6 +912 -15 0 180 +2204 -15 0 0 1.4 +2328 -15 0 180 0.6 +3361 +1491 +1502 +1223 +970 \ No newline at end of file diff --git a/scriptfiles/fencing.txt b/scriptfiles/fencing.txt new file mode 100644 index 0000000..ddd40d8 --- /dev/null +++ b/scriptfiles/fencing.txt @@ -0,0 +1,3 @@ +983 0 0 90 0.3 +3282 0 0 0 0.2 +4100 0 0 0 0.3 \ No newline at end of file diff --git a/scriptfiles/glass.txt b/scriptfiles/glass.txt new file mode 100644 index 0000000..1b90058 --- /dev/null +++ b/scriptfiles/glass.txt @@ -0,0 +1,9 @@ +19300 +19300 +19300 +19300 +19300 +19300 +19300 +19300 +19300 \ No newline at end of file diff --git a/scriptfiles/grass.txt b/scriptfiles/grass.txt new file mode 100644 index 0000000..d3f8b2e --- /dev/null +++ b/scriptfiles/grass.txt @@ -0,0 +1,12 @@ +617 +659 +673 +732 +3506 +736 +685 +820 +821 +19473 +869 +870 \ No newline at end of file diff --git a/scriptfiles/last.txt b/scriptfiles/last.txt new file mode 100644 index 0000000..cec06ff --- /dev/null +++ b/scriptfiles/last.txt @@ -0,0 +1,6003 @@ +1=8 5049.439941 1010.239990 6.000000 +2=8 5049.439941 1008.479980 6.000000 +4=8 5049.439941 1004.960021 6.000000 +5=8 5049.439941 1003.200012 6.000000 +7=18 5049.439941 1001.440002 6.000000 +8=8 5049.439941 997.919982 6.000000 +9=8 5049.439941 996.159973 6.000000 +11=8 5049.439941 992.640014 6.000000 +13=8 5051.200195 990.880004 6.000000 +14=8 5052.959960 990.880004 6.000000 +15=8 5056.479980 990.880004 6.000000 +16=8 5054.720214 990.880004 6.000000 +17=8 5058.240234 990.880004 6.000000 +18=8 5060.000000 990.880004 6.000000 +19=8 5063.520019 990.880004 6.000000 +20=8 5061.759765 990.880004 6.000000 +21=8 5063.520019 992.640014 6.000000 +22=8 5063.520019 994.400024 6.000000 +23=8 5063.520019 996.159973 6.000000 +24=8 5063.520019 997.919982 6.000000 +25=8 5063.520019 999.679992 6.000000 +26=8 5063.520019 1001.440002 6.000000 +27=8 5063.520019 1003.200012 6.000000 +28=8 5063.520019 1004.960021 6.000000 +29=8 5063.520019 1006.719970 6.000000 +30=8 5063.520019 1008.479980 6.000000 +31=8 5063.520019 1010.239990 6.000000 +32=8 5061.759765 1010.239990 6.000000 +33=8 5060.000000 1010.239990 6.000000 +34=8 5058.240234 1010.239990 6.000000 +35=8 5054.720214 1010.239990 6.000000 +37=8 5052.959960 1010.239990 6.000000 +39=9 5051.200195 1008.479980 6.000000 +40=9 5052.959960 1006.719970 6.000000 +41=9 5051.200195 1004.960021 6.000000 +42=9 5054.720214 1008.479980 6.000000 +43=9 5058.240234 1008.479980 6.000000 +44=9 5061.759765 1008.479980 6.000000 +45=9 5061.759765 1004.960021 6.000000 +46=9 5061.759765 1001.440002 6.000000 +47=9 5061.759765 994.400024 6.000000 +48=9 5061.759765 997.919982 6.000000 +49=9 5060.000000 992.640014 6.000000 +50=9 5060.000000 996.159973 6.000000 +51=9 5058.240234 994.400024 6.000000 +53=9 5060.000000 999.679992 6.000000 +55=9 5060.000000 1003.200012 6.000000 +56=9 5058.240234 1004.960021 6.000000 +57=9 5060.000000 1006.719970 6.000000 +58=9 5056.479980 1006.719970 6.000000 +59=9 5054.720214 1004.960021 6.000000 +60=9 5056.479980 1003.200012 6.000000 +61=9 5054.720214 1001.440002 6.000000 +62=9 5052.959960 1003.200012 6.000000 +63=9 5051.200195 1001.440002 6.000000 +64=9 5052.959960 999.679992 6.000000 +66=9 5052.959960 996.159973 6.000000 +67=9 5051.200195 994.400024 6.000000 +68=9 5052.959960 992.640014 6.000000 +69=9 5054.720214 994.400024 6.000000 +70=9 5056.479980 992.640014 6.000000 +71=9 5056.479980 996.159973 6.000000 +72=9 5054.720214 997.919982 6.000000 +73=9 5056.479980 999.679992 6.000000 +74=5 5061.759765 1006.719970 6.000000 +75=5 5060.000000 1008.479980 6.000000 +76=5 5058.240234 1006.719970 6.000000 +77=5 5056.479980 1008.479980 6.000000 +78=5 5060.000000 1004.960021 6.000000 +79=5 5056.479980 1004.960021 6.000000 +80=5 5054.720214 1006.719970 6.000000 +81=5 5052.959960 1008.479980 6.000000 +82=5 5051.200195 1006.719970 6.000000 +83=5 5052.959960 1004.960021 6.000000 +85=5 5051.200195 1003.200012 6.000000 +86=5 5051.200195 996.159973 6.000000 +87=5 5052.959960 994.400024 6.000000 +88=5 5051.200195 992.640014 6.000000 +89=5 5054.720214 992.640014 6.000000 +90=5 5058.240234 992.640014 6.000000 +91=5 5061.759765 992.640014 6.000000 +92=5 5060.000000 994.400024 6.000000 +93=5 5056.479980 994.400024 6.000000 +94=5 5054.720214 996.159973 6.000000 +95=5 5052.959960 997.919982 6.000000 +97=5 5052.959960 1001.440002 6.000000 +98=5 5054.720214 1003.200012 6.000000 +100=5 5058.240234 1003.200012 6.000000 +101=5 5060.000000 1001.440002 6.000000 +102=5 5061.759765 1003.200012 6.000000 +103=5 5061.759765 999.679992 6.000000 +104=5 5060.000000 997.919982 6.000000 +105=5 5061.759765 996.159973 6.000000 +106=5 5058.240234 996.159973 6.000000 +107=5 5056.479980 997.919982 6.000000 +108=5 5058.240234 999.679992 6.000000 +111=7 5049.439941 1010.239990 10.500000 +112=7 5063.520019 1010.239990 7.500000 +113=7 5063.520019 1010.239990 9.000000 +114=7 5063.520019 1010.239990 10.500000 +115=7 5063.520019 990.880004 7.500000 +116=7 5063.520019 990.880004 9.000000 +117=7 5063.520019 990.880004 10.500000 +118=7 5049.439941 990.880004 7.500000 +119=7 5049.439941 990.880004 9.000000 +120=7 5049.439941 990.880004 10.500000 +121=7 5063.520019 1010.239990 12.000000 +122=7 5063.520019 1008.479980 12.000000 +123=7 5063.520019 1006.719970 12.000000 +124=7 5063.520019 1004.960021 12.000000 +125=7 5063.520019 999.679992 12.000000 +126=7 5063.520019 1001.440002 12.000000 +127=7 5063.520019 1003.200012 12.000000 +128=7 5063.520019 997.919982 12.000000 +129=7 5063.520019 996.159973 12.000000 +130=7 5063.520019 994.400024 12.000000 +131=7 5063.520019 992.640014 12.000000 +132=7 5063.520019 990.880004 12.000000 +133=7 5061.759765 1010.239990 12.000000 +134=7 5060.000000 1010.239990 12.000000 +138=7 5052.959960 1010.239990 12.000000 +139=7 5049.439941 1010.239990 12.000000 +140=7 5051.200195 1010.239990 12.000000 +141=7 5061.759765 990.880004 12.000000 +142=7 5060.000000 990.880004 12.000000 +143=7 5058.240234 990.880004 12.000000 +144=7 5056.479980 990.880004 12.000000 +145=7 5054.720214 990.880004 12.000000 +146=7 5052.959960 990.880004 12.000000 +147=7 5051.200195 990.880004 12.000000 +148=7 5049.439941 990.880004 12.000000 +149=7 5049.439941 1008.479980 12.000000 +150=7 5049.439941 1006.719970 12.000000 +151=7 5049.439941 1004.960021 12.000000 +152=7 5049.439941 1003.200012 12.000000 +153=7 5049.439941 1001.440002 12.000000 +154=7 5049.439941 992.640014 12.000000 +155=7 5049.439941 994.400024 12.000000 +156=7 5049.439941 996.159973 12.000000 +157=7 5049.439941 999.679992 12.000000 +158=7 5049.439941 997.919982 12.000000 +159=1 5063.520019 1008.479980 7.500000 +160=1 5063.520019 1008.479980 9.000000 +161=1 5063.520019 1008.479980 10.500000 +162=1 5063.520019 1006.719970 7.500000 +163=1 5063.520019 1006.719970 9.000000 +164=1 5063.520019 1006.719970 10.500000 +165=1 5063.520019 1004.960021 7.500000 +166=1 5052.959960 1010.239990 9.000000 +167=1 5063.520019 1004.960021 10.500000 +168=1 5063.520019 1003.200012 10.500000 +169=1 5063.520019 1001.440002 10.500000 +170=1 5063.520019 999.679992 10.500000 +171=1 5063.520019 999.679992 9.000000 +172=36 5049.439941 996.159973 9.000000 +173=36 5051.200195 990.880004 9.000000 +174=1 5063.520019 1003.200012 9.000000 +175=1 5063.520019 1003.200012 7.500000 +176=1 5063.520019 1001.440002 7.500000 +177=1 5063.520019 999.679992 7.500000 +178=1 5063.520019 997.919982 7.500000 +179=1 5063.520019 994.400024 7.500000 +180=1 5063.520019 992.640014 7.500000 +181=1 5063.520019 992.640014 9.000000 +182=1 5063.520019 992.640014 10.500000 +183=1 5063.520019 994.400024 10.500000 +184=36 5054.720214 990.880004 9.000000 +185=1 5063.520019 997.919982 10.500000 +186=1 5063.520019 996.159973 10.500000 +187=1 5049.439941 992.640014 7.500000 +188=1 5063.520019 996.159973 7.500000 +189=1 5063.520019 996.159973 9.000000 +190=1 5049.439941 994.400024 7.500000 +191=1 5049.439941 996.159973 7.500000 +192=1 5049.439941 997.919982 7.500000 +193=2 5049.439941 999.679992 9.000000 +197=1 5049.439941 1004.960021 7.500000 +198=1 5049.439941 1008.479980 7.500000 +199=1 5049.439941 1008.479980 10.500000 +200=1 5049.439941 1006.719970 10.500000 +201=1 5049.439941 1003.200012 10.500000 +202=1 5049.439941 1004.960021 10.500000 +203=1 5049.439941 1001.440002 10.500000 +204=1 5049.439941 992.640014 10.500000 +205=1 5049.439941 994.400024 10.500000 +206=1 5049.439941 996.159973 10.500000 +207=1 5049.439941 997.919982 10.500000 +208=1 5049.439941 999.679992 10.500000 +209=1 5049.439941 992.640014 9.000000 +210=1 5049.439941 994.400024 9.000000 +211=36 5058.240234 990.880004 9.000000 +213=1 5049.439941 997.919982 9.000000 +214=18 5047.680175 1003.200012 6.000000 +216=1 5049.439941 1008.479980 9.000000 +217=36 5061.759765 990.880004 9.000000 +218=18 5047.680175 1001.440002 6.000000 +219=1 5061.759765 1010.239990 7.500000 +220=1 5051.200195 1010.239990 7.500000 +221=1 5052.959960 1010.239990 7.500000 +222=1 5054.720214 1010.239990 7.500000 +223=7 5049.439941 1010.239990 9.000000 +224=1 5058.240234 1010.239990 7.500000 +225=1 5060.000000 1010.239990 7.500000 +226=1 5061.759765 1010.239990 10.500000 +227=1 5060.000000 1010.239990 10.500000 +228=1 5058.240234 1010.239990 10.500000 +233=7 5049.439941 1010.239990 7.500000 +234=36 5063.520019 994.400024 9.000000 +236=1 5060.000000 1010.239990 9.000000 +237=36 5063.520019 997.919982 9.000000 +238=36 5063.520019 1001.440002 9.000000 +239=36 5063.520019 1004.960021 9.000000 +240=36 5061.759765 1010.239990 9.000000 +241=1 5061.759765 990.880004 7.500000 +242=1 5060.000000 990.880004 7.500000 +243=1 5058.240234 990.880004 7.500000 +244=1 5056.479980 990.880004 7.500000 +245=1 5054.720214 990.880004 7.500000 +246=1 5054.720214 990.880004 7.500000 +247=1 5052.959960 990.880004 7.500000 +248=1 5051.200195 990.880004 7.500000 +249=36 5058.240234 1010.239990 9.000000 +250=1 5051.200195 990.880004 10.500000 +251=1 5052.959960 990.880004 10.500000 +252=1 5054.720214 990.880004 10.500000 +253=1 5056.479980 990.880004 10.500000 +254=1 5058.240234 990.880004 10.500000 +255=1 5060.000000 990.880004 10.500000 +256=1 5061.759765 990.880004 10.500000 +257=1 5060.000000 990.880004 9.000000 +258=1 5056.479980 990.880004 9.000000 +259=1 5052.959960 990.880004 9.000000 +260=36 5054.720214 1010.239990 9.000000 +261=36 5051.200195 1010.239990 9.000000 +262=36 5049.439941 1006.719970 9.000000 +263=18 5049.439941 999.679992 6.000000 +264=39 5042.399902 1010.239990 6.000000 +265=39 5042.399902 1006.719970 6.000000 +266=7 5061.759765 1004.960021 12.000000 +267=7 5061.759765 1006.719970 12.000000 +268=7 5061.759765 1008.479980 12.000000 +269=7 5061.759765 1003.200012 12.000000 +270=7 5061.759765 1001.440002 12.000000 +271=7 5061.759765 999.679992 12.000000 +272=7 5061.759765 997.919982 12.000000 +273=7 5061.759765 994.400024 12.000000 +274=7 5061.759765 996.159973 12.000000 +275=7 5061.759765 992.640014 12.000000 +276=7 5060.000000 992.640014 12.000000 +277=7 5056.479980 992.640014 12.000000 +278=7 5058.240234 992.640014 12.000000 +279=7 5052.959960 992.640014 12.000000 +280=7 5054.720214 992.640014 12.000000 +281=7 5051.200195 992.640014 12.000000 +282=7 5051.200195 994.400024 12.000000 +283=7 5051.200195 996.159973 12.000000 +284=7 5051.200195 997.919982 12.000000 +285=7 5051.200195 999.679992 12.000000 +287=7 5051.200195 1001.440002 12.000000 +288=7 5051.200195 1004.960021 12.000000 +289=8 5051.200195 1010.239990 6.000000 +290=7 5051.200195 1006.719970 12.000000 +291=8 5049.439941 994.400024 6.000000 +292=2 5049.439941 999.679992 7.500000 +296=7 5060.000000 1004.960021 12.000000 +297=7 5060.000000 1006.719970 12.000000 +298=7 5060.000000 1003.200012 12.000000 +299=7 5060.000000 999.679992 12.000000 +300=7 5060.000000 1001.440002 12.000000 +301=7 5060.000000 997.919982 12.000000 +302=7 5060.000000 994.400024 12.000000 +303=7 5060.000000 996.159973 12.000000 +304=7 5058.240234 994.400024 12.000000 +305=7 5056.479980 994.400024 12.000000 +306=7 5052.959960 994.400024 12.000000 +307=7 5054.720214 994.400024 12.000000 +308=7 5052.959960 996.159973 12.000000 +309=7 5052.959960 997.919982 12.000000 +310=7 5052.959960 999.679992 12.000000 +311=7 5052.959960 1001.440002 12.000000 +312=7 5052.959960 1003.200012 12.000000 +313=7 5052.959960 1004.960021 12.000000 +314=7 5052.959960 1006.719970 12.000000 +315=7 5056.479980 1006.719970 12.000000 +316=7 5054.720214 1006.719970 12.000000 +317=7 5058.240234 1006.719970 12.000000 +319=7 5058.240234 1004.960021 12.000000 +320=7 5056.479980 1004.960021 12.000000 +321=7 5054.720214 1003.200012 12.000000 +322=7 5054.720214 1004.960021 12.000000 +325=12 5118.080078 982.080017 6.000000 0 +326=12 5119.839843 982.080017 6.000000 0 +327=12 5121.600097 982.080017 6.000000 0 +328=7 5058.240234 996.159973 12.000000 +329=12 5123.359863 982.080017 6.000000 0 +330=12 5125.120117 982.080017 6.000000 0 +331=12 5126.879882 982.080017 6.000000 0 +332=12 5128.640136 982.080017 6.000000 0 +343=12 5128.640136 996.159973 6.000000 0 +344=14 5126.879882 983.840026 6.000000 0 +346=16 5049.439941 1001.440002 13.500000 +347=12 5144.479980 989.119995 10.500000 0 +348=12 5142.720214 989.119995 10.500000 0 +349=12 5140.959960 989.119995 10.500000 0 +350=12 5140.959960 990.880004 10.500000 0 +351=12 5140.959960 992.640014 10.500000 0 +352=12 5140.959960 994.400024 7.500000 0 +353=12 5140.959960 994.400024 9.000000 0 +354=12 5140.959960 994.400024 10.500000 0 +355=2 5049.439941 1003.200012 9.000000 +357=2 5049.439941 1003.200012 7.500000 +359=14 5047.680175 999.679992 9.000000 +360=40 5042.399902 976.799987 6.000000 +361=28 4898.080078 1008.479980 6.000000 +362=28 4898.080078 1008.479980 7.500000 +363=28 4898.080078 1008.479980 9.000000 +364=28 4898.080078 1008.479980 10.500000 +365=28 4898.080078 1008.479980 12.000000 +366=28 4898.080078 1010.239990 12.000000 +367=28 4898.080078 1012.000000 10.500000 +369=24 5035.359863 924.000000 6.000000 +370=24 5033.600097 924.000000 6.000000 +371=0 5051.200195 982.080017 9.000000 +372=0 5051.200195 983.840026 9.000000 +374=0 5051.200195 976.799987 9.000000 +375=0 5049.439941 980.320007 9.000000 +376=0 5047.680175 980.320007 9.000000 +377=1 5049.439941 1004.960021 9.000000 +378=0 5054.720214 980.320007 9.000000 +379=0 5052.959960 978.559997 9.000000 +380=0 5049.439941 978.559997 9.000000 +381=0 5049.439941 982.080017 9.000000 +382=24 5031.839843 924.000000 6.000000 +383=27 4898.080078 1033.119995 7.500000 +384=0 5052.959960 980.320007 10.500000 +385=24 5030.080078 924.000000 6.000000 +386=0 5049.439941 982.080017 10.500000 +387=0 5052.959960 982.080017 9.000000 +388=0 5052.959960 982.080017 10.500000 +389=0 5051.200195 982.080017 10.500000 +390=0 5052.959960 978.559997 10.500000 +391=0 5051.200195 978.559997 10.500000 +392=0 5049.439941 978.559997 10.500000 +393=0 5049.439941 980.320007 10.500000 +394=1 5054.720214 1010.239990 10.500000 +396=35 4898.080078 1012.000000 9.000000 +398=35 4898.080078 1012.000000 7.500000 +401=35 4898.080078 1010.239990 6.000000 +408=22 5045.919921 1019.039978 6.000000 +409=22 5044.160156 1019.039978 6.000000 +436=27 4898.080078 1033.119995 10.500000 +437=28 4898.080078 1019.039978 6.000000 +438=28 4898.080078 1019.039978 7.500000 +439=28 4898.080078 1019.039978 9.000000 +440=28 4898.080078 1019.039978 12.000000 +442=1 5052.959960 1010.239990 10.500000 +455=28 4898.080078 1022.559997 7.500000 +456=1 5056.479980 1010.239990 7.500000 +459=12 5017.759765 908.159973 6.000000 +480=12 5019.520019 908.159973 6.000000 +515=28 4898.080078 1022.559997 9.000000 +520=22 5045.919921 1020.799987 6.000000 +546=16 5058.240234 1010.239990 13.500000 +547=27 4898.080078 1024.319946 10.500000 +549=28 4898.080078 1026.079956 12.000000 +550=27 4898.080078 1024.319946 6.000000 +551=28 4898.080078 1026.079956 6.000000 +552=28 4898.080078 1029.599975 6.000000 +554=28 4898.080078 1029.599975 7.500000 +555=28 4898.080078 1029.599975 9.000000 +556=28 4898.080078 1029.599975 10.500000 +558=28 4898.080078 1029.599975 12.000000 +560=28 4898.080078 1033.119995 12.000000 +562=28 4898.080078 1033.119995 6.000000 +563=39 5042.399902 978.559997 6.000000 +564=28 4898.080078 1031.359985 9.000000 +565=39 5044.160156 976.799987 6.000000 +566=24 5024.799804 924.000000 6.000000 +567=39 5047.680175 976.799987 6.000000 +568=39 5049.439941 976.799987 6.000000 +569=39 5051.200195 976.799987 6.000000 +570=39 5052.959960 976.799987 6.000000 +571=39 5054.720214 976.799987 6.000000 +572=39 5056.479980 976.799987 6.000000 +573=39 5058.240234 976.799987 6.000000 +574=39 5060.000000 976.799987 6.000000 +575=39 5061.759765 976.799987 6.000000 +576=39 5063.520019 976.799987 6.000000 +577=39 5065.279785 976.799987 6.000000 +578=39 5067.040039 976.799987 6.000000 +579=39 5068.799804 976.799987 6.000000 +580=39 5068.799804 978.559997 6.000000 +581=39 5068.799804 980.320007 6.000000 +582=39 5068.799804 982.080017 6.000000 +583=39 5068.799804 983.840026 6.000000 +584=41 5068.799804 985.599975 6.000000 +585=39 5068.799804 987.359985 6.000000 +586=39 5068.799804 989.119995 6.000000 +587=39 5068.799804 990.880004 6.000000 +588=39 5068.799804 992.640014 6.000000 +589=39 5068.799804 994.400024 6.000000 +590=39 5068.799804 996.159973 6.000000 +591=39 5068.799804 996.159973 6.000000 +592=39 5068.799804 997.919982 6.000000 +593=39 5068.799804 999.679992 6.000000 +594=39 5068.799804 1001.440002 6.000000 +595=39 5068.799804 1003.200012 6.000000 +596=39 5068.799804 1004.960021 6.000000 +597=39 5068.799804 1006.719970 6.000000 +598=39 5068.799804 1010.239990 6.000000 +599=39 5068.799804 1008.479980 6.000000 +600=39 5068.799804 1012.000000 6.000000 +601=39 5068.799804 1013.760009 6.000000 +602=39 5068.799804 1015.520019 6.000000 +603=39 5065.279785 1019.039978 6.000000 +604=39 5067.040039 1019.039978 6.000000 +605=39 5068.799804 1019.039978 6.000000 +606=39 5068.799804 1017.280029 6.000000 +607=18 5047.680175 999.679992 6.000000 +608=12 5021.279785 908.159973 6.000000 +609=12 5024.799804 908.159973 6.000000 +612=39 5042.399902 1008.479980 6.000000 +614=39 5042.399902 1012.000000 6.000000 +617=22 5044.160156 1020.799987 6.000000 +619=41 5049.439941 1004.960021 6.000000 +620=41 5047.680175 1004.960021 6.000000 +621=41 5045.919921 1004.960021 6.000000 +622=41 5044.160156 1004.960021 6.000000 +623=41 5049.439941 997.919982 6.000000 +624=41 5047.680175 997.919982 6.000000 +625=41 5045.919921 997.919982 6.000000 +627=18 5045.919921 1003.200012 6.000000 +628=25 4899.839843 1036.640014 10.500000 +629=25 4899.839843 1036.640014 12.000000 +630=25 4899.839843 1040.160034 6.000000 +631=25 4899.839843 1041.920043 7.500000 +632=25 4899.839843 1043.680053 7.500000 +633=25 4899.839843 1045.439941 6.000000 +634=25 4899.839843 1047.199951 7.500000 +635=25 4899.839843 1047.199951 9.000000 +636=25 4899.839843 1048.959960 10.500000 +637=25 4899.839843 1048.959960 12.000000 +638=25 4899.839843 1052.479980 6.000000 +639=25 4899.839843 1052.479980 7.500000 +640=25 4899.839843 1052.479980 9.000000 +641=25 4899.839843 1052.479980 10.500000 +642=25 4899.839843 1054.239990 12.000000 +643=25 4899.839843 1056.000000 10.500000 +644=25 4899.839843 1054.239990 9.000000 +645=25 4899.839843 1056.000000 9.000000 +646=25 4899.839843 1056.000000 7.500000 +647=25 4899.839843 1056.000000 6.000000 +648=25 4899.839843 1059.520019 6.000000 +649=25 4899.839843 1061.280029 6.000000 +650=25 4899.839843 1063.040039 6.000000 +651=25 4899.839843 1064.800048 7.500000 +652=25 4899.839843 1063.040039 9.000000 +653=25 4899.839843 1061.280029 9.000000 +654=25 4899.839843 1059.520019 10.500000 +655=25 4899.839843 1061.280029 12.000000 +656=25 4899.839843 1063.040039 12.000000 +657=25 4899.839843 1064.800048 12.000000 +658=23 4899.839843 1068.319946 6.000000 +659=23 4899.839843 1068.319946 7.500000 +660=23 4899.839843 1068.319946 9.000000 +661=23 4899.839843 1068.319946 10.500000 +662=23 4899.839843 1068.319946 12.000000 +663=23 4899.839843 1070.079956 9.000000 +664=23 4899.839843 1071.839965 10.500000 +665=23 4899.839843 1071.839965 12.000000 +666=23 4899.839843 1071.839965 9.000000 +667=23 4899.839843 1071.839965 7.500000 +668=23 4899.839843 1071.839965 6.000000 +669=23 4899.839843 1075.359985 6.000000 +670=23 4899.839843 1075.359985 7.500000 +671=23 4899.839843 1075.359985 9.000000 +672=23 4899.839843 1075.359985 10.500000 +673=23 4899.839843 1075.359985 12.000000 +674=23 4899.839843 1077.119995 6.000000 +675=23 4899.839843 1078.880004 6.000000 +676=23 4899.839843 1082.400024 6.000000 +677=23 4899.839843 1082.400024 7.500000 +678=23 4899.839843 1077.119995 12.000000 +679=23 4899.839843 1078.880004 12.000000 +680=23 4899.839843 1075.359985 9.000000 +681=23 4899.839843 1077.119995 9.000000 +682=23 4899.839843 1078.880004 9.000000 +683=23 4899.839843 1082.400024 9.000000 +684=23 4899.839843 1082.400024 10.500000 +685=23 4899.839843 1082.400024 12.000000 +686=23 4899.839843 1084.160034 12.000000 +687=23 4899.839843 1085.920043 12.000000 +688=23 4899.839843 1085.920043 10.500000 +689=23 4899.839843 1085.920043 9.000000 +690=23 4899.839843 1084.160034 9.000000 +691=23 4899.839843 1084.160034 7.500000 +692=23 4899.839843 1085.920043 6.000000 +693=23 4898.080078 1089.439941 6.000000 +694=23 4898.080078 1089.439941 7.500000 +695=23 4898.080078 1089.439941 9.000000 +696=23 4898.080078 1089.439941 10.500000 +697=23 4898.080078 1089.439941 12.000000 +698=23 4898.080078 1091.199951 12.000000 +699=23 4898.080078 1092.959960 12.000000 +700=23 4898.080078 1091.199951 9.000000 +701=23 4898.080078 1092.959960 9.000000 +702=23 4898.080078 1091.199951 6.000000 +703=23 4898.080078 1092.959960 6.000000 +705=16 5060.000000 1010.239990 13.500000 +706=16 5061.759765 1010.239990 13.500000 +707=40 5054.720214 1006.719970 13.500000 +708=40 5052.959960 1006.719970 13.500000 +709=16 5063.520019 1010.239990 13.500000 +710=16 5063.520019 1008.479980 13.500000 +711=40 5051.200195 1006.719970 13.500000 +712=16 5063.520019 1006.719970 13.500000 +713=14 5047.680175 1003.200012 7.500000 +714=14 5047.680175 1003.200012 9.000000 +715=12 5023.040039 908.159973 6.000000 +716=14 5047.680175 999.679992 7.500000 +738=23 4811.839843 1084.160034 6.000000 +768=3 5067.040039 1100.000000 6.000000 +769=3 5067.040039 1101.760009 6.000000 +770=3 5067.040039 1103.520019 6.000000 +771=3 5067.040039 1105.280029 6.000000 +772=3 5067.040039 1108.800048 6.000000 +773=3 5067.040039 1107.040039 6.000000 +774=3 5065.279785 1108.800048 6.000000 +775=3 5067.040039 1110.560058 6.000000 +776=3 5065.279785 1110.560058 6.000000 +777=3 5067.040039 1112.319946 6.000000 +778=3 5065.279785 1112.319946 6.000000 +779=3 5063.520019 1115.839965 6.000000 +780=3 5061.759765 1115.839965 6.000000 +781=3 5063.520019 1112.319946 6.000000 +782=3 5067.040039 1114.079956 6.000000 +783=3 5067.040039 1117.599975 6.000000 +784=3 5067.040039 1115.839965 6.000000 +785=3 5065.279785 1115.839965 6.000000 +786=3 5065.279785 1117.599975 6.000000 +787=3 5063.520019 1117.599975 6.000000 +788=3 5061.759765 1117.599975 6.000000 +789=3 5060.000000 1117.599975 6.000000 +790=3 5060.000000 1115.839965 6.000000 +791=3 5061.759765 1114.079956 6.000000 +792=3 5060.000000 1114.079956 6.000000 +793=3 5065.279785 1114.079956 6.000000 +794=3 5063.520019 1114.079956 6.000000 +795=3 5061.759765 1112.319946 6.000000 +796=3 5060.000000 1112.319946 6.000000 +797=3 5060.000000 1110.560058 6.000000 +798=3 5061.759765 1108.800048 6.000000 +799=3 5063.520019 1110.560058 6.000000 +800=3 5061.759765 1110.560058 6.000000 +802=3 5063.520019 1107.040039 6.000000 +803=3 5065.279785 1107.040039 6.000000 +804=3 5060.000000 1105.280029 6.000000 +805=3 5061.759765 1107.040039 6.000000 +806=3 5060.000000 1107.040039 6.000000 +807=3 5060.000000 1108.800048 6.000000 +808=3 5065.279785 1103.520019 6.000000 +809=3 5063.520019 1105.280029 6.000000 +810=3 5061.759765 1103.520019 6.000000 +811=3 5061.759765 1105.280029 6.000000 +812=3 5065.279785 1105.280029 6.000000 +813=3 5065.279785 1100.000000 6.000000 +814=3 5065.279785 1101.760009 6.000000 +815=3 5063.520019 1103.520019 6.000000 +816=3 5063.520019 1101.760009 6.000000 +817=3 5063.520019 1100.000000 6.000000 +818=3 5060.000000 1100.000000 6.000000 +819=3 5060.000000 1101.760009 6.000000 +820=3 5061.759765 1100.000000 6.000000 +821=3 5061.759765 1101.760009 6.000000 +824=3 5058.240234 1101.760009 6.000000 +826=3 5058.240234 1107.040039 6.000000 +827=3 5058.240234 1105.280029 6.000000 +828=3 5058.240234 1110.560058 6.000000 +829=3 5058.240234 1108.800048 6.000000 +830=3 5058.240234 1114.079956 6.000000 +831=3 5058.240234 1112.319946 6.000000 +832=3 5058.240234 1115.839965 6.000000 +833=3 5058.240234 1117.599975 6.000000 +878=18 5054.720214 1117.599975 6.000000 +879=18 5054.720214 1115.839965 6.000000 +880=18 5054.720214 1114.079956 6.000000 +881=18 5054.720214 1110.560058 6.000000 +882=18 5054.720214 1112.319946 6.000000 +884=18 5054.720214 1107.040039 6.000000 +885=18 5054.720214 1105.280029 6.000000 +886=18 5054.720214 1101.760009 6.000000 +887=18 5054.720214 1103.520019 6.000000 +932=23 4811.839843 1082.400024 6.000000 +940=12 5047.680175 1003.200012 10.500000 +945=12 5047.680175 1001.440002 10.500000 +946=12 5047.680175 999.679992 10.500000 +947=12 5045.919921 999.679992 10.500000 +948=12 5045.919921 1001.440002 10.500000 +949=12 5045.919921 1003.200012 10.500000 +950=16 5063.520019 1004.960021 13.500000 +951=16 5063.520019 1003.200012 13.500000 +952=16 5063.520019 1001.440002 13.500000 +953=16 5063.520019 997.919982 13.500000 +955=16 5063.520019 999.679992 13.500000 +956=16 5063.520019 996.159973 13.500000 +957=16 5063.520019 994.400024 13.500000 +959=16 5063.520019 990.880004 13.500000 +960=16 5063.520019 992.640014 13.500000 +961=16 5061.759765 990.880004 13.500000 +962=16 5060.000000 990.880004 13.500000 +963=16 5056.479980 990.880004 13.500000 +964=16 5058.240234 990.880004 13.500000 +965=16 5054.720214 990.880004 13.500000 +966=16 5052.959960 990.880004 13.500000 +967=16 5049.439941 990.880004 15.000000 +968=16 5049.439941 992.640014 15.000000 +969=16 5049.439941 994.400024 15.000000 +970=16 5049.439941 996.159973 15.000000 +971=16 5049.439941 997.919982 15.000000 +972=16 5049.439941 999.679992 15.000000 +973=16 5049.439941 1001.440002 15.000000 +974=16 5049.439941 1003.200012 15.000000 +975=16 5049.439941 1006.719970 15.000000 +976=16 5049.439941 1004.960021 15.000000 +977=16 5049.439941 1008.479980 15.000000 +979=16 5049.439941 1010.239990 15.000000 +980=16 5051.200195 1010.239990 15.000000 +981=16 5052.959960 1010.239990 15.000000 +982=16 5054.720214 1010.239990 15.000000 +984=16 5058.240234 1010.239990 15.000000 +985=16 5060.000000 1010.239990 15.000000 +986=16 5061.759765 1010.239990 15.000000 +987=16 5063.520019 1010.239990 15.000000 +988=16 5063.520019 1008.479980 15.000000 +989=16 5063.520019 1006.719970 15.000000 +990=16 5063.520019 1004.960021 15.000000 +991=16 5063.520019 1003.200012 15.000000 +992=16 5063.520019 999.679992 15.000000 +993=16 5063.520019 1001.440002 15.000000 +994=16 5063.520019 996.159973 15.000000 +995=16 5063.520019 997.919982 15.000000 +996=16 5063.520019 994.400024 15.000000 +997=16 5063.520019 992.640014 15.000000 +998=16 5063.520019 990.880004 15.000000 +999=16 5061.759765 990.880004 15.000000 +1000=16 5060.000000 990.880004 15.000000 +1001=16 5058.240234 990.880004 15.000000 +1002=16 5056.479980 990.880004 15.000000 +1003=16 5054.720214 990.880004 15.000000 +1004=16 5052.959960 990.880004 15.000000 +1005=24 5026.560058 924.000000 6.000000 +1006=33 5049.439941 990.880004 16.500000 +1007=33 5049.439941 992.640014 16.500000 +1008=33 5049.439941 994.400024 16.500000 +1009=33 5049.439941 996.159973 16.500000 +1010=33 5049.439941 997.919982 16.500000 +1011=33 5049.439941 999.679992 16.500000 +1012=33 5049.439941 1001.440002 16.500000 +1013=33 5049.439941 1003.200012 16.500000 +1014=33 5049.439941 1004.960021 16.500000 +1015=33 5049.439941 1006.719970 16.500000 +1016=33 5049.439941 1008.479980 16.500000 +1017=33 5051.200195 1010.239990 16.500000 +1018=33 5049.439941 1010.239990 16.500000 +1020=33 5052.959960 1010.239990 16.500000 +1021=33 5054.720214 1010.239990 16.500000 +1022=33 5056.479980 1010.239990 16.500000 +1023=33 5058.240234 1010.239990 16.500000 +1024=33 5060.000000 1010.239990 16.500000 +1025=33 5061.759765 1010.239990 16.500000 +1026=33 5063.520019 1010.239990 16.500000 +1027=33 5063.520019 1006.719970 16.500000 +1028=33 5063.520019 1008.479980 16.500000 +1029=33 5063.520019 1004.960021 16.500000 +1030=33 5063.520019 1003.200012 16.500000 +1031=33 5063.520019 1001.440002 16.500000 +1032=33 5063.520019 999.679992 16.500000 +1033=33 5063.520019 997.919982 16.500000 +1034=33 5063.520019 996.159973 16.500000 +1035=33 5063.520019 994.400024 16.500000 +1036=33 5063.520019 992.640014 16.500000 +1037=33 5063.520019 990.880004 16.500000 +1038=33 5061.759765 990.880004 16.500000 +1039=33 5060.000000 990.880004 16.500000 +1040=33 5058.240234 990.880004 16.500000 +1041=33 5056.479980 990.880004 16.500000 +1042=33 5054.720214 990.880004 16.500000 +1043=33 5051.200195 990.880004 16.500000 +1044=33 5052.959960 990.880004 16.500000 +1045=17 5051.200195 990.880004 18.000000 +1046=17 5049.439941 990.880004 18.000000 +1047=17 5049.439941 992.640014 18.000000 +1048=17 5049.439941 994.400024 18.000000 +1049=17 5049.439941 996.159973 18.000000 +1050=17 5049.439941 997.919982 18.000000 +1051=17 5049.439941 999.679992 18.000000 +1052=17 5049.439941 1001.440002 18.000000 +1053=17 5049.439941 1003.200012 18.000000 +1054=17 5049.439941 1004.960021 18.000000 +1055=17 5049.439941 1006.719970 18.000000 +1056=17 5049.439941 1008.479980 18.000000 +1057=17 5049.439941 1010.239990 18.000000 +1058=17 5051.200195 1010.239990 18.000000 +1059=17 5054.720214 1010.239990 18.000000 +1060=17 5052.959960 1010.239990 18.000000 +1061=17 5056.479980 1010.239990 18.000000 +1062=17 5058.240234 1010.239990 18.000000 +1063=17 5060.000000 1010.239990 18.000000 +1064=17 5061.759765 1010.239990 18.000000 +1065=17 5063.520019 1010.239990 18.000000 +1066=17 5063.520019 1008.479980 18.000000 +1067=17 5063.520019 1006.719970 18.000000 +1068=17 5063.520019 1004.960021 18.000000 +1069=17 5063.520019 1001.440002 18.000000 +1070=17 5063.520019 1003.200012 18.000000 +1071=17 5063.520019 999.679992 18.000000 +1072=17 5063.520019 997.919982 18.000000 +1073=17 5063.520019 996.159973 18.000000 +1074=17 5063.520019 992.640014 18.000000 +1075=17 5063.520019 994.400024 18.000000 +1076=17 5063.520019 990.880004 18.000000 +1077=17 5061.759765 990.880004 18.000000 +1078=17 5060.000000 990.880004 18.000000 +1079=17 5058.240234 990.880004 18.000000 +1080=17 5056.479980 990.880004 18.000000 +1081=17 5054.720214 990.880004 18.000000 +1082=17 5052.959960 990.880004 18.000000 +1083=17 5058.240234 997.919982 22.500000 +1084=17 5060.000000 992.640014 19.500000 +1085=17 5061.759765 992.640014 19.500000 +1086=17 5058.240234 992.640014 19.500000 +1087=17 5056.479980 992.640014 19.500000 +1088=17 5054.720214 992.640014 19.500000 +1089=17 5052.959960 992.640014 19.500000 +1090=17 5051.200195 992.640014 19.500000 +1091=17 5051.200195 994.400024 19.500000 +1092=17 5051.200195 996.159973 19.500000 +1093=17 5051.200195 997.919982 19.500000 +1094=17 5051.200195 999.679992 19.500000 +1095=17 5051.200195 1001.440002 19.500000 +1096=17 5051.200195 1003.200012 19.500000 +1097=17 5051.200195 1004.960021 19.500000 +1098=17 5051.200195 1006.719970 19.500000 +1099=17 5051.200195 1008.479980 19.500000 +1100=17 5052.959960 1008.479980 19.500000 +1101=17 5054.720214 1008.479980 19.500000 +1102=17 5056.479980 1008.479980 19.500000 +1103=17 5058.240234 1008.479980 19.500000 +1104=17 5060.000000 1008.479980 19.500000 +1105=17 5061.759765 994.400024 19.500000 +1106=17 5061.759765 996.159973 19.500000 +1107=17 5061.759765 1008.479980 19.500000 +1108=17 5061.759765 1006.719970 19.500000 +1109=17 5061.759765 1004.960021 19.500000 +1110=17 5061.759765 1003.200012 19.500000 +1111=17 5061.759765 997.919982 19.500000 +1112=17 5061.759765 999.679992 19.500000 +1113=17 5061.759765 1001.440002 19.500000 +1114=17 5058.240234 994.400024 21.000000 +1115=17 5060.000000 994.400024 21.000000 +1116=17 5056.479980 994.400024 21.000000 +1117=17 5054.720214 994.400024 21.000000 +1118=17 5052.959960 994.400024 21.000000 +1119=17 5052.959960 996.159973 21.000000 +1120=17 5052.959960 997.919982 21.000000 +1121=17 5052.959960 999.679992 21.000000 +1122=17 5052.959960 1001.440002 21.000000 +1123=17 5052.959960 1003.200012 21.000000 +1124=17 5052.959960 1004.960021 21.000000 +1125=17 5052.959960 1006.719970 21.000000 +1126=39 5045.919921 1003.200012 7.500000 +1127=39 5045.919921 1003.200012 9.000000 +1128=17 5060.000000 996.159973 21.000000 +1129=17 5060.000000 997.919982 21.000000 +1130=17 5060.000000 999.679992 21.000000 +1131=17 5060.000000 1001.440002 21.000000 +1132=39 5045.919921 999.679992 9.000000 +1133=17 5056.479980 996.159973 22.500000 +1134=17 5054.720214 1006.719970 21.000000 +1135=17 5056.479980 1006.719970 21.000000 +1136=17 5060.000000 1006.719970 21.000000 +1137=17 5060.000000 1004.960021 21.000000 +1138=17 5058.240234 1006.719970 21.000000 +1139=17 5058.240234 996.159973 22.500000 +1140=17 5058.240234 999.679992 22.500000 +1141=17 5058.240234 1001.440002 22.500000 +1142=17 5054.720214 996.159973 22.500000 +1143=12 5026.560058 908.159973 6.000000 +1144=17 5060.000000 1003.200012 21.000000 +1145=17 5058.240234 1003.200012 22.500000 +1146=17 5058.240234 1004.960021 22.500000 +1147=17 5056.479980 1004.960021 22.500000 +1148=17 5054.720214 1004.960021 22.500000 +1149=17 5054.720214 997.919982 22.500000 +1150=17 5054.720214 999.679992 22.500000 +1151=17 5054.720214 1001.440002 22.500000 +1152=17 5054.720214 1003.200012 22.500000 +1153=17 5056.479980 1001.440002 24.000000 +1154=17 5056.479980 1003.200012 24.000000 +1155=17 5056.479980 999.679992 24.000000 +1156=17 5056.479980 997.919982 24.000000 +1193=23 4811.839843 1077.119995 6.000000 +1194=23 4811.839843 1073.599975 6.000000 +1195=23 4811.839843 1071.839965 6.000000 +1196=22 4811.839843 1085.920043 6.000000 +1197=22 4810.080078 1085.920043 6.000000 +1198=22 4813.600097 1085.920043 6.000000 +1199=22 4813.600097 1084.160034 6.000000 +1201=22 4811.839843 1080.640014 6.000000 +1202=22 4813.600097 1080.640014 6.000000 +1203=22 4810.080078 1084.160034 6.000000 +1204=22 4810.080078 1082.400024 6.000000 +1205=22 4810.080078 1080.640014 6.000000 +1206=22 4813.600097 1078.880004 6.000000 +1207=22 4813.600097 1077.119995 6.000000 +1208=22 4811.839843 1075.359985 6.000000 +1209=22 4813.600097 1075.359985 6.000000 +1210=23 4811.839843 1068.319946 6.000000 +1211=22 4813.600097 1073.599975 6.000000 +1212=23 4811.839843 1066.560058 6.000000 +1213=22 4813.600097 1071.839965 6.000000 +1214=23 4811.839843 1063.040039 6.000000 +1215=23 4811.839843 1061.280029 6.000000 +1216=23 4811.839843 1057.760009 6.000000 +1217=22 4813.600097 1070.079956 6.000000 +1218=23 4811.839843 1056.000000 6.000000 +1219=23 4811.839843 1052.479980 6.000000 +1220=22 4811.839843 1070.079956 6.000000 +1221=22 4810.080078 1078.880004 6.000000 +1222=22 4810.080078 1077.119995 6.000000 +1223=22 4810.080078 1075.359985 6.000000 +1224=22 4810.080078 1073.599975 6.000000 +1225=22 4810.080078 1071.839965 6.000000 +1226=22 4810.080078 1070.079956 6.000000 +1227=23 4811.839843 1050.719970 6.000000 +1228=23 4811.839843 1045.439941 6.000000 +1229=22 4810.080078 1068.319946 6.000000 +1230=22 4810.080078 1064.800048 6.000000 +1231=23 4811.839843 1047.199951 6.000000 +1232=22 4810.080078 1066.560058 6.000000 +1233=23 4811.839843 1041.920043 6.000000 +1234=23 4811.839843 1040.160034 6.000000 +1235=22 4813.600097 1066.560058 6.000000 +1236=23 4811.839843 1036.640014 6.000000 +1237=22 4813.600097 1068.319946 6.000000 +1238=23 4811.839843 1034.880004 6.000000 +1239=23 4811.839843 1031.359985 6.000000 +1240=23 4811.839843 1029.599975 6.000000 +1241=22 4811.839843 1064.800048 6.000000 +1242=22 4813.600097 1064.800048 6.000000 +1243=22 4813.600097 1063.040039 6.000000 +1244=23 4811.839843 1026.079956 6.000000 +1245=22 4813.600097 1059.520019 6.000000 +1246=22 4813.600097 1057.760009 6.000000 +1247=23 4811.839843 1024.319946 6.000000 +1248=22 4813.600097 1056.000000 6.000000 +1249=22 4813.600097 1054.239990 6.000000 +1250=22 4813.600097 1052.479980 6.000000 +1251=22 4813.600097 1050.719970 6.000000 +1252=23 4811.839843 1020.799987 6.000000 +1253=22 4813.600097 1048.959960 6.000000 +1254=22 4813.600097 1047.199951 6.000000 +1255=23 4811.839843 1019.039978 6.000000 +1256=22 4813.600097 1045.439941 6.000000 +1257=22 4813.600097 1043.680053 6.000000 +1258=22 4813.600097 1041.920043 6.000000 +1259=22 4813.600097 1040.160034 6.000000 +1260=22 4813.600097 1038.400024 6.000000 +1261=22 4813.600097 1036.640014 6.000000 +1262=23 4811.839843 1015.520019 6.000000 +1263=22 4813.600097 1034.880004 6.000000 +1264=22 4813.600097 1031.359985 6.000000 +1265=22 4813.600097 1029.599975 6.000000 +1266=22 4813.600097 1027.839965 6.000000 +1267=23 4811.839843 1013.760009 6.000000 +1268=22 4813.600097 1024.319946 6.000000 +1269=22 4813.600097 1022.559997 6.000000 +1270=22 4813.600097 1020.799987 6.000000 +1271=22 4813.600097 1019.039978 6.000000 +1272=22 4813.600097 1017.280029 6.000000 +1273=22 4813.600097 1015.520019 6.000000 +1274=22 4813.600097 1012.000000 6.000000 +1275=22 4811.839843 1012.000000 6.000000 +1276=22 4810.080078 1013.760009 6.000000 +1277=22 4810.080078 1012.000000 6.000000 +1278=22 4813.600097 1013.760009 6.000000 +1279=22 4811.839843 1017.280029 6.000000 +1280=22 4811.839843 1022.559997 6.000000 +1281=22 4810.080078 1063.040039 6.000000 +1282=22 4810.080078 1061.280029 6.000000 +1283=22 4810.080078 1059.520019 6.000000 +1284=22 4810.080078 1057.760009 6.000000 +1285=22 4810.080078 1056.000000 6.000000 +1286=22 4811.839843 1027.839965 6.000000 +1287=22 4810.080078 1054.239990 6.000000 +1288=22 4810.080078 1052.479980 6.000000 +1289=22 4811.839843 1033.119995 6.000000 +1290=22 4810.080078 1050.719970 6.000000 +1291=22 4810.080078 1048.959960 6.000000 +1292=22 4810.080078 1047.199951 6.000000 +1293=22 4813.600097 1033.119995 6.000000 +1294=22 4810.080078 1043.680053 6.000000 +1295=22 4810.080078 1041.920043 6.000000 +1296=22 4810.080078 1040.160034 6.000000 +1297=22 4810.080078 1038.400024 6.000000 +1298=22 4810.080078 1036.640014 6.000000 +1299=22 4811.839843 1038.400024 6.000000 +1300=22 4810.080078 1033.119995 6.000000 +1301=22 4810.080078 1031.359985 6.000000 +1302=22 4810.080078 1029.599975 6.000000 +1303=22 4810.080078 1027.839965 6.000000 +1304=22 4810.080078 1026.079956 6.000000 +1305=22 4810.080078 1024.319946 6.000000 +1306=22 4811.839843 1043.680053 6.000000 +1307=22 4810.080078 1020.799987 6.000000 +1308=22 4810.080078 1019.039978 6.000000 +1309=22 4810.080078 1017.280029 6.000000 +1310=22 4810.080078 1022.559997 6.000000 +1311=22 4810.080078 1015.520019 6.000000 +1312=22 4810.080078 1045.439941 6.000000 +1313=22 4811.839843 1048.959960 6.000000 +1314=22 4810.080078 1034.880004 6.000000 +1315=22 4811.839843 1054.239990 6.000000 +1316=22 4811.839843 1059.520019 6.000000 +1317=22 4813.600097 1061.280029 6.000000 +1318=22 4813.600097 1026.079956 6.000000 +1319=23 4811.839843 1010.239990 6.000000 +1320=23 4811.839843 1008.479980 6.000000 +1321=23 4811.839843 1004.960021 6.000000 +1322=23 4811.839843 1003.200012 6.000000 +1323=23 4811.839843 999.679992 6.000000 +1324=23 4811.839843 997.919982 6.000000 +1325=23 4811.839843 994.400024 6.000000 +1326=23 4811.839843 992.640014 6.000000 +1327=23 4811.839843 989.119995 6.000000 +1328=23 4811.839843 987.359985 6.000000 +1329=23 4811.839843 983.840026 6.000000 +1330=23 4811.839843 982.080017 6.000000 +1331=23 4811.839843 978.559997 6.000000 +1332=23 4811.839843 976.799987 6.000000 +1333=23 4811.839843 973.280029 6.000000 +1334=23 4811.839843 971.520019 6.000000 +1335=23 4811.839843 968.000000 6.000000 +1336=23 4811.839843 966.239990 6.000000 +1337=22 4810.080078 1010.239990 6.000000 +1338=22 4810.080078 1008.479980 6.000000 +1339=22 4810.080078 1006.719970 6.000000 +1340=22 4810.080078 1004.960021 6.000000 +1341=22 4810.080078 1003.200012 6.000000 +1342=22 4810.080078 1001.440002 6.000000 +1343=22 4810.080078 999.679992 6.000000 +1344=22 4810.080078 997.919982 6.000000 +1345=22 4810.080078 996.159973 6.000000 +1346=22 4810.080078 994.400024 6.000000 +1347=22 4810.080078 992.640014 6.000000 +1348=22 4810.080078 990.880004 6.000000 +1349=22 4810.080078 989.119995 6.000000 +1350=22 4810.080078 987.359985 6.000000 +1351=22 4810.080078 985.599975 6.000000 +1352=22 4810.080078 983.840026 6.000000 +1353=22 4810.080078 982.080017 6.000000 +1354=22 4810.080078 980.320007 6.000000 +1355=22 4810.080078 976.799987 6.000000 +1356=22 4810.080078 975.039978 6.000000 +1357=22 4810.080078 973.280029 6.000000 +1358=22 4810.080078 971.520019 6.000000 +1359=22 4810.080078 969.760009 6.000000 +1360=22 4810.080078 968.000000 6.000000 +1361=22 4810.080078 966.239990 6.000000 +1362=22 4813.600097 1010.239990 6.000000 +1363=22 4810.080078 964.479980 6.000000 +1364=22 4811.839843 964.479980 6.000000 +1365=22 4813.600097 1006.719970 6.000000 +1366=22 4813.600097 1004.960021 6.000000 +1367=22 4813.600097 1003.200012 6.000000 +1368=22 4813.600097 964.479980 6.000000 +1369=22 4813.600097 1001.440002 6.000000 +1370=22 4813.600097 999.679992 6.000000 +1371=22 4813.600097 994.400024 6.000000 +1372=22 4810.080078 978.559997 6.000000 +1373=22 4813.600097 997.919982 6.000000 +1374=22 4813.600097 996.159973 6.000000 +1375=22 4813.600097 992.640014 6.000000 +1376=22 4811.839843 1006.719970 6.000000 +1377=22 4811.839843 990.880004 6.000000 +1378=22 4811.839843 1001.440002 6.000000 +1379=22 4813.600097 990.880004 6.000000 +1380=22 4811.839843 996.159973 6.000000 +1381=22 4813.600097 989.119995 6.000000 +1382=22 4811.839843 985.599975 6.000000 +1383=22 4813.600097 987.359985 6.000000 +1384=22 4811.839843 980.320007 6.000000 +1385=22 4811.839843 975.039978 6.000000 +1386=22 4811.839843 969.760009 6.000000 +1387=22 4813.600097 968.000000 6.000000 +1388=22 4813.600097 966.239990 6.000000 +1389=22 4813.600097 969.760009 6.000000 +1390=22 4813.600097 971.520019 6.000000 +1391=22 4813.600097 973.280029 6.000000 +1392=22 4813.600097 985.599975 6.000000 +1393=22 4813.600097 975.039978 6.000000 +1394=22 4813.600097 976.799987 6.000000 +1395=22 4813.600097 983.840026 6.000000 +1396=22 4813.600097 980.320007 6.000000 +1397=22 4813.600097 978.559997 6.000000 +1398=22 4813.600097 982.080017 6.000000 +1399=22 4808.319824 964.479980 6.000000 +1400=22 4808.319824 966.239990 6.000000 +1401=22 4808.319824 968.000000 6.000000 +1402=22 4808.319824 969.760009 6.000000 +1403=22 4808.319824 971.520019 6.000000 +1404=22 4808.319824 973.280029 6.000000 +1405=22 4808.319824 975.039978 6.000000 +1406=22 4808.319824 976.799987 6.000000 +1407=22 4808.319824 978.559997 6.000000 +1408=22 4808.319824 980.320007 6.000000 +1409=22 4808.319824 983.840026 6.000000 +1410=22 4808.319824 985.599975 6.000000 +1411=22 4808.319824 987.359985 6.000000 +1412=22 4808.319824 990.880004 6.000000 +1413=22 4808.319824 992.640014 6.000000 +1414=22 4808.319824 996.159973 6.000000 +1415=22 4808.319824 997.919982 6.000000 +1416=22 4808.319824 999.679992 6.000000 +1417=22 4808.319824 1003.200012 6.000000 +1418=22 4808.319824 1004.960021 6.000000 +1419=22 4808.319824 1006.719970 6.000000 +1420=22 4808.319824 1008.479980 6.000000 +1421=22 4808.319824 1010.239990 6.000000 +1422=22 4808.319824 1012.000000 6.000000 +1423=22 4808.319824 1013.760009 6.000000 +1424=22 4808.319824 1017.280029 6.000000 +1425=22 4808.319824 1019.039978 6.000000 +1426=22 4808.319824 1020.799987 6.000000 +1427=22 4808.319824 1022.559997 6.000000 +1428=22 4808.319824 1024.319946 6.000000 +1429=22 4808.319824 1026.079956 6.000000 +1430=22 4808.319824 1027.839965 6.000000 +1431=22 4808.319824 1031.359985 6.000000 +1432=22 4808.319824 1033.119995 6.000000 +1433=22 4808.319824 1034.880004 6.000000 +1434=22 4808.319824 1038.400024 6.000000 +1435=22 4808.319824 1040.160034 6.000000 +1436=22 4808.319824 1041.920043 6.000000 +1437=22 4808.319824 1043.680053 6.000000 +1438=22 4808.319824 1047.199951 6.000000 +1439=22 4808.319824 1048.959960 6.000000 +1440=22 4808.319824 1050.719970 6.000000 +1441=22 4808.319824 1052.479980 6.000000 +1442=22 4808.319824 1054.239990 6.000000 +1443=22 4808.319824 1056.000000 6.000000 +1444=22 4808.319824 1057.760009 6.000000 +1445=22 4808.319824 1061.280029 6.000000 +1446=22 4808.319824 1063.040039 6.000000 +1447=22 4808.319824 1064.800048 6.000000 +1448=22 4808.319824 1068.319946 6.000000 +1449=22 4808.319824 1070.079956 6.000000 +1450=22 4808.319824 1071.839965 6.000000 +1451=22 4808.319824 1073.599975 6.000000 +1452=22 4808.319824 1075.359985 6.000000 +1453=22 4808.319824 1077.119995 6.000000 +1454=22 4808.319824 1082.400024 6.000000 +1455=22 4808.319824 1084.160034 6.000000 +1456=22 4808.319824 1085.920043 6.000000 +1457=22 4808.319824 1078.880004 6.000000 +1458=22 4808.319824 1080.640014 6.000000 +1459=22 4808.319824 1066.560058 6.000000 +1460=22 4808.319824 1059.520019 6.000000 +1461=22 4808.319824 1045.439941 6.000000 +1462=22 4808.319824 1036.640014 6.000000 +1463=22 4808.319824 1029.599975 6.000000 +1464=22 4808.319824 1015.520019 6.000000 +1465=22 4808.319824 1001.440002 6.000000 +1466=22 4808.319824 994.400024 6.000000 +1467=22 4808.319824 989.119995 6.000000 +1468=22 4808.319824 982.080017 6.000000 +1469=22 4815.359863 964.479980 6.000000 +1470=22 4815.359863 966.239990 6.000000 +1471=22 4815.359863 968.000000 6.000000 +1472=22 4815.359863 969.760009 6.000000 +1473=22 4815.359863 971.520019 6.000000 +1474=22 4815.359863 973.280029 6.000000 +1475=22 4815.359863 975.039978 6.000000 +1476=22 4815.359863 976.799987 6.000000 +1477=22 4815.359863 980.320007 6.000000 +1478=22 4815.359863 982.080017 6.000000 +1479=22 4815.359863 983.840026 6.000000 +1480=22 4815.359863 989.119995 6.000000 +1481=22 4815.359863 992.640014 6.000000 +1482=22 4815.359863 994.400024 6.000000 +1483=22 4815.359863 996.159973 6.000000 +1484=22 4815.359863 1001.440002 6.000000 +1485=22 4815.359863 1003.200012 6.000000 +1486=22 4815.359863 1004.960021 6.000000 +1487=22 4815.359863 1006.719970 6.000000 +1488=22 4815.359863 1012.000000 6.000000 +1489=22 4815.359863 1013.760009 6.000000 +1490=22 4815.359863 1015.520019 6.000000 +1491=22 4815.359863 1020.799987 6.000000 +1492=22 4815.359863 1022.559997 6.000000 +1493=22 4815.359863 1024.319946 6.000000 +1494=22 4815.359863 1026.079956 6.000000 +1495=22 4815.359863 1031.359985 6.000000 +1496=22 4815.359863 1033.119995 6.000000 +1497=22 4815.359863 1034.880004 6.000000 +1498=22 4815.359863 1041.920043 6.000000 +1499=22 4815.359863 1043.680053 6.000000 +1500=22 4815.359863 978.559997 6.000000 +1501=22 4815.359863 987.359985 6.000000 +1502=22 4815.359863 985.599975 6.000000 +1503=22 4815.359863 990.880004 6.000000 +1504=22 4815.359863 999.679992 6.000000 +1505=22 4815.359863 997.919982 6.000000 +1506=22 4813.600097 1008.479980 6.000000 +1507=22 4815.359863 1010.239990 6.000000 +1508=22 4815.359863 1008.479980 6.000000 +1509=22 4815.359863 1019.039978 6.000000 +1510=22 4815.359863 1017.280029 6.000000 +1511=22 4815.359863 1029.599975 6.000000 +1512=22 4815.359863 1027.839965 6.000000 +1513=22 4815.359863 1038.400024 6.000000 +1514=22 4815.359863 1036.640014 6.000000 +1515=22 4815.359863 1040.160034 6.000000 +1516=22 4815.359863 1045.439941 6.000000 +1517=22 4815.359863 1047.199951 6.000000 +1518=22 4815.359863 1048.959960 6.000000 +1519=22 4815.359863 1050.719970 6.000000 +1520=22 4815.359863 1052.479980 6.000000 +1521=22 4815.359863 1054.239990 6.000000 +1522=22 4815.359863 1056.000000 6.000000 +1523=22 4815.359863 1059.520019 6.000000 +1524=22 4815.359863 1057.760009 6.000000 +1525=22 4815.359863 1061.280029 6.000000 +1526=22 4815.359863 1063.040039 6.000000 +1527=22 4815.359863 1064.800048 6.000000 +1528=22 4815.359863 1066.560058 6.000000 +1529=22 4815.359863 1070.079956 6.000000 +1530=22 4815.359863 1068.319946 6.000000 +1531=22 4815.359863 1071.839965 6.000000 +1532=22 4815.359863 1073.599975 6.000000 +1533=22 4815.359863 1075.359985 6.000000 +1534=22 4815.359863 1077.119995 6.000000 +1535=22 4815.359863 1080.640014 6.000000 +1536=22 4815.359863 1078.880004 6.000000 +1537=22 4815.359863 1084.160034 6.000000 +1538=22 4815.359863 1082.400024 6.000000 +1539=22 4815.359863 1085.920043 6.000000 +1540=12 5028.319824 908.159973 6.000000 +1541=12 5033.600097 908.159973 6.000000 +1543=12 5035.359863 908.159973 6.000000 +1544=12 5037.120117 908.159973 6.000000 +1546=12 5038.879882 908.159973 6.000000 +1547=12 5040.640136 908.159973 6.000000 +1551=12 5042.399902 908.159973 6.000000 +1552=12 5044.160156 908.159973 6.000000 +1554=24 5028.319824 924.000000 6.000000 +1555=12 5045.919921 908.159973 6.000000 +1556=24 5023.040039 924.000000 6.000000 +1558=12 5047.680175 908.159973 6.000000 +1559=24 5023.040039 920.479980 6.000000 +1560=12 5051.200195 908.159973 6.000000 +1564=24 5023.040039 922.239990 6.000000 +1565=12 5052.959960 908.159973 6.000000 +1566=12 5054.720214 908.159973 6.000000 +1567=24 5023.040039 916.960021 6.000000 +1568=12 5049.439941 908.159973 6.000000 +1569=24 5023.040039 918.719970 6.000000 +1570=24 5023.040039 915.200012 6.000000 +1571=24 5019.520019 915.200012 6.000000 +1572=24 5021.279785 915.200012 6.000000 +1573=12 5030.080078 908.159973 6.000000 +1574=12 5031.839843 908.159973 6.000000 +1575=24 5017.759765 915.200012 6.000000 +1576=24 5016.000000 915.200012 6.000000 +1578=12 5054.720214 909.919982 6.000000 +1579=12 5054.720214 911.679992 6.000000 +1580=24 5014.240234 913.440002 6.000000 +1581=12 5054.720214 913.440002 6.000000 +1582=24 5014.240234 911.679992 6.000000 +1583=24 5014.240234 909.919982 6.000000 +1584=24 5014.240234 908.159973 6.000000 +1586=24 5016.000000 906.400024 6.000000 +1587=12 5054.720214 915.200012 6.000000 +1588=12 5054.720214 916.960021 6.000000 +1589=12 5054.720214 918.719970 6.000000 +1590=12 5040.640136 922.239990 6.000000 +1591=12 5054.720214 920.479980 6.000000 +1592=3 5049.439941 915.200012 6.000000 +1593=12 5054.720214 922.239990 6.000000 +1594=12 5052.959960 922.239990 6.000000 +1595=3 5051.200195 916.960021 6.000000 +1596=12 5051.200195 922.239990 6.000000 +1597=12 5049.439941 922.239990 6.000000 +1599=12 5045.919921 922.239990 6.000000 +1600=12 5044.160156 922.239990 6.000000 +1601=12 5042.399902 922.239990 6.000000 +1602=3 5049.439941 916.960021 6.000000 +1603=12 5038.879882 922.239990 6.000000 +1604=12 5037.120117 922.239990 6.000000 +1605=3 5051.200195 915.200012 6.000000 +1607=12 5033.600097 922.239990 6.000000 +1608=12 5031.839843 922.239990 6.000000 +1609=12 5030.080078 922.239990 6.000000 +1610=12 5028.319824 922.239990 6.000000 +1611=12 5026.560058 922.239990 6.000000 +1612=12 5024.799804 922.239990 6.000000 +1613=12 5024.799804 920.479980 6.000000 +1614=3 5047.680175 920.479980 6.000000 +1615=12 5024.799804 916.960021 6.000000 +1616=12 5016.000000 909.919982 6.000000 +1617=12 5024.799804 913.440002 6.000000 +1618=3 5042.399902 920.479980 6.000000 +1619=12 5023.040039 913.440002 6.000000 +1620=12 5024.799804 918.719970 6.000000 +1621=12 5021.279785 913.440002 6.000000 +1622=12 5019.520019 913.440002 6.000000 +1623=12 5017.759765 913.440002 6.000000 +1624=12 5016.000000 913.440002 6.000000 +1625=12 5016.000000 911.679992 6.000000 +1626=12 5016.000000 908.159973 6.000000 +1627=12 5024.799804 915.200012 6.000000 +1628=3 5052.959960 920.479980 6.000000 +1629=3 5037.120117 920.479980 6.000000 +1630=3 5037.120117 918.719970 6.000000 +1631=3 5038.879882 915.200012 6.000000 +1633=3 5051.200195 918.719970 6.000000 +1634=3 5045.919921 916.960021 6.000000 +1635=3 5047.680175 913.440002 6.000000 +1636=3 5052.959960 918.719970 6.000000 +1637=3 5052.959960 916.960021 6.000000 +1638=3 5052.959960 915.200012 6.000000 +1639=24 5017.759765 906.400024 6.000000 +1640=3 5051.200195 913.440002 6.000000 +1641=3 5052.959960 913.440002 6.000000 +1642=3 5052.959960 911.679992 6.000000 +1643=3 5049.439941 911.679992 6.000000 +1644=3 5047.680175 909.919982 6.000000 +1645=3 5051.200195 909.919982 6.000000 +1646=24 5019.520019 906.400024 6.000000 +1647=3 5049.439941 909.919982 6.000000 +1648=24 5021.279785 906.400024 6.000000 +1649=3 5051.200195 911.679992 6.000000 +1650=3 5049.439941 913.440002 6.000000 +1651=24 5023.040039 906.400024 6.000000 +1652=3 5045.919921 911.679992 6.000000 +1653=24 5024.799804 906.400024 6.000000 +1654=3 5047.680175 911.679992 6.000000 +1655=3 5044.160156 913.440002 6.000000 +1656=3 5040.640136 911.679992 6.000000 +1657=3 5042.399902 909.919982 6.000000 +1658=3 5044.160156 911.679992 6.000000 +1659=24 5044.160156 906.400024 6.000000 +1660=3 5045.919921 915.200012 6.000000 +1661=24 5026.560058 906.400024 6.000000 +1662=3 5045.919921 913.440002 6.000000 +1663=24 5028.319824 906.400024 6.000000 +1664=24 5030.080078 906.400024 6.000000 +1666=24 5031.839843 906.400024 6.000000 +1667=3 5047.680175 915.200012 6.000000 +1668=3 5042.399902 915.200012 6.000000 +1669=3 5044.160156 916.960021 6.000000 +1670=24 5033.600097 906.400024 6.000000 +1671=3 5044.160156 915.200012 6.000000 +1672=24 5035.359863 906.400024 6.000000 +1673=24 5042.399902 906.400024 6.000000 +1674=3 5035.359863 920.479980 6.000000 +1676=24 5037.120117 906.400024 6.000000 +1677=24 5038.879882 906.400024 6.000000 +1678=24 5040.640136 906.400024 6.000000 +1679=24 5047.680175 906.400024 6.000000 +1680=3 5040.640136 920.479980 6.000000 +1681=24 5045.919921 906.400024 6.000000 +1682=3 5042.399902 918.719970 6.000000 +1683=3 5040.640136 918.719970 6.000000 +1684=24 5049.439941 906.400024 6.000000 +1685=3 5038.879882 920.479980 6.000000 +1686=24 5051.200195 906.400024 6.000000 +1687=3 5042.399902 916.960021 6.000000 +1688=3 5037.120117 915.200012 6.000000 +1689=3 5045.919921 909.919982 6.000000 +1690=3 5033.600097 915.200012 6.000000 +1691=24 5052.959960 906.400024 6.000000 +1692=3 5040.640136 915.200012 6.000000 +1693=3 5040.640136 916.960021 6.000000 +1694=3 5042.399902 911.679992 6.000000 +1695=3 5042.399902 913.440002 6.000000 +1697=3 5044.160156 909.919982 6.000000 +1698=3 5045.919921 920.479980 6.000000 +1699=3 5047.680175 918.719970 6.000000 +1700=3 5049.439941 918.719970 6.000000 +1701=3 5044.160156 920.479980 6.000000 +1702=3 5051.200195 920.479980 6.000000 +1703=3 5045.919921 918.719970 6.000000 +1704=3 5052.959960 909.919982 6.000000 +1705=3 5033.600097 918.719970 6.000000 +1706=3 5031.839843 920.479980 6.000000 +1707=3 5033.600097 920.479980 6.000000 +1708=3 5031.839843 918.719970 6.000000 +1709=3 5030.080078 918.719970 6.000000 +1710=3 5026.560058 918.719970 6.000000 +1711=3 5028.319824 920.479980 6.000000 +1712=3 5026.560058 920.479980 6.000000 +1713=3 5030.080078 920.479980 6.000000 +1714=3 5028.319824 918.719970 6.000000 +1715=3 5026.560058 915.200012 6.000000 +1718=3 5028.319824 915.200012 6.000000 +1719=3 5030.080078 916.960021 6.000000 +1720=3 5028.319824 916.960021 6.000000 +1721=3 5026.560058 916.960021 6.000000 +1722=3 5028.319824 911.679992 6.000000 +1723=3 5033.600097 916.960021 6.000000 +1724=3 5031.839843 916.960021 6.000000 +1725=3 5037.120117 916.960021 6.000000 +1726=3 5035.359863 915.200012 6.000000 +1727=3 5031.839843 915.200012 6.000000 +1728=3 5033.600097 913.440002 6.000000 +1729=3 5024.799804 911.679992 6.000000 +1730=3 5037.120117 911.679992 6.000000 +1731=3 5035.359863 911.679992 6.000000 +1732=3 5040.640136 913.440002 6.000000 +1733=3 5037.120117 913.440002 6.000000 +1734=3 5038.879882 913.440002 6.000000 +1735=3 5038.879882 909.919982 6.000000 +1736=3 5038.879882 911.679992 6.000000 +1737=3 5038.879882 916.960021 6.000000 +1738=3 5040.640136 909.919982 6.000000 +1739=3 5033.600097 909.919982 6.000000 +1740=3 5035.359863 909.919982 6.000000 +1741=3 5038.879882 918.719970 6.000000 +1742=3 5037.120117 909.919982 6.000000 +1743=3 5033.600097 911.679992 6.000000 +1744=3 5035.359863 913.440002 6.000000 +1745=3 5028.319824 913.440002 6.000000 +1746=3 5030.080078 913.440002 6.000000 +1747=3 5031.839843 913.440002 6.000000 +1748=3 5031.839843 911.679992 6.000000 +1749=3 5030.080078 909.919982 6.000000 +1750=3 5031.839843 909.919982 6.000000 +1751=3 5028.319824 909.919982 6.000000 +1752=3 5026.560058 911.679992 6.000000 +1753=3 5024.799804 909.919982 6.000000 +1754=3 5019.520019 911.679992 6.000000 +1755=3 5026.560058 909.919982 6.000000 +1756=3 5019.520019 909.919982 6.000000 +1757=3 5030.080078 911.679992 6.000000 +1758=3 5023.040039 911.679992 6.000000 +1759=3 5026.560058 913.440002 6.000000 +1760=3 5021.279785 909.919982 6.000000 +1761=3 5023.040039 909.919982 6.000000 +1763=14 5125.120117 983.840026 6.000000 0 +1764=14 5123.359863 983.840026 6.000000 0 +1765=14 5121.600097 983.840026 6.000000 0 +1766=14 5119.839843 983.840026 6.000000 0 +1767=14 5118.080078 983.840026 6.000000 0 +1768=14 5116.319824 983.840026 6.000000 0 +1769=14 5114.560058 983.840026 6.000000 0 +1770=14 5121.600097 985.599975 6.000000 0 +1771=14 5126.879882 987.359985 6.000000 0 +1772=14 5126.879882 985.599975 6.000000 0 +1773=14 5125.120117 985.599975 6.000000 0 +1774=14 5123.359863 985.599975 6.000000 0 +1775=14 5125.120117 987.359985 6.000000 0 +1776=14 5123.359863 987.359985 6.000000 0 +1780=14 5118.080078 987.359985 6.000000 0 +1781=14 5118.080078 985.599975 6.000000 0 +1782=14 5116.319824 985.599975 6.000000 0 +1785=14 5114.560058 985.599975 6.000000 0 +1786=12 5112.799804 982.080017 6.000000 0 +1787=12 5111.040039 982.080017 6.000000 0 +1790=12 5105.759765 982.080017 6.000000 0 +611=39 5042.399902 994.400024 6.000000 +704=39 5044.160156 997.919982 6.000000 +740=39 5042.399902 996.159973 6.000000 +741=18 5045.919921 999.679992 6.000000 +742=18 5045.919921 1001.440002 6.000000 +743=40 5045.919921 999.679992 7.500000 +744=14 5051.200195 990.880004 13.500000 +745=14 5051.200195 990.880004 15.000000 +109=14 4899.839843 1038.400024 7.500000 +338=12 5128.640136 987.359985 6.000000 0 +358=2000 5060.000000 1006.719970 7.500000 90 +441=2003 5061.759765 999.679992 7.500000 0 +526=2001 5061.759765 1001.440002 7.500000 0 +539=2001 5061.759765 997.919982 7.500000 180 +859=2001 5060.000000 999.679992 7.500000 90 +1542=2002 5061.759765 992.640014 7.500000 270 +1549=2002 5051.200195 992.640014 7.500000 90 +196=7 5049.439941 1006.719970 6.000000 0 +1183=1 5049.439941 1006.719970 7.500000 0 +36=2007 5056.479980 992.640014 7.500000 180 +1805=15 5107.520019 983.840026 7.500000 0 +1817=14 5153.279785 994.400024 6.000000 0 +1821=14 5155.040039 992.640014 6.000000 0 +1807=15 5104.000000 983.840026 7.500000 0 +1827=11 4991.359863 1094.719970 6.000000 0 +1828=11 4993.120117 1094.719970 6.000000 0 +1835=11 4994.879882 1094.719970 6.000000 0 +1841=11 5000.160156 1094.719970 6.000000 0 +1842=11 5001.919921 1094.719970 6.000000 0 +1852=11 5003.680175 1094.719970 6.000000 0 +1855=11 5007.200195 1094.719970 6.000000 0 +1864=11 5007.200195 1096.479980 6.000000 0 +1868=11 5007.200195 1098.239990 6.000000 0 +1869=11 5007.200195 1100.000000 6.000000 0 +1871=11 5007.200195 1101.760009 6.000000 0 +1873=11 5007.200195 1103.520019 6.000000 0 +1890=11 5007.200195 1105.280029 6.000000 0 +1891=11 5007.200195 1107.040039 6.000000 0 +1892=11 5007.200195 1108.800048 6.000000 0 +1893=11 5007.200195 1110.560058 6.000000 0 +1895=11 5007.200195 1112.319946 6.000000 0 +1897=11 5007.200195 1114.079956 6.000000 0 +1898=11 5007.200195 1115.839965 6.000000 0 +1899=11 5005.439941 1115.839965 6.000000 0 +1900=11 5003.680175 1115.839965 6.000000 0 +1902=11 5000.160156 1115.839965 6.000000 0 +1904=11 4998.399902 1115.839965 6.000000 0 +1907=11 4996.640136 1115.839965 6.000000 0 +1918=11 4994.879882 1115.839965 6.000000 0 +1988=15 5111.040039 983.840026 9.000000 0 +1989=11 4991.359863 1115.839965 6.000000 0 +1990=11 4989.600097 1115.839965 6.000000 0 +1992=14 5156.799804 992.640014 6.000000 0 +1994=11 4987.839843 1096.479980 6.000000 0 +1995=11 4987.839843 1098.239990 6.000000 0 +1996=11 4987.839843 1101.760009 6.000000 0 +1997=11 4987.839843 1100.000000 6.000000 0 +1998=11 4987.839843 1103.520019 6.000000 0 +1999=14 5155.040039 983.840026 6.000000 0 +2001=11 4987.839843 1108.800048 6.000000 0 +2002=11 4987.839843 1110.560058 6.000000 0 +2003=11 4987.839843 1112.319946 6.000000 0 +2004=11 4987.839843 1114.079956 6.000000 0 +1993=14 5156.799804 990.880004 6.000000 0 +2005=21 4989.600097 1112.319946 6.000000 0 +2006=21 4991.359863 1114.079956 6.000000 0 +2007=21 4991.359863 1112.319946 6.000000 0 +2008=21 4989.600097 1110.560058 6.000000 0 +2009=21 5001.919921 1108.800048 6.000000 0 +2010=21 5000.160156 1108.800048 6.000000 0 +2011=21 4993.120117 1114.079956 6.000000 0 +2012=21 4991.359863 1110.560058 6.000000 0 +2014=21 4991.359863 1108.800048 6.000000 0 +2016=21 4991.359863 1107.040039 6.000000 0 +2017=21 4989.600097 1105.280029 6.000000 0 +2018=21 4991.359863 1105.280029 6.000000 0 +2019=21 4993.120117 1112.319946 6.000000 0 +2020=21 4993.120117 1107.040039 6.000000 0 +2021=21 4993.120117 1110.560058 6.000000 0 +2022=21 4993.120117 1108.800048 6.000000 0 +2023=21 4993.120117 1105.280029 6.000000 0 +2024=21 4989.600097 1103.520019 6.000000 0 +2025=21 4991.359863 1103.520019 6.000000 0 +2026=21 4993.120117 1103.520019 6.000000 0 +2027=21 4998.399902 1108.800048 6.000000 0 +2028=21 4996.640136 1108.800048 6.000000 0 +2029=21 4994.879882 1108.800048 6.000000 0 +2030=21 4989.600097 1100.000000 6.000000 0 +2031=21 4989.600097 1101.760009 6.000000 0 +2032=21 4991.359863 1101.760009 6.000000 0 +2033=21 4994.879882 1110.560058 6.000000 0 +2034=21 4994.879882 1112.319946 6.000000 0 +2035=21 4994.879882 1114.079956 6.000000 0 +2036=21 4996.640136 1114.079956 6.000000 0 +2037=21 4996.640136 1110.560058 6.000000 0 +2038=21 4996.640136 1112.319946 6.000000 0 +2039=21 4998.399902 1112.319946 6.000000 0 +2040=21 4998.399902 1110.560058 6.000000 0 +2041=21 5000.160156 1110.560058 6.000000 0 +2042=21 5000.160156 1114.079956 6.000000 0 +2043=21 4998.399902 1114.079956 6.000000 0 +2044=21 5000.160156 1112.319946 6.000000 0 +2045=21 5003.680175 1110.560058 6.000000 0 +2046=21 5001.919921 1110.560058 6.000000 0 +2047=21 5001.919921 1112.319946 6.000000 0 +2048=21 5001.919921 1114.079956 6.000000 0 +2049=21 5003.680175 1114.079956 6.000000 0 +2050=21 5005.439941 1114.079956 6.000000 0 +2051=21 5005.439941 1112.319946 6.000000 0 +2052=21 5003.680175 1112.319946 6.000000 0 +2053=21 5005.439941 1110.560058 6.000000 0 +2054=21 5005.439941 1108.800048 6.000000 0 +2055=21 5003.680175 1108.800048 6.000000 0 +2056=21 4989.600097 1098.239990 6.000000 0 +2057=21 4989.600097 1096.479980 6.000000 0 +2058=21 4991.359863 1100.000000 6.000000 0 +2059=21 4991.359863 1098.239990 6.000000 0 +2060=21 4991.359863 1096.479980 6.000000 0 +2061=21 4993.120117 1096.479980 6.000000 0 +2062=21 4993.120117 1098.239990 6.000000 0 +2063=21 4993.120117 1100.000000 6.000000 0 +2064=21 4993.120117 1101.760009 6.000000 0 +2066=21 5005.439941 1098.239990 6.000000 0 +2067=21 5005.439941 1100.000000 6.000000 0 +2068=21 5005.439941 1101.760009 6.000000 0 +2069=21 5005.439941 1103.520019 6.000000 0 +2070=21 5005.439941 1105.280029 6.000000 0 +2071=21 5005.439941 1107.040039 6.000000 0 +2072=21 4996.640136 1107.040039 6.000000 0 +2073=21 4994.879882 1105.280029 6.000000 0 +2074=21 4998.399902 1107.040039 6.000000 0 +2075=21 5000.160156 1107.040039 6.000000 0 +2076=21 5001.919921 1107.040039 6.000000 0 +2077=21 5003.680175 1107.040039 6.000000 0 +2078=21 5003.680175 1105.280029 6.000000 0 +2079=21 5003.680175 1103.520019 6.000000 0 +2080=21 5003.680175 1098.239990 6.000000 0 +2081=21 5003.680175 1100.000000 6.000000 0 +2082=21 5003.680175 1101.760009 6.000000 0 +2083=21 5003.680175 1096.479980 6.000000 0 +2085=21 4994.879882 1107.040039 6.000000 0 +2086=21 4996.640136 1105.280029 6.000000 0 +2087=21 5000.160156 1105.280029 6.000000 0 +2088=21 4998.399902 1105.280029 6.000000 0 +2089=21 5001.919921 1105.280029 6.000000 0 +2090=21 5001.919921 1103.520019 6.000000 0 +2091=21 5000.160156 1103.520019 6.000000 0 +2092=21 4998.399902 1103.520019 6.000000 0 +2093=21 4996.640136 1103.520019 6.000000 0 +2094=21 4994.879882 1103.520019 6.000000 0 +2095=21 4994.879882 1101.760009 6.000000 0 +2096=21 4996.640136 1101.760009 6.000000 0 +2097=21 5000.160156 1101.760009 6.000000 0 +2099=21 5001.919921 1100.000000 6.000000 0 +2100=21 5001.919921 1101.760009 6.000000 0 +2101=21 5001.919921 1098.239990 6.000000 0 +2102=21 5000.160156 1100.000000 6.000000 0 +2103=21 5000.160156 1098.239990 6.000000 0 +2104=21 4998.399902 1100.000000 6.000000 0 +84=5 5051.200195 999.679992 6.000000 0 +6=9 5051.200195 997.919982 6.000000 0 +65=21 4994.879882 1100.000000 6.000000 0 +2119=15 4987.839843 1094.719970 7.500000 0 +2118=15 4987.839843 1096.479980 7.500000 0 +2120=15 4987.839843 1098.239990 7.500000 0 +2121=15 4987.839843 1100.000000 7.500000 0 +2122=2000 5051.200195 1003.200012 7.500000 180 +2123=15 4987.839843 1103.520019 7.500000 0 +2124=15 4987.839843 1101.760009 7.500000 0 +2125=15 4987.839843 1094.719970 9.000000 0 +2126=15 4987.839843 1096.479980 9.000000 0 +2128=15 4987.839843 1098.239990 9.000000 0 +2129=15 4987.839843 1100.000000 9.000000 0 +2127=15 4987.839843 1101.760009 9.000000 0 +2131=15 4987.839843 1103.520019 9.000000 0 +2132=15 4987.839843 1105.280029 7.500000 0 +2130=15 4987.839843 1105.280029 9.000000 0 +2134=15 4987.839843 1107.040039 7.500000 0 +2135=15 4987.839843 1107.040039 9.000000 0 +2136=15 4987.839843 1108.800048 7.500000 0 +2138=15 4987.839843 1108.800048 9.000000 0 +2137=15 4987.839843 1110.560058 7.500000 0 +2139=15 4987.839843 1110.560058 9.000000 0 +2140=15 4987.839843 1112.319946 7.500000 0 +2141=15 4987.839843 1112.319946 9.000000 0 +2143=15 4987.839843 1114.079956 7.500000 0 +2144=15 4987.839843 1114.079956 9.000000 0 +2145=15 4987.839843 1115.839965 7.500000 0 +2146=15 4987.839843 1115.839965 9.000000 0 +2112=15 4989.600097 1115.839965 7.500000 0 +2147=15 4989.600097 1115.839965 9.000000 0 +2148=15 4991.359863 1115.839965 7.500000 0 +2149=15 4991.359863 1115.839965 9.000000 0 +2107=15 4993.120117 1115.839965 7.500000 0 +2108=15 4993.120117 1115.839965 9.000000 0 +2109=15 4994.879882 1115.839965 7.500000 0 +2110=15 4994.879882 1115.839965 9.000000 0 +2111=15 4996.640136 1115.839965 7.500000 0 +2150=15 4996.640136 1115.839965 9.000000 0 +2152=15 5000.160156 1115.839965 7.500000 0 +2154=15 4998.399902 1115.839965 7.500000 0 +2156=15 4998.399902 1115.839965 9.000000 0 +2157=15 5000.160156 1115.839965 9.000000 0 +2158=15 5001.919921 1115.839965 7.500000 0 +2159=15 5001.919921 1115.839965 9.000000 0 +2161=15 5003.680175 1115.839965 7.500000 0 +2163=15 5003.680175 1115.839965 9.000000 0 +2165=15 5005.439941 1115.839965 7.500000 0 +2167=15 5005.439941 1115.839965 9.000000 0 +2168=15 5007.200195 1115.839965 7.500000 0 +2169=15 5007.200195 1115.839965 9.000000 0 +2170=15 5007.200195 1114.079956 7.500000 0 +2172=15 5007.200195 1114.079956 9.000000 0 +2175=15 5007.200195 1112.319946 7.500000 0 +2176=15 5007.200195 1112.319946 9.000000 0 +2177=15 5007.200195 1110.560058 7.500000 0 +2178=15 5007.200195 1110.560058 9.000000 0 +2180=15 5007.200195 1107.040039 7.500000 0 +10=32 5051.200195 978.559997 9.000000 0 +373=32 5051.200195 980.320007 9.000000 0 +548=15 4989.600097 1094.719970 7.500000 0 +559=15 4989.600097 1094.719970 9.000000 0 +561=15 5007.200195 1108.800048 7.500000 0 +2171=15 5007.200195 1108.800048 9.000000 0 +2181=15 5007.200195 1105.280029 7.500000 0 +2174=15 5007.200195 1107.040039 9.000000 0 +2203=15 5007.200195 1105.280029 9.000000 0 +2206=15 5007.200195 1103.520019 7.500000 0 +2208=15 5007.200195 1101.760009 7.500000 0 +2224=15 5007.200195 1098.239990 7.500000 0 +2227=15 5007.200195 1100.000000 7.500000 0 +2226=15 5007.200195 1096.479980 7.500000 0 +2228=15 5007.200195 1094.719970 7.500000 0 +1853=15 5005.439941 1094.719970 7.500000 0 +2065=15 5007.200195 1103.520019 9.000000 0 +2229=15 5007.200195 1101.760009 9.000000 0 +2230=15 5007.200195 1100.000000 9.000000 0 +2232=15 5007.200195 1098.239990 9.000000 0 +2233=15 5007.200195 1096.479980 9.000000 0 +2235=15 5003.680175 1094.719970 7.500000 0 +2237=15 5007.200195 1094.719970 9.000000 0 +2239=15 5005.439941 1094.719970 9.000000 0 +2240=15 5003.680175 1094.719970 9.000000 0 +2241=15 5001.919921 1094.719970 9.000000 0 +2243=15 4993.120117 1094.719970 7.500000 0 +2244=15 4991.359863 1094.719970 9.000000 0 +2245=15 4991.359863 1094.719970 7.500000 0 +2246=15 4993.120117 1094.719970 9.000000 0 +2247=11 5005.439941 1094.719970 6.000000 0 +2248=21 5005.439941 1096.479980 6.000000 0 +2249=15 4991.359863 1094.719970 10.500000 0 +2250=15 4993.120117 1094.719970 10.500000 0 +2252=15 4987.839843 1094.719970 10.500000 0 +2253=15 4987.839843 1096.479980 10.500000 0 +2254=15 4987.839843 1098.239990 10.500000 0 +2255=15 4987.839843 1100.000000 10.500000 0 +2256=15 4987.839843 1101.760009 10.500000 0 +2257=15 4987.839843 1103.520019 10.500000 0 +2258=15 4987.839843 1105.280029 10.500000 0 +2259=15 4987.839843 1107.040039 10.500000 0 +2260=15 4987.839843 1108.800048 10.500000 0 +2261=15 4987.839843 1110.560058 10.500000 0 +2262=15 4987.839843 1112.319946 10.500000 0 +2263=15 4987.839843 1114.079956 10.500000 0 +2264=15 4987.839843 1115.839965 10.500000 0 +2265=15 4989.600097 1115.839965 10.500000 0 +2266=15 4991.359863 1115.839965 10.500000 0 +2267=15 4993.120117 1115.839965 10.500000 0 +2268=15 4994.879882 1115.839965 10.500000 0 +2269=15 4996.640136 1115.839965 10.500000 0 +2270=15 4998.399902 1115.839965 10.500000 0 +2271=15 5000.160156 1115.839965 10.500000 0 +2272=15 5001.919921 1115.839965 10.500000 0 +2273=15 5003.680175 1115.839965 10.500000 0 +2274=15 5005.439941 1115.839965 10.500000 0 +2275=15 5007.200195 1114.079956 10.500000 0 +2276=15 5007.200195 1115.839965 10.500000 0 +2277=15 5007.200195 1112.319946 10.500000 0 +2278=15 5007.200195 1110.560058 10.500000 0 +2279=15 5007.200195 1108.800048 10.500000 0 +2280=15 5007.200195 1107.040039 10.500000 0 +2281=15 5007.200195 1105.280029 10.500000 0 +2282=15 5007.200195 1101.760009 10.500000 0 +2283=15 5007.200195 1103.520019 10.500000 0 +2284=15 5007.200195 1100.000000 10.500000 0 +2285=15 5007.200195 1098.239990 10.500000 0 +2286=15 5007.200195 1096.479980 10.500000 0 +2287=15 5007.200195 1094.719970 10.500000 0 +2288=15 5005.439941 1094.719970 10.500000 0 +2289=15 5003.680175 1094.719970 10.500000 0 +2290=15 5001.919921 1094.719970 10.500000 0 +2292=15 5000.160156 1094.719970 7.500000 0 +2295=15 4994.879882 1094.719970 10.500000 0 +2296=15 5000.160156 1094.719970 10.500000 0 +2098=21 4998.399902 1101.760009 6.000000 0 +286=21 4996.640136 1100.000000 6.000000 0 +318=21 4998.399902 1098.239990 6.000000 0 +1788=12 5109.279785 982.080017 6.000000 0 +1801=15 5109.279785 983.840026 6.000000 0 +1813=14 5155.040039 982.080017 6.000000 0 +1819=14 5153.279785 990.880004 6.000000 0 +1820=14 5155.040039 990.880004 6.000000 0 +1823=21 5000.160156 1096.479980 6.000000 0 +1824=21 5001.919921 1096.479980 6.000000 0 +1837=15 5001.919921 1094.719970 7.500000 0 +1838=15 5000.160156 1094.719970 9.000000 0 +1840=11 4996.640136 1094.719970 6.000000 0 +1846=11 4998.399902 1094.719970 6.000000 0 +1850=2 4991.359863 1115.839965 12.000000 0 +1854=2 4993.120117 1115.839965 12.000000 0 +1858=2 4989.600097 1115.839965 12.000000 0 +1860=2 4987.839843 1115.839965 12.000000 0 +2084=2 4987.839843 1114.079956 12.000000 0 +2105=2 4987.839843 1112.319946 12.000000 0 +2106=2 4987.839843 1110.560058 12.000000 0 +2113=2 4987.839843 1108.800048 12.000000 0 +2114=2 4987.839843 1107.040039 12.000000 0 +2115=2 4987.839843 1105.280029 12.000000 0 +2116=2 4987.839843 1103.520019 12.000000 0 +2236=2 4987.839843 1101.760009 12.000000 0 +2293=2 4987.839843 1100.000000 12.000000 0 +2297=2 4987.839843 1098.239990 12.000000 0 +2301=2 4987.839843 1094.719970 12.000000 0 +2302=2 4989.600097 1094.719970 12.000000 0 +2303=2 4991.359863 1094.719970 12.000000 0 +2304=2 4993.120117 1094.719970 12.000000 0 +2305=2 4994.879882 1094.719970 12.000000 0 +2306=2 5001.919921 1094.719970 12.000000 0 +2307=2 5000.160156 1094.719970 12.000000 0 +2308=2 5003.680175 1094.719970 12.000000 0 +2309=2 5005.439941 1094.719970 12.000000 0 +2310=2 5007.200195 1094.719970 12.000000 0 +2311=2 5007.200195 1096.479980 12.000000 0 +2312=2 5007.200195 1098.239990 12.000000 0 +2313=2 5007.200195 1100.000000 12.000000 0 +2314=2 5007.200195 1101.760009 12.000000 0 +2315=2 5007.200195 1103.520019 12.000000 0 +2316=2 5007.200195 1105.280029 12.000000 0 +2317=2 5007.200195 1107.040039 12.000000 0 +2318=2 5007.200195 1108.800048 12.000000 0 +2319=2 5007.200195 1110.560058 12.000000 0 +2320=2 5007.200195 1112.319946 12.000000 0 +2321=2 5007.200195 1114.079956 12.000000 0 +2322=2 5007.200195 1115.839965 12.000000 0 +2323=2 5003.680175 1115.839965 12.000000 0 +2324=2 5005.439941 1115.839965 12.000000 0 +2325=2 5001.919921 1115.839965 12.000000 0 +2326=2 5000.160156 1115.839965 12.000000 0 +2327=2 4998.399902 1115.839965 12.000000 0 +2328=2 4996.640136 1115.839965 12.000000 0 +2329=2 4994.879882 1115.839965 12.000000 0 +2330=2 5005.439941 1114.079956 12.000000 0 +2331=2 5005.439941 1112.319946 12.000000 0 +2332=2 5005.439941 1110.560058 12.000000 0 +2335=2 5005.439941 1108.800048 12.000000 0 +2336=2 5003.680175 1114.079956 12.000000 0 +2338=2 5001.919921 1114.079956 12.000000 0 +2339=2 5000.160156 1114.079956 12.000000 0 +2341=2 4998.399902 1114.079956 12.000000 0 +2342=2 4996.640136 1114.079956 12.000000 0 +2344=2 4994.879882 1114.079956 12.000000 0 +2345=2 4993.120117 1114.079956 12.000000 0 +2346=2 4989.600097 1114.079956 12.000000 0 +2348=2 4991.359863 1114.079956 12.000000 0 +2349=2 4989.600097 1112.319946 12.000000 0 +2350=2 4989.600097 1110.560058 12.000000 0 +2351=2 4989.600097 1107.040039 12.000000 0 +2352=2 4989.600097 1108.800048 12.000000 0 +2353=2 4989.600097 1105.280029 12.000000 0 +2347=2 4989.600097 1103.520019 12.000000 0 +2343=2 4989.600097 1101.760009 12.000000 0 +2354=2 4989.600097 1100.000000 12.000000 0 +2337=2 4987.839843 1096.479980 12.000000 0 +2340=2 4989.600097 1098.239990 12.000000 0 +2356=2 4991.359863 1096.479980 12.000000 0 +2358=2 4993.120117 1096.479980 12.000000 0 +2355=2 5000.160156 1096.479980 12.000000 0 +2360=2 5001.919921 1096.479980 12.000000 0 +2361=2 5003.680175 1096.479980 12.000000 0 +2362=2 5005.439941 1096.479980 12.000000 0 +2363=2 5005.439941 1098.239990 12.000000 0 +2333=2 5005.439941 1107.040039 12.000000 0 +2334=2 5005.439941 1105.280029 12.000000 0 +2359=2 5005.439941 1103.520019 12.000000 0 +2364=2 5005.439941 1101.760009 12.000000 0 +2365=2 5005.439941 1100.000000 12.000000 0 +2368=2 4994.879882 1096.479980 12.000000 0 +52=9 5058.240234 997.919982 6.000000 0 +96=5 5054.720214 999.679992 6.000000 0 +2366=2010 5044.160156 1001.440002 6.000000 180 +544=0 4977.279785 1006.719970 6.000000 0 +2388=0 4977.279785 1010.239990 6.000000 0 +2389=0 4977.279785 1012.000000 6.000000 0 +2390=0 4977.279785 1015.520019 6.000000 0 +2391=0 4977.279785 1013.760009 6.000000 0 +2392=0 4977.279785 1017.280029 6.000000 0 +2393=0 4977.279785 1019.039978 6.000000 0 +2394=0 4977.279785 1022.559997 6.000000 0 +2395=0 4977.279785 1024.319946 6.000000 0 +2396=0 4977.279785 1026.079956 6.000000 0 +2397=0 4977.279785 1027.839965 6.000000 0 +2398=0 4977.279785 1029.599975 6.000000 0 +2399=0 4977.279785 1031.359985 6.000000 0 +2400=0 4977.279785 1020.799987 6.000000 0 +2401=0 4975.520019 1006.719970 6.000000 0 +2402=0 4973.759765 1006.719970 6.000000 0 +2403=0 4972.000000 1006.719970 6.000000 0 +2404=0 4970.240234 1006.719970 6.000000 0 +2405=0 4968.479980 1006.719970 6.000000 0 +2406=0 4966.720214 1006.719970 6.000000 0 +2407=0 4964.959960 1006.719970 6.000000 0 +2408=0 4963.200195 1006.719970 6.000000 0 +2409=0 4961.439941 1006.719970 6.000000 0 +2411=0 4957.919921 1006.719970 6.000000 0 +2413=0 4954.399902 1006.719970 6.000000 0 +2414=0 4952.640136 1006.719970 6.000000 0 +2415=0 4950.879882 1006.719970 6.000000 0 +2416=0 4950.879882 1008.479980 6.000000 0 +2417=0 4950.879882 1010.239990 6.000000 0 +2418=0 4950.879882 1017.280029 6.000000 0 +2420=0 4950.879882 1019.039978 6.000000 0 +2421=0 4950.879882 1020.799987 6.000000 0 +2423=0 4950.879882 1022.559997 6.000000 0 +2424=0 4950.879882 1024.319946 6.000000 0 +2425=0 4950.879882 1026.079956 6.000000 0 +2426=0 4950.879882 1027.839965 6.000000 0 +2427=0 4950.879882 1029.599975 6.000000 0 +2429=0 4950.879882 1031.359985 6.000000 0 +2432=0 4957.919921 1031.359985 6.000000 0 +2433=0 4959.680175 1031.359985 6.000000 0 +2434=0 4961.439941 1031.359985 6.000000 0 +2435=0 4963.200195 1031.359985 6.000000 0 +2436=0 4964.959960 1031.359985 6.000000 0 +2437=0 4968.479980 1031.359985 6.000000 0 +2438=0 4966.720214 1031.359985 6.000000 0 +2439=0 4970.240234 1031.359985 6.000000 0 +2440=0 4972.000000 1031.359985 6.000000 0 +2441=0 4973.759765 1031.359985 6.000000 0 +54=7 5058.240234 1001.440002 6.000000 0 +2443=5 4950.879882 1017.280029 7.500000 0 +2445=5 4950.879882 1010.239990 7.500000 0 +2446=5 4950.879882 1008.479980 7.500000 0 +2447=5 4950.879882 1006.719970 7.500000 0 +2448=5 4952.640136 1006.719970 7.500000 0 +2449=5 4954.399902 1006.719970 7.500000 0 +2450=5 4956.160156 1006.719970 7.500000 0 +2451=5 4957.919921 1006.719970 7.500000 0 +2452=5 4963.200195 1006.719970 7.500000 0 +2453=5 4966.720214 1006.719970 7.500000 0 +2454=5 4964.959960 1006.719970 7.500000 0 +2455=5 4959.680175 1006.719970 7.500000 0 +2456=5 4961.439941 1006.719970 7.500000 0 +2457=5 4968.479980 1006.719970 7.500000 0 +2458=5 4970.240234 1006.719970 7.500000 0 +2459=12 5051.200195 1010.239990 10.500000 0 +2460=5 4972.000000 1006.719970 7.500000 0 +2461=5 4973.759765 1006.719970 7.500000 0 +2462=12 5056.479980 1010.239990 12.000000 0 +2463=5 4975.520019 1006.719970 7.500000 0 +2464=5 4977.279785 1006.719970 7.500000 0 +2466=5 4977.279785 1010.239990 7.500000 0 +2468=5 4977.279785 1012.000000 7.500000 0 +2469=5 4977.279785 1013.760009 7.500000 0 +2470=5 4977.279785 1015.520019 7.500000 0 +2467=5 4977.279785 1017.280029 7.500000 0 +293=5 4977.279785 1020.799987 7.500000 0 +2472=5 4977.279785 1024.319946 7.500000 0 +2471=5 4977.279785 1022.559997 7.500000 0 +2474=5 4977.279785 1026.079956 7.500000 0 +2476=5 4977.279785 1029.599975 7.500000 0 +2475=5 4977.279785 1027.839965 7.500000 0 +2477=5 4977.279785 1031.359985 7.500000 0 +2478=5 4975.520019 1031.359985 7.500000 0 +2480=5 4972.000000 1031.359985 7.500000 0 +2481=5 4973.759765 1031.359985 7.500000 0 +1789=12 5107.520019 982.080017 6.000000 0 +1562=5 4970.240234 1031.359985 7.500000 0 +2482=5 4964.959960 1031.359985 7.500000 0 +2483=5 4966.720214 1031.359985 7.500000 0 +2485=5 4963.200195 1031.359985 7.500000 0 +2486=5 4957.919921 1031.359985 7.500000 0 +2487=5 4959.680175 1031.359985 7.500000 0 +2479=5 4952.640136 1031.359985 7.500000 0 +2488=5 4950.879882 1031.359985 7.500000 0 +2490=5 4950.879882 1029.599975 7.500000 0 +2489=5 4950.879882 1027.839965 7.500000 0 +2491=5 4950.879882 1026.079956 7.500000 0 +2492=5 4950.879882 1024.319946 7.500000 0 +2493=5 4950.879882 1022.559997 7.500000 0 +2494=5 4950.879882 1020.799987 7.500000 0 +2497=5 4950.879882 1012.000000 7.500000 0 +137=37 4950.879882 1012.000000 9.000000 0 +135=37 4950.879882 1010.239990 9.000000 0 +230=37 4950.879882 1008.479980 9.000000 0 +356=37 4950.879882 1006.719970 9.000000 0 +2473=37 4952.640136 1006.719970 9.000000 0 +2495=12 5056.479980 1010.239990 9.000000 0 +2498=37 4956.160156 1006.719970 9.000000 0 +2499=12 5056.479980 1010.239990 10.500000 0 +2500=37 4954.399902 1006.719970 9.000000 0 +2501=12 5054.720214 1010.239990 12.000000 0 +2503=12 5058.240234 1010.239990 12.000000 0 +2502=37 4957.919921 1006.719970 9.000000 0 +2504=37 4959.680175 1006.719970 9.000000 0 +2505=2010 5060.000000 1008.479980 10.500000 180 +2506=37 4961.439941 1006.719970 9.000000 0 +2507=37 4963.200195 1006.719970 9.000000 0 +2508=37 4964.959960 1006.719970 9.000000 0 +2509=37 4966.720214 1006.719970 9.000000 0 +2510=37 4968.479980 1006.719970 9.000000 0 +2511=37 4970.240234 1006.719970 9.000000 0 +2512=37 4972.000000 1006.719970 9.000000 0 +2513=37 4973.759765 1006.719970 9.000000 0 +2514=37 4975.520019 1006.719970 9.000000 0 +2515=37 4977.279785 1006.719970 9.000000 0 +2516=37 4977.279785 1008.479980 9.000000 0 +2517=37 4977.279785 1012.000000 9.000000 0 +2518=37 4977.279785 1010.239990 9.000000 0 +2519=37 4977.279785 1015.520019 9.000000 0 +2520=37 4977.279785 1013.760009 9.000000 0 +294=5 4977.279785 1019.039978 7.500000 0 +2521=37 4977.279785 1017.280029 9.000000 0 +2522=37 4977.279785 1019.039978 9.000000 0 +2523=37 4977.279785 1022.559997 9.000000 0 +2524=37 4977.279785 1020.799987 9.000000 0 +2525=37 4977.279785 1024.319946 9.000000 0 +2526=37 4977.279785 1026.079956 9.000000 0 +2527=37 4977.279785 1029.599975 9.000000 0 +2528=37 4977.279785 1031.359985 9.000000 0 +2529=37 4977.279785 1027.839965 9.000000 0 +2530=37 4975.520019 1031.359985 9.000000 0 +2531=37 4972.000000 1031.359985 9.000000 0 +2532=37 4968.479980 1031.359985 9.000000 0 +2533=37 4970.240234 1031.359985 9.000000 0 +2534=37 4966.720214 1031.359985 9.000000 0 +2535=37 4964.959960 1031.359985 9.000000 0 +2536=37 4963.200195 1031.359985 9.000000 0 +2537=37 4961.439941 1031.359985 9.000000 0 +2538=37 4959.680175 1031.359985 9.000000 0 +2539=37 4957.919921 1031.359985 9.000000 0 +2542=37 4952.640136 1031.359985 9.000000 0 +2543=37 4950.879882 1031.359985 9.000000 0 +2544=37 4950.879882 1029.599975 9.000000 0 +2545=37 4950.879882 1027.839965 9.000000 0 +2546=37 4950.879882 1026.079956 9.000000 0 +2547=37 4950.879882 1024.319946 9.000000 0 +2548=37 4950.879882 1022.559997 9.000000 0 +2549=37 4950.879882 1020.799987 9.000000 0 +2550=37 4973.759765 1031.359985 9.000000 0 +2551=37 4950.879882 1019.039978 9.000000 0 +2552=37 4950.879882 1017.280029 9.000000 0 +2554=38 4950.879882 1012.000000 10.500000 0 +2555=38 4950.879882 1019.039978 10.500000 0 +2556=38 4950.879882 1017.280029 10.500000 0 +2557=38 4950.879882 1020.799987 10.500000 0 +2558=38 4950.879882 1024.319946 10.500000 0 +2559=38 4950.879882 1022.559997 10.500000 0 +2560=38 4950.879882 1026.079956 10.500000 0 +2561=38 4950.879882 1027.839965 10.500000 0 +2562=38 4950.879882 1029.599975 10.500000 0 +2563=38 4950.879882 1031.359985 10.500000 0 +2564=38 4952.640136 1031.359985 10.500000 0 +2566=38 4957.919921 1031.359985 10.500000 0 +2568=38 4959.680175 1031.359985 10.500000 0 +2569=38 4961.439941 1031.359985 10.500000 0 +2570=38 4963.200195 1031.359985 10.500000 0 +2571=38 4964.959960 1031.359985 10.500000 0 +2572=38 4966.720214 1031.359985 10.500000 0 +2573=38 4968.479980 1031.359985 10.500000 0 +2574=38 4970.240234 1031.359985 10.500000 0 +2575=38 4972.000000 1031.359985 10.500000 0 +2576=38 4973.759765 1031.359985 10.500000 0 +2577=38 4975.520019 1031.359985 10.500000 0 +2578=38 4977.279785 1031.359985 10.500000 0 +2579=38 4977.279785 1029.599975 10.500000 0 +2580=38 4977.279785 1027.839965 10.500000 0 +2581=38 4977.279785 1026.079956 10.500000 0 +2582=38 4977.279785 1024.319946 10.500000 0 +2583=38 4977.279785 1022.559997 10.500000 0 +2584=38 4977.279785 1020.799987 10.500000 0 +2585=38 4977.279785 1019.039978 10.500000 0 +2586=38 4977.279785 1017.280029 10.500000 0 +2587=38 4977.279785 1015.520019 10.500000 0 +2588=38 4977.279785 1012.000000 10.500000 0 +2589=38 4977.279785 1013.760009 10.500000 0 +2590=38 4977.279785 1010.239990 10.500000 0 +2591=38 4977.279785 1006.719970 10.500000 0 +2592=38 4977.279785 1008.479980 10.500000 0 +2593=38 4975.520019 1006.719970 10.500000 0 +2594=38 4973.759765 1006.719970 10.500000 0 +2595=38 4970.240234 1006.719970 10.500000 0 +2596=38 4972.000000 1006.719970 10.500000 0 +2597=38 4968.479980 1006.719970 10.500000 0 +2598=38 4966.720214 1006.719970 10.500000 0 +2599=38 4964.959960 1006.719970 10.500000 0 +2600=38 4963.200195 1006.719970 10.500000 0 +2601=38 4961.439941 1006.719970 10.500000 0 +2602=38 4959.680175 1006.719970 10.500000 0 +2603=38 4956.160156 1006.719970 10.500000 0 +2604=38 4957.919921 1006.719970 10.500000 0 +2605=38 4954.399902 1006.719970 10.500000 0 +2606=38 4952.640136 1006.719970 10.500000 0 +99=12 5056.479980 1001.440002 6.000000 0 +2607=17 5051.200195 980.320007 7.500000 0 +2608=17 5051.200195 980.320007 6.000000 0 +12=25 5049.439941 990.880004 6.000000 0 +2431=0 4954.399902 1031.359985 6.000000 0 +229=0 4956.160156 1031.359985 6.000000 0 +235=0 4952.640136 1031.359985 6.000000 0 +295=5 4956.160156 1031.359985 7.500000 0 +2541=5 4954.399902 1031.359985 7.500000 0 +2618=2010 4957.919921 1029.599975 7.500000 0 +2626=5 4954.399902 1031.359985 9.000000 0 +2625=38 4954.399902 1031.359985 10.500000 0 +2444=0 4956.160156 1006.719970 6.000000 0 +2422=0 4950.879882 1012.000000 6.000000 0 +2800=12 5040.640136 1068.319946 6.000000 0 +2802=12 5042.399902 1068.319946 6.000000 0 +2803=12 5044.160156 1068.319946 6.000000 0 +2804=12 5045.919921 1068.319946 6.000000 0 +2805=12 5047.680175 1068.319946 6.000000 0 +2808=12 5051.200195 1068.319946 6.000000 0 +2809=12 5052.959960 1068.319946 6.000000 0 +2817=12 5054.720214 1068.319946 6.000000 0 +2818=12 5056.479980 1068.319946 6.000000 0 +2819=12 5058.240234 1068.319946 6.000000 0 +2820=12 5060.000000 1068.319946 6.000000 0 +2821=12 5061.759765 1068.319946 6.000000 0 +2822=12 5063.520019 1068.319946 6.000000 0 +2825=12 5065.279785 1068.319946 6.000000 0 +2826=12 5067.040039 1068.319946 6.000000 0 +2827=12 5068.799804 1068.319946 6.000000 0 +2828=12 5070.560058 1068.319946 6.000000 0 +2829=12 5072.319824 1068.319946 6.000000 0 +2830=12 5074.080078 1068.319946 6.000000 0 +2831=12 5075.839843 1068.319946 6.000000 0 +2832=12 5077.600097 1068.319946 6.000000 0 +2833=12 5077.600097 1070.079956 6.000000 0 +2834=12 5077.600097 1071.839965 6.000000 0 +2835=12 5077.600097 1073.599975 6.000000 0 +2837=12 5077.600097 1075.359985 6.000000 0 +2839=12 5077.600097 1077.119995 6.000000 0 +2840=12 5077.600097 1078.880004 6.000000 0 +2841=12 5077.600097 1080.640014 6.000000 0 +2842=12 5077.600097 1082.400024 6.000000 0 +2843=12 5077.600097 1084.160034 6.000000 0 +2844=12 5077.600097 1085.920043 6.000000 0 +2845=12 5077.600097 1087.680053 6.000000 0 +2846=12 5077.600097 1089.439941 6.000000 0 +2847=12 5075.839843 1089.439941 6.000000 0 +2848=12 5074.080078 1089.439941 6.000000 0 +2849=12 5072.319824 1089.439941 6.000000 0 +2850=12 5070.560058 1089.439941 6.000000 0 +2851=12 5068.799804 1089.439941 6.000000 0 +2852=12 5067.040039 1089.439941 6.000000 0 +2853=12 5065.279785 1089.439941 6.000000 0 +2854=12 5063.520019 1089.439941 6.000000 0 +2855=12 5061.759765 1089.439941 6.000000 0 +2856=12 5060.000000 1089.439941 6.000000 0 +2857=12 5058.240234 1089.439941 6.000000 0 +2858=12 5056.479980 1089.439941 6.000000 0 +2859=12 5054.720214 1089.439941 6.000000 0 +2860=12 5052.959960 1089.439941 6.000000 0 +2861=12 5051.200195 1089.439941 6.000000 0 +2862=12 5049.439941 1089.439941 6.000000 0 +2863=12 5047.680175 1089.439941 6.000000 0 +2864=12 5045.919921 1089.439941 6.000000 0 +2866=12 5040.640136 1070.079956 6.000000 0 +2867=12 5040.640136 1071.839965 6.000000 0 +2868=12 5040.640136 1073.599975 6.000000 0 +2869=12 5044.160156 1089.439941 6.000000 0 +2870=12 5042.399902 1089.439941 6.000000 0 +2871=12 5040.640136 1089.439941 6.000000 0 +2872=12 5040.640136 1087.680053 6.000000 0 +2873=12 5040.640136 1085.920043 6.000000 0 +2874=12 5040.640136 1077.119995 6.000000 0 +2875=12 5040.640136 1084.160034 6.000000 0 +2877=12 5040.640136 1078.880004 6.000000 0 +2878=2010 5040.640136 1080.640014 6.000000 180 +2879=11 5040.640136 1078.880004 7.500000 0 +2880=11 5040.640136 1077.119995 7.500000 0 +2882=11 5040.640136 1073.599975 7.500000 0 +2883=11 5040.640136 1071.839965 7.500000 0 +2884=11 5040.640136 1068.319946 7.500000 0 +2885=11 5040.640136 1070.079956 7.500000 0 +2887=11 5042.399902 1068.319946 7.500000 0 +2889=11 5049.439941 1068.319946 7.500000 0 +2890=11 5047.680175 1068.319946 7.500000 0 +2891=11 5051.200195 1068.319946 7.500000 0 +2892=11 5052.959960 1068.319946 7.500000 0 +2893=11 5056.479980 1068.319946 7.500000 0 +2894=11 5054.720214 1068.319946 7.500000 0 +2895=11 5060.000000 1068.319946 7.500000 0 +2896=11 5058.240234 1068.319946 7.500000 0 +2897=11 5061.759765 1068.319946 7.500000 0 +2898=11 5063.520019 1068.319946 7.500000 0 +2899=11 5067.040039 1068.319946 7.500000 0 +2900=11 5065.279785 1068.319946 7.500000 0 +2901=11 5068.799804 1068.319946 7.500000 0 +2902=11 5070.560058 1068.319946 7.500000 0 +2903=11 5074.080078 1068.319946 7.500000 0 +2904=11 5072.319824 1068.319946 7.500000 0 +2905=11 5075.839843 1068.319946 7.500000 0 +2907=11 5077.600097 1068.319946 7.500000 0 +2906=11 5077.600097 1071.839965 7.500000 0 +2908=11 5077.600097 1070.079956 7.500000 0 +2909=11 5077.600097 1073.599975 7.500000 0 +2910=11 5077.600097 1075.359985 7.500000 0 +2911=11 5077.600097 1077.119995 7.500000 0 +2912=11 5077.600097 1078.880004 7.500000 0 +2913=11 5077.600097 1080.640014 7.500000 0 +2914=11 5077.600097 1082.400024 7.500000 0 +2915=11 5077.600097 1084.160034 7.500000 0 +2916=11 5077.600097 1085.920043 7.500000 0 +2917=11 5077.600097 1087.680053 7.500000 0 +2918=11 5077.600097 1089.439941 7.500000 0 +2919=11 5075.839843 1089.439941 7.500000 0 +2920=11 5072.319824 1089.439941 7.500000 0 +2921=11 5074.080078 1089.439941 7.500000 0 +2922=11 5068.799804 1089.439941 7.500000 0 +2923=11 5070.560058 1089.439941 7.500000 0 +2924=11 5067.040039 1089.439941 7.500000 0 +2925=11 5065.279785 1089.439941 7.500000 0 +2926=11 5061.759765 1089.439941 7.500000 0 +2927=11 5063.520019 1089.439941 7.500000 0 +2928=11 5060.000000 1089.439941 7.500000 0 +2929=11 5058.240234 1089.439941 7.500000 0 +2930=11 5054.720214 1089.439941 7.500000 0 +2931=11 5056.479980 1089.439941 7.500000 0 +2932=11 5051.200195 1089.439941 7.500000 0 +2933=11 5052.959960 1089.439941 7.500000 0 +2934=11 5047.680175 1089.439941 7.500000 0 +2935=11 5049.439941 1089.439941 7.500000 0 +2936=11 5045.919921 1089.439941 7.500000 0 +2937=11 5042.399902 1089.439941 7.500000 0 +2938=11 5044.160156 1089.439941 7.500000 0 +2939=11 5040.640136 1089.439941 7.500000 0 +2940=11 5040.640136 1087.680053 7.500000 0 +2941=11 5040.640136 1084.160034 7.500000 0 +2942=11 5040.640136 1085.920043 7.500000 0 +2943=11 5040.640136 1082.400024 7.500000 0 +2944=21 5042.399902 1087.680053 6.000000 0 +2945=21 5045.919921 1087.680053 6.000000 0 +2946=21 5051.200195 1087.680053 6.000000 0 +2947=21 5056.479980 1087.680053 6.000000 0 +2948=21 5052.959960 1085.920043 6.000000 0 +2949=21 5054.720214 1087.680053 6.000000 0 +2950=21 5051.200195 1085.920043 6.000000 0 +2951=21 5047.680175 1085.920043 6.000000 0 +2952=21 5042.399902 1085.920043 6.000000 0 +2953=21 5042.399902 1084.160034 6.000000 0 +2955=21 5042.399902 1080.640014 6.000000 0 +2956=21 5044.160156 1078.880004 6.000000 0 +2957=21 5044.160156 1077.119995 6.000000 0 +2958=21 5042.399902 1078.880004 6.000000 0 +2959=21 5042.399902 1077.119995 6.000000 0 +2960=21 5044.160156 1071.839965 6.000000 0 +2961=21 5042.399902 1070.079956 6.000000 0 +2962=21 5044.160156 1070.079956 6.000000 0 +2963=21 5042.399902 1071.839965 6.000000 0 +2964=21 5042.399902 1075.359985 6.000000 0 +2965=21 5044.160156 1075.359985 6.000000 0 +2966=21 5042.399902 1073.599975 6.000000 0 +2967=21 5044.160156 1073.599975 6.000000 0 +2968=21 5044.160156 1080.640014 6.000000 0 +2969=21 5045.919921 1082.400024 6.000000 0 +2970=21 5044.160156 1087.680053 6.000000 0 +2971=21 5044.160156 1082.400024 6.000000 0 +2972=21 5044.160156 1084.160034 6.000000 0 +2973=21 5044.160156 1085.920043 6.000000 0 +2974=21 5045.919921 1085.920043 6.000000 0 +2975=21 5045.919921 1084.160034 6.000000 0 +2976=21 5049.439941 1087.680053 6.000000 0 +2977=21 5047.680175 1087.680053 6.000000 0 +2978=21 5049.439941 1085.920043 6.000000 0 +2979=21 5052.959960 1087.680053 6.000000 0 +2980=21 5056.479980 1085.920043 6.000000 0 +2981=21 5047.680175 1077.119995 6.000000 0 +2982=21 5051.200195 1070.079956 6.000000 0 +2983=21 5056.479980 1070.079956 6.000000 0 +2984=21 5060.000000 1070.079956 6.000000 0 +2986=21 5067.040039 1071.839965 6.000000 0 +2987=21 5072.319824 1071.839965 6.000000 0 +2988=21 5072.319824 1084.160034 6.000000 0 +2989=21 5068.799804 1085.920043 6.000000 0 +2990=21 5065.279785 1085.920043 6.000000 0 +2991=21 5060.000000 1085.920043 6.000000 0 +2992=21 5056.479980 1084.160034 6.000000 0 +2993=21 5058.240234 1085.920043 6.000000 0 +2994=21 5058.240234 1084.160034 6.000000 0 +2995=21 5060.000000 1084.160034 6.000000 0 +2996=21 5061.759765 1084.160034 6.000000 0 +2997=21 5063.520019 1084.160034 6.000000 0 +2998=21 5058.240234 1087.680053 6.000000 0 +2999=21 5054.720214 1085.920043 6.000000 0 +3000=21 5060.000000 1087.680053 6.000000 0 +3001=21 5063.520019 1087.680053 6.000000 0 +3002=21 5061.759765 1085.920043 6.000000 0 +3003=21 5061.759765 1087.680053 6.000000 0 +3004=21 5063.520019 1085.920043 6.000000 0 +3005=21 5065.279785 1087.680053 6.000000 0 +3006=21 5067.040039 1087.680053 6.000000 0 +3007=21 5070.560058 1087.680053 6.000000 0 +3008=21 5068.799804 1087.680053 6.000000 0 +3009=21 5074.080078 1087.680053 6.000000 0 +3010=21 5072.319824 1087.680053 6.000000 0 +3011=21 5075.839843 1087.680053 6.000000 0 +3012=21 5075.839843 1085.920043 6.000000 0 +3014=21 5072.319824 1085.920043 6.000000 0 +3015=21 5070.560058 1085.920043 6.000000 0 +3016=21 5074.080078 1082.400024 6.000000 0 +3017=21 5072.319824 1080.640014 6.000000 0 +3018=21 5072.319824 1082.400024 6.000000 0 +3019=21 5072.319824 1077.119995 6.000000 0 +3020=21 5072.319824 1078.880004 6.000000 0 +3021=21 5072.319824 1073.599975 6.000000 0 +3022=21 5072.319824 1075.359985 6.000000 0 +3023=21 5072.319824 1070.079956 6.000000 0 +3024=21 5068.799804 1071.839965 6.000000 0 +3026=21 5061.759765 1070.079956 6.000000 0 +3027=21 5063.520019 1071.839965 6.000000 0 +3028=21 5063.520019 1070.079956 6.000000 0 +3029=21 5065.279785 1070.079956 6.000000 0 +3030=21 5067.040039 1070.079956 6.000000 0 +3031=21 5070.560058 1070.079956 6.000000 0 +3032=21 5068.799804 1070.079956 6.000000 0 +3033=21 5075.839843 1071.839965 6.000000 0 +3034=21 5074.080078 1071.839965 6.000000 0 +3035=21 5075.839843 1070.079956 6.000000 0 +3036=21 5074.080078 1070.079956 6.000000 0 +3037=21 5074.080078 1073.599975 6.000000 0 +3038=21 5075.839843 1073.599975 6.000000 0 +3039=21 5075.839843 1075.359985 6.000000 0 +3040=21 5074.080078 1077.119995 6.000000 0 +3041=21 5075.839843 1078.880004 6.000000 0 +3042=21 5074.080078 1075.359985 6.000000 0 +3043=21 5075.839843 1077.119995 6.000000 0 +3044=21 5074.080078 1080.640014 6.000000 0 +3045=21 5074.080078 1078.880004 6.000000 0 +3046=21 5075.839843 1080.640014 6.000000 0 +3047=21 5075.839843 1084.160034 6.000000 0 +3048=21 5075.839843 1082.400024 6.000000 0 +3049=21 5074.080078 1084.160034 6.000000 0 +3050=21 5068.799804 1080.640014 6.000000 0 +3052=21 5065.279785 1078.880004 6.000000 0 +3051=21 5070.560058 1073.599975 6.000000 0 +3053=21 5067.040039 1073.599975 6.000000 0 +3054=21 5061.759765 1071.839965 6.000000 0 +3055=21 5056.479980 1071.839965 6.000000 0 +3056=21 5051.200195 1073.599975 6.000000 0 +3057=21 5047.680175 1084.160034 6.000000 0 +3058=21 5060.000000 1080.640014 6.000000 0 +3059=21 5061.759765 1082.400024 6.000000 0 +3060=21 5061.759765 1080.640014 6.000000 0 +3061=21 5056.479980 1080.640014 6.000000 0 +3062=21 5051.200195 1078.880004 6.000000 0 +3063=21 5047.680175 1082.400024 6.000000 0 +3064=21 5051.200195 1080.640014 6.000000 0 +3065=21 5049.439941 1082.400024 6.000000 0 +3066=21 5051.200195 1082.400024 6.000000 0 +3067=21 5054.720214 1082.400024 6.000000 0 +3068=21 5052.959960 1082.400024 6.000000 0 +3069=21 5056.479980 1082.400024 6.000000 0 +3070=21 5060.000000 1082.400024 6.000000 0 +3071=21 5058.240234 1082.400024 6.000000 0 +3072=21 5058.240234 1080.640014 6.000000 0 +3073=21 5060.000000 1077.119995 6.000000 0 +3074=21 5060.000000 1078.880004 6.000000 0 +3075=21 5060.000000 1075.359985 6.000000 0 +3076=21 5060.000000 1071.839965 6.000000 0 +3077=21 5060.000000 1073.599975 6.000000 0 +3078=21 5058.240234 1073.599975 6.000000 0 +3079=21 5056.479980 1073.599975 6.000000 0 +3080=21 5056.479980 1077.119995 6.000000 0 +3081=21 5056.479980 1075.359985 6.000000 0 +3082=21 5054.720214 1077.119995 6.000000 0 +3083=21 5051.200195 1077.119995 6.000000 0 +3084=21 5052.959960 1077.119995 6.000000 0 +3085=21 5052.959960 1075.359985 6.000000 0 +3086=21 5052.959960 1071.839965 6.000000 0 +3087=21 5051.200195 1075.359985 6.000000 0 +3088=21 5052.959960 1073.599975 6.000000 0 +3089=21 5051.200195 1071.839965 6.000000 0 +3090=21 5052.959960 1070.079956 6.000000 0 +3091=21 5054.720214 1070.079956 6.000000 0 +3092=21 5054.720214 1071.839965 6.000000 0 +3093=21 5054.720214 1075.359985 6.000000 0 +3094=21 5054.720214 1073.599975 6.000000 0 +3095=21 5047.680175 1071.839965 6.000000 0 +3096=21 5049.439941 1071.839965 6.000000 0 +3098=21 5045.919921 1073.599975 6.000000 0 +3099=21 5047.680175 1073.599975 6.000000 0 +3100=21 5045.919921 1071.839965 6.000000 0 +3101=21 5047.680175 1070.079956 6.000000 0 +3102=21 5045.919921 1070.079956 6.000000 0 +3103=21 5049.439941 1070.079956 6.000000 0 +3104=21 5049.439941 1077.119995 6.000000 0 +3106=21 5047.680175 1075.359985 6.000000 0 +3107=21 5045.919921 1075.359985 6.000000 0 +3108=21 5045.919921 1077.119995 6.000000 0 +3109=21 5045.919921 1080.640014 6.000000 0 +3110=21 5045.919921 1078.880004 6.000000 0 +3111=21 5047.680175 1078.880004 6.000000 0 +3112=21 5049.439941 1080.640014 6.000000 0 +3113=21 5049.439941 1078.880004 6.000000 0 +3114=21 5047.680175 1080.640014 6.000000 0 +3115=21 5054.720214 1080.640014 6.000000 0 +3116=21 5052.959960 1078.880004 6.000000 0 +3117=21 5052.959960 1080.640014 6.000000 0 +3118=21 5054.720214 1078.880004 6.000000 0 +3119=21 5058.240234 1078.880004 6.000000 0 +3120=21 5056.479980 1078.880004 6.000000 0 +3121=21 5058.240234 1077.119995 6.000000 0 +3122=21 5058.240234 1075.359985 6.000000 0 +3123=21 5058.240234 1070.079956 6.000000 0 +3124=21 5058.240234 1071.839965 6.000000 0 +3125=21 5063.520019 1075.359985 6.000000 0 +3126=21 5061.759765 1075.359985 6.000000 0 +3128=21 5067.040039 1075.359985 6.000000 0 +3129=21 5070.560058 1075.359985 6.000000 0 +3130=21 5068.799804 1075.359985 6.000000 0 +3132=21 5068.799804 1073.599975 6.000000 0 +3133=21 5061.759765 1073.599975 6.000000 0 +3134=21 5063.520019 1073.599975 6.000000 0 +3135=21 5065.279785 1077.119995 6.000000 0 +3136=21 5068.799804 1078.880004 6.000000 0 +3137=21 5068.799804 1077.119995 6.000000 0 +3138=21 5067.040039 1078.880004 6.000000 0 +3139=21 5067.040039 1077.119995 6.000000 0 +3140=21 5068.799804 1084.160034 6.000000 0 +3141=21 5068.799804 1082.400024 6.000000 0 +3142=21 5067.040039 1082.400024 6.000000 0 +3146=21 5063.520019 1080.640014 6.000000 0 +3147=21 5065.279785 1080.640014 6.000000 0 +3148=21 5067.040039 1080.640014 6.000000 0 +3149=21 5063.520019 1078.880004 6.000000 0 +3150=21 5061.759765 1077.119995 6.000000 0 +3151=21 5063.520019 1077.119995 6.000000 0 +3152=21 5061.759765 1078.880004 6.000000 0 +3153=21 5067.040039 1085.920043 6.000000 0 +3154=21 5067.040039 1084.160034 6.000000 0 +3155=21 5070.560058 1084.160034 6.000000 0 +3156=21 5070.560058 1082.400024 6.000000 0 +3157=21 5070.560058 1080.640014 6.000000 0 +3158=21 5070.560058 1078.880004 6.000000 0 +3159=21 5070.560058 1077.119995 6.000000 0 +3160=21 5054.720214 1084.160034 6.000000 0 +3161=21 5052.959960 1084.160034 6.000000 0 +3162=21 5049.439941 1084.160034 6.000000 0 +3163=21 5051.200195 1084.160034 6.000000 0 +194=21 5070.560058 1071.839965 6.000000 0 +195=21 5074.080078 1085.920043 6.000000 0 +212=2011 5042.399902 1080.640014 7.500000 90 +557=12 5042.399902 1078.880004 7.500000 0 +613=12 5042.399902 1082.400024 7.500000 0 +822=12 5042.399902 1082.400024 9.000000 0 +870=12 5042.399902 1078.880004 9.000000 0 +901=12 5042.399902 1080.640014 10.500000 0 +904=12 5042.399902 1078.880004 10.500000 0 +905=12 5042.399902 1082.400024 10.500000 0 +908=11 5040.640136 1078.880004 9.000000 0 +913=11 5040.640136 1077.119995 9.000000 0 +917=11 5040.640136 1073.599975 9.000000 0 +918=11 5040.640136 1071.839965 9.000000 0 +921=11 5040.640136 1070.079956 9.000000 0 +923=11 5040.640136 1068.319946 9.000000 0 +2133=11 5040.640136 1082.400024 9.000000 0 +2155=11 5040.640136 1082.400024 10.500000 0 +2160=11 5040.640136 1078.880004 10.500000 0 +2162=11 5040.640136 1084.160034 9.000000 0 +2164=11 5040.640136 1084.160034 10.500000 0 +2198=11 5040.640136 1085.920043 9.000000 0 +2357=11 5040.640136 1085.920043 10.500000 0 +2367=11 5040.640136 1087.680053 9.000000 0 +2369=11 5040.640136 1087.680053 10.500000 0 +2375=11 5040.640136 1089.439941 9.000000 0 +2376=11 5040.640136 1089.439941 10.500000 0 +2378=11 5040.640136 1080.640014 10.500000 0 +2385=11 5040.640136 1077.119995 10.500000 0 +2386=11 5040.640136 1075.359985 10.500000 0 +2647=11 5040.640136 1073.599975 10.500000 0 +2672=11 5040.640136 1071.839965 10.500000 0 +2678=11 5040.640136 1070.079956 10.500000 0 +2682=11 5040.640136 1068.319946 10.500000 0 +2683=11 5042.399902 1068.319946 9.000000 0 +2692=11 5042.399902 1068.319946 10.500000 0 +2694=11 5044.160156 1068.319946 9.000000 0 +2700=11 5044.160156 1068.319946 10.500000 0 +2702=11 5042.399902 1089.439941 9.000000 0 +2710=11 5042.399902 1089.439941 10.500000 0 +916=2010 5040.640136 1075.359985 6.000000 180 +2713=12 5042.399902 1077.119995 7.500000 0 +2714=12 5042.399902 1073.599975 7.500000 0 +2715=12 5042.399902 1073.599975 9.000000 0 +2717=12 5042.399902 1077.119995 9.000000 0 +2718=12 5042.399902 1073.599975 10.500000 0 +2720=12 5042.399902 1077.119995 10.500000 0 +2721=12 5042.399902 1075.359985 10.500000 0 +2722=2011 5042.399902 1075.359985 7.500000 90 +2724=2002 5042.399902 1087.680053 7.500000 0 +2725=2002 5042.399902 1084.160034 7.500000 180 +2726=2002 5044.160156 1087.680053 7.500000 0 +2728=2002 5044.160156 1084.160034 7.500000 180 +2730=11 5044.160156 1082.400024 7.500000 0 +2731=11 5045.919921 1082.400024 7.500000 0 +2732=11 5047.680175 1082.400024 7.500000 0 +2733=11 5051.200195 1087.680053 7.500000 0 +2734=11 5051.200195 1085.920043 7.500000 0 +2735=11 5051.200195 1084.160034 7.500000 0 +2737=11 5051.200195 1082.400024 7.500000 0 +2738=11 5045.919921 1089.439941 9.000000 0 +2773=11 5047.680175 1089.439941 9.000000 0 +2779=11 5049.439941 1089.439941 9.000000 0 +2780=11 5051.200195 1087.680053 9.000000 0 +2783=11 5051.200195 1089.439941 9.000000 0 +2784=11 5051.200195 1085.920043 9.000000 0 +2865=11 5051.200195 1084.160034 9.000000 0 +2881=11 5051.200195 1082.400024 9.000000 0 +3025=11 5047.680175 1082.400024 9.000000 0 +3164=11 5045.919921 1082.400024 9.000000 0 +3165=11 5044.160156 1082.400024 9.000000 0 +3166=11 5044.160156 1082.400024 10.500000 0 +3167=11 5047.680175 1082.400024 10.500000 0 +3168=11 5045.919921 1082.400024 10.500000 0 +3169=11 5049.439941 1082.400024 10.500000 0 +3170=11 5051.200195 1082.400024 10.500000 0 +3172=11 5051.200195 1084.160034 10.500000 0 +3173=11 5051.200195 1087.680053 10.500000 0 +3174=11 5051.200195 1089.439941 10.500000 0 +3175=11 5049.439941 1089.439941 10.500000 0 +3176=11 5047.680175 1089.439941 10.500000 0 +3177=11 5045.919921 1089.439941 10.500000 0 +3178=11 5044.160156 1089.439941 9.000000 0 +3179=11 5044.160156 1089.439941 10.500000 0 +3013=2012 5049.439941 1082.400024 7.500000 0 +2151=19 5026.560058 1015.520019 6.000000 0 +2166=19 5026.560058 1017.280029 6.000000 0 +2183=19 5026.560058 1020.799987 6.000000 0 +2185=19 5026.560058 1022.559997 6.000000 0 +2184=19 5026.560058 1024.319946 6.000000 0 +2187=19 5028.319824 1024.319946 6.000000 0 +2188=19 5028.319824 1015.520019 6.000000 0 +2194=19 5030.080078 1015.520019 6.000000 0 +2200=19 5030.080078 1024.319946 6.000000 0 +2213=19 5035.359863 1015.520019 6.000000 0 +2214=19 5037.120117 1015.520019 6.000000 0 +2215=19 5038.879882 1015.520019 6.000000 0 +934=19 5038.879882 1017.280029 6.000000 0 +2216=19 5038.879882 1019.039978 6.000000 0 +2231=19 5038.879882 1020.799987 6.000000 0 +2794=19 5038.879882 1022.559997 6.000000 0 +732=19 5038.879882 1024.319946 6.000000 0 +2220=11 4991.359863 1034.880004 6.000000 0 +2234=11 4991.359863 1034.880004 7.500000 0 +2797=11 4991.359863 1034.880004 9.000000 0 +2799=11 4993.120117 1034.880004 9.000000 0 +2801=11 4994.879882 1034.880004 9.000000 0 +2806=11 4994.879882 1034.880004 7.500000 0 +2811=11 4994.879882 1034.880004 6.000000 0 +2812=11 4996.640136 1034.880004 6.000000 0 +2813=11 4998.399902 1034.880004 6.000000 0 +2814=11 5000.160156 1034.880004 6.000000 0 +2815=11 5001.919921 1034.880004 6.000000 0 +2816=11 5001.919921 1034.880004 7.500000 0 +3180=11 5001.919921 1034.880004 9.000000 0 +3181=11 5001.919921 1034.880004 10.500000 0 +3182=11 5000.160156 1034.880004 10.500000 0 +3183=11 4998.399902 1034.880004 10.500000 0 +3184=11 4996.640136 1034.880004 10.500000 0 +3185=11 4994.879882 1034.880004 10.500000 0 +3186=11 4993.120117 1034.880004 10.500000 0 +3187=11 4991.359863 1034.880004 10.500000 0 +3188=11 4989.600097 1034.880004 10.500000 0 +3189=11 4987.839843 1034.880004 10.500000 0 +3190=11 4986.080078 1034.880004 10.500000 0 +3191=11 4984.319824 1034.880004 10.500000 0 +3193=11 4984.319824 1034.880004 9.000000 0 +3194=11 4984.319824 1034.880004 7.500000 0 +3192=11 4984.319824 1034.880004 6.000000 0 +3195=11 4989.600097 1034.880004 6.000000 0 +3196=11 4987.839843 1034.880004 6.000000 0 +3197=11 4986.080078 1034.880004 6.000000 0 +3198=2012 4993.120117 1034.880004 6.000000 0 +3199=31 4996.640136 1034.880004 7.500000 0 +3200=31 4996.640136 1034.880004 9.000000 0 +3201=31 4998.399902 1034.880004 9.000000 0 +3202=31 4998.399902 1034.880004 7.500000 0 +3203=31 5000.160156 1034.880004 9.000000 0 +3204=31 5000.160156 1034.880004 7.500000 0 +3206=31 4986.080078 1034.880004 9.000000 0 +3207=31 4987.839843 1034.880004 7.500000 0 +3208=31 4987.839843 1034.880004 9.000000 0 +3209=31 4989.600097 1034.880004 9.000000 0 +3210=31 4989.600097 1034.880004 7.500000 0 +3211=11 4984.319824 1036.640014 6.000000 0 +3212=11 4984.319824 1038.400024 6.000000 0 +3213=11 4984.319824 1040.160034 6.000000 0 +3214=11 4984.319824 1041.920043 6.000000 0 +3215=11 4984.319824 1043.680053 6.000000 0 +3216=11 4984.319824 1045.439941 6.000000 0 +3217=11 4984.319824 1047.199951 6.000000 0 +3218=11 4984.319824 1048.959960 6.000000 0 +3219=11 4984.319824 1050.719970 6.000000 0 +3220=11 4986.080078 1050.719970 6.000000 0 +3221=11 4987.839843 1050.719970 6.000000 0 +3222=11 4989.600097 1050.719970 6.000000 0 +3223=11 4991.359863 1050.719970 6.000000 0 +3224=11 4993.120117 1050.719970 6.000000 0 +3225=11 4994.879882 1050.719970 6.000000 0 +3226=11 4996.640136 1050.719970 6.000000 0 +3227=11 4998.399902 1050.719970 6.000000 0 +3228=11 5000.160156 1050.719970 6.000000 0 +3229=11 5001.919921 1050.719970 6.000000 0 +3230=11 5001.919921 1048.959960 6.000000 0 +3231=11 5001.919921 1047.199951 6.000000 0 +3232=11 5001.919921 1045.439941 6.000000 0 +3234=11 5001.919921 1041.920043 6.000000 0 +3237=11 5001.919921 1036.640014 6.000000 0 +3238=11 5001.919921 1036.640014 10.500000 0 +3239=11 5001.919921 1038.400024 10.500000 0 +3240=11 5001.919921 1040.160034 10.500000 0 +3242=11 5001.919921 1043.680053 10.500000 0 +3243=11 5001.919921 1045.439941 10.500000 0 +3244=11 5001.919921 1047.199951 10.500000 0 +3245=11 5001.919921 1048.959960 10.500000 0 +3246=11 5001.919921 1050.719970 10.500000 0 +3247=11 5000.160156 1050.719970 10.500000 0 +3248=11 4998.399902 1050.719970 10.500000 0 +3249=11 4996.640136 1050.719970 10.500000 0 +3250=11 4994.879882 1050.719970 10.500000 0 +3251=11 4993.120117 1050.719970 10.500000 0 +3252=11 4991.359863 1050.719970 10.500000 0 +3253=11 4989.600097 1050.719970 10.500000 0 +3254=11 4987.839843 1050.719970 10.500000 0 +3256=11 4984.319824 1050.719970 10.500000 0 +3257=11 4984.319824 1050.719970 9.000000 0 +3258=11 4984.319824 1050.719970 7.500000 0 +3259=11 4984.319824 1048.959960 10.500000 0 +3260=11 4984.319824 1047.199951 10.500000 0 +3261=11 4984.319824 1045.439941 10.500000 0 +3262=11 4984.319824 1043.680053 10.500000 0 +3263=11 4984.319824 1041.920043 10.500000 0 +3264=11 4984.319824 1040.160034 10.500000 0 +3265=11 4984.319824 1038.400024 10.500000 0 +3266=11 4984.319824 1036.640014 10.500000 0 +3269=11 4986.080078 1047.199951 10.500000 0 +3270=11 4987.839843 1047.199951 10.500000 0 +3271=11 4989.600097 1047.199951 10.500000 0 +3272=11 4991.359863 1047.199951 10.500000 0 +3273=11 4993.120117 1047.199951 10.500000 0 +3274=11 4994.879882 1047.199951 10.500000 0 +3275=11 4996.640136 1047.199951 10.500000 0 +3276=11 4996.640136 1047.199951 9.000000 0 +3277=11 4996.640136 1047.199951 7.500000 0 +3278=11 4996.640136 1047.199951 6.000000 0 +3279=11 4994.879882 1047.199951 6.000000 0 +3280=11 4993.120117 1047.199951 6.000000 0 +3281=11 4991.359863 1047.199951 6.000000 0 +3282=11 4989.600097 1047.199951 6.000000 0 +3283=11 4987.839843 1047.199951 6.000000 0 +3284=11 4986.080078 1047.199951 6.000000 0 +3285=11 4984.319824 1048.959960 9.000000 0 +3286=11 4984.319824 1048.959960 7.500000 0 +3287=11 4984.319824 1047.199951 9.000000 0 +3288=11 4984.319824 1047.199951 7.500000 0 +3289=11 4986.080078 1047.199951 9.000000 0 +3290=11 4986.080078 1047.199951 7.500000 0 +3291=11 4987.839843 1047.199951 7.500000 0 +3292=11 4987.839843 1047.199951 9.000000 0 +3293=11 4989.600097 1047.199951 9.000000 0 +3294=11 4989.600097 1047.199951 7.500000 0 +3295=11 4991.359863 1047.199951 9.000000 0 +3296=11 4991.359863 1047.199951 7.500000 0 +3297=11 4993.120117 1047.199951 9.000000 0 +3298=11 4993.120117 1047.199951 7.500000 0 +3299=11 4994.879882 1047.199951 9.000000 0 +3300=11 4994.879882 1047.199951 7.500000 0 +3301=11 4986.080078 1050.719970 7.500000 0 +3302=11 4986.080078 1050.719970 9.000000 0 +3303=11 4987.839843 1050.719970 7.500000 0 +3304=11 4987.839843 1050.719970 9.000000 0 +3305=11 4989.600097 1050.719970 9.000000 0 +3306=11 4989.600097 1050.719970 7.500000 0 +3307=11 4991.359863 1050.719970 9.000000 0 +3308=11 4991.359863 1050.719970 7.500000 0 +3309=11 4993.120117 1050.719970 9.000000 0 +3310=11 4993.120117 1050.719970 7.500000 0 +3311=11 4994.879882 1050.719970 9.000000 0 +3312=11 4994.879882 1050.719970 7.500000 0 +3313=11 4996.640136 1050.719970 9.000000 0 +3314=11 4996.640136 1050.719970 7.500000 0 +3315=11 4998.399902 1050.719970 9.000000 0 +3316=11 4998.399902 1050.719970 7.500000 0 +3317=11 5000.160156 1050.719970 9.000000 0 +3318=11 5000.160156 1050.719970 7.500000 0 +3319=11 5001.919921 1050.719970 9.000000 0 +3320=11 5001.919921 1050.719970 7.500000 0 +3322=11 4986.080078 1050.719970 12.000000 0 +610=2011 4994.879882 1094.719970 7.500000 0 +2221=15 4996.640136 1094.719970 10.500000 0 +2222=15 4998.399902 1094.719970 10.500000 0 +2223=15 4996.640136 1094.719970 7.500000 0 +2291=15 4996.640136 1094.719970 9.000000 0 +2294=2010 4994.879882 1092.959960 6.000000 270 +1849=2006 5005.439941 1112.319946 7.500000 0 +2412=2008 5001.919921 1114.079956 7.500000 0 +2419=2002 4989.600097 1114.079956 7.500000 0 +2553=2002 4993.120117 1114.079956 7.500000 0 +3325=2001 5005.439941 1105.280029 7.500000 0 +3326=2001 5003.680175 1103.520019 7.500000 90 +3327=2001 5005.439941 1101.760009 7.500000 180 +3328=2006 5003.680175 1096.479980 7.500000 90 +3329=2007 4989.600097 1098.239990 7.500000 90 +3330=2007 4989.600097 1101.760009 7.500000 90 +3332=2013 5001.919921 1091.199951 6.000000 0 +3334=19 5031.839843 1024.319946 6.000000 0 +3335=19 5035.359863 1024.319946 6.000000 0 +3336=19 5037.120117 1024.319946 6.000000 0 +3337=19 5033.600097 1024.319946 6.000000 0 +3338=19 5026.560058 1024.319946 7.500000 0 +3339=19 5026.560058 1020.799987 7.500000 0 +3340=19 5026.560058 1022.559997 7.500000 0 +3341=19 5026.560058 1017.280029 7.500000 0 +3342=19 5026.560058 1019.039978 7.500000 0 +3345=19 5028.319824 1015.520019 7.500000 0 +3348=19 5038.879882 1015.520019 7.500000 0 +3350=19 5037.120117 1015.520019 7.500000 0 +3351=19 5038.879882 1017.280029 7.500000 0 +3352=19 5038.879882 1019.039978 7.500000 0 +3353=19 5038.879882 1022.559997 7.500000 0 +3354=19 5038.879882 1020.799987 7.500000 0 +3355=19 5038.879882 1024.319946 7.500000 0 +3356=19 5037.120117 1024.319946 7.500000 0 +3357=19 5035.359863 1024.319946 7.500000 0 +3358=19 5031.839843 1024.319946 7.500000 0 +3359=19 5033.600097 1024.319946 7.500000 0 +3360=19 5028.319824 1024.319946 7.500000 0 +3361=19 5030.080078 1024.319946 7.500000 0 +3347=19 5037.120117 1015.520019 9.000000 0 +3362=19 5038.879882 1015.520019 9.000000 0 +3363=19 5038.879882 1017.280029 9.000000 0 +3364=19 5038.879882 1019.039978 9.000000 0 +3365=19 5038.879882 1020.799987 9.000000 0 +3367=19 5038.879882 1024.319946 9.000000 0 +3368=19 5037.120117 1024.319946 9.000000 0 +3369=19 5035.359863 1024.319946 9.000000 0 +3370=19 5031.839843 1024.319946 9.000000 0 +3371=19 5033.600097 1024.319946 9.000000 0 +3373=19 5030.080078 1024.319946 9.000000 0 +3374=19 5026.560058 1024.319946 9.000000 0 +3375=19 5026.560058 1022.559997 9.000000 0 +3376=19 5026.560058 1020.799987 9.000000 0 +3377=19 5026.560058 1019.039978 9.000000 0 +3378=19 5026.560058 1017.280029 9.000000 0 +3379=19 5026.560058 1015.520019 9.000000 0 +3380=19 5028.319824 1015.520019 9.000000 0 +3382=19 5037.120117 1015.520019 10.500000 0 +3385=19 5038.879882 1015.520019 10.500000 0 +3386=19 5038.879882 1017.280029 10.500000 0 +3387=19 5038.879882 1019.039978 10.500000 0 +3388=19 5038.879882 1020.799987 10.500000 0 +3389=19 5038.879882 1024.319946 10.500000 0 +3390=19 5038.879882 1022.559997 10.500000 0 +3392=19 5035.359863 1024.319946 10.500000 0 +3393=19 5031.839843 1024.319946 10.500000 0 +3394=19 5033.600097 1024.319946 10.500000 0 +3395=19 5028.319824 1024.319946 10.500000 0 +3396=19 5030.080078 1024.319946 10.500000 0 +3397=19 5026.560058 1024.319946 10.500000 0 +3398=19 5026.560058 1022.559997 10.500000 0 +3399=19 5026.560058 1020.799987 10.500000 0 +3400=19 5026.560058 1019.039978 10.500000 0 +3401=19 5026.560058 1017.280029 10.500000 0 +3402=19 5028.319824 1015.520019 10.500000 0 +3403=19 5026.560058 1015.520019 10.500000 0 +3407=12 5038.879882 1015.520019 12.000000 0 +3411=12 5038.879882 1015.520019 13.500000 0 +3414=12 5026.560058 1024.319946 13.500000 0 +3413=12 5038.879882 1024.319946 12.000000 0 +3416=12 5038.879882 1024.319946 13.500000 0 +3418=12 5038.879882 1020.799987 13.500000 0 +3421=12 5038.879882 1019.039978 13.500000 0 +3415=12 5038.879882 1022.559997 13.500000 0 +3409=12 5038.879882 1017.280029 13.500000 0 +3427=12 5028.319824 1015.520019 13.500000 0 +3406=12 5026.560058 1015.520019 12.000000 0 +3410=12 5026.560058 1015.520019 13.500000 0 +3429=12 5026.560058 1017.280029 13.500000 0 +3433=12 5026.560058 1022.559997 13.500000 0 +3434=12 5026.560058 1020.799987 13.500000 0 +3422=12 5026.560058 1019.039978 13.500000 0 +3430=12 5026.560058 1024.319946 12.000000 0 +3435=12 5030.080078 1024.319946 13.500000 0 +3391=19 5037.120117 1024.319946 10.500000 0 +3436=12 5037.120117 1024.319946 13.500000 0 +3439=12 5031.839843 1024.319946 13.500000 0 +3440=12 5035.359863 1024.319946 13.500000 0 +3432=12 5033.600097 1024.319946 13.500000 0 +3408=9 5031.839843 1019.039978 6.000000 0 +3419=9 5030.080078 1017.280029 6.000000 0 +3420=9 5030.080078 1019.039978 6.000000 0 +3437=9 5028.319824 1017.280029 6.000000 0 +3441=9 5028.319824 1019.039978 6.000000 0 +3442=9 5035.359863 1019.039978 6.000000 0 +3443=9 5033.600097 1019.039978 6.000000 0 +3446=9 5037.120117 1017.280029 6.000000 0 +3447=9 5037.120117 1019.039978 6.000000 0 +3448=9 5037.120117 1022.559997 6.000000 0 +3449=9 5037.120117 1020.799987 6.000000 0 +3450=9 5035.359863 1020.799987 6.000000 0 +3451=9 5033.600097 1022.559997 6.000000 0 +3453=9 5035.359863 1022.559997 6.000000 0 +3454=9 5033.600097 1020.799987 6.000000 0 +3455=9 5031.839843 1022.559997 6.000000 0 +3456=9 5028.319824 1020.799987 6.000000 0 +3457=9 5030.080078 1020.799987 6.000000 0 +3458=9 5028.319824 1022.559997 6.000000 0 +3459=9 5030.080078 1022.559997 6.000000 0 +2197=19 5033.600097 1015.520019 6.000000 0 +2199=19 5031.839843 1015.520019 6.000000 0 +3344=9 5033.600097 1017.280029 6.000000 0 +3346=9 5031.839843 1017.280029 6.000000 0 +3349=9 5031.839843 1020.799987 6.000000 0 +3381=2011 5031.839843 1015.520019 7.500000 0 +3383=19 5035.359863 1015.520019 7.500000 0 +3384=19 5033.600097 1015.520019 7.500000 0 +3417=19 5030.080078 1015.520019 7.500000 0 +3423=19 5035.359863 1015.520019 9.000000 0 +3424=19 5030.080078 1015.520019 9.000000 0 +3425=19 5033.600097 1015.520019 9.000000 0 +3426=19 5030.080078 1015.520019 10.500000 0 +3428=19 5035.359863 1015.520019 10.500000 0 +3444=19 5033.600097 1015.520019 10.500000 0 +3460=12 5030.080078 1015.520019 13.500000 0 +3461=12 5037.120117 1015.520019 13.500000 0 +3462=12 5035.359863 1015.520019 13.500000 0 +3463=12 5033.600097 1015.520019 12.000000 0 +3464=12 5033.600097 1015.520019 13.500000 0 +3468=12 5030.080078 1015.520019 12.000000 0 +3469=11 5045.919921 1068.319946 9.000000 0 +3471=11 5045.919921 1068.319946 10.500000 0 +3474=31 5031.839843 1015.520019 12.000000 0 +3475=11 5049.439941 1068.319946 9.000000 0 +3476=12 5031.839843 1015.520019 13.500000 0 +3477=11 5049.439941 1068.319946 10.500000 0 +3478=11 5051.200195 1068.319946 9.000000 0 +3479=11 5052.959960 1068.319946 9.000000 0 +3480=11 5051.200195 1068.319946 10.500000 0 +3481=11 5054.720214 1068.319946 9.000000 0 +3482=11 5052.959960 1068.319946 10.500000 0 +3483=32 5037.120117 1015.520019 12.000000 0 +3484=11 5054.720214 1068.319946 10.500000 0 +3486=11 5056.479980 1068.319946 9.000000 0 +3485=11 5058.240234 1068.319946 9.000000 0 +3487=11 5056.479980 1068.319946 10.500000 0 +3489=11 5058.240234 1068.319946 10.500000 0 +3488=11 5060.000000 1068.319946 9.000000 0 +3491=11 5061.759765 1068.319946 9.000000 0 +3493=11 5060.000000 1068.319946 10.500000 0 +3492=11 5061.759765 1068.319946 10.500000 0 +3496=11 5065.279785 1068.319946 9.000000 0 +3497=11 5063.520019 1068.319946 9.000000 0 +3498=11 5063.520019 1068.319946 10.500000 0 +3499=11 5065.279785 1068.319946 10.500000 0 +3503=11 5068.799804 1068.319946 9.000000 0 +3504=11 5067.040039 1068.319946 9.000000 0 +3505=11 5067.040039 1068.319946 10.500000 0 +3506=11 5070.560058 1068.319946 9.000000 0 +3507=32 5028.319824 1015.520019 12.000000 0 +3508=11 5068.799804 1068.319946 10.500000 0 +3509=11 5070.560058 1068.319946 10.500000 0 +3510=11 5074.080078 1068.319946 9.000000 0 +3512=11 5072.319824 1068.319946 9.000000 0 +3502=11 5072.319824 1068.319946 10.500000 0 +3514=11 5074.080078 1068.319946 10.500000 0 +3511=11 5077.600097 1068.319946 9.000000 0 +3515=11 5075.839843 1068.319946 10.500000 0 +3438=11 5077.600097 1068.319946 10.500000 0 +3412=11 5077.600097 1070.079956 9.000000 0 +3513=11 5077.600097 1070.079956 10.500000 0 +3516=11 5075.839843 1068.319946 9.000000 0 +3517=11 5077.600097 1071.839965 9.000000 0 +3518=11 5077.600097 1071.839965 10.500000 0 +3519=11 5077.600097 1073.599975 9.000000 0 +3520=34 5038.879882 1017.280029 12.000000 0 +3521=11 5077.600097 1073.599975 10.500000 0 +3522=34 5038.879882 1019.039978 12.000000 0 +3523=11 5077.600097 1077.119995 9.000000 0 +3525=11 5077.600097 1075.359985 10.500000 0 +3524=34 5038.879882 1022.559997 12.000000 0 +3526=11 5077.600097 1077.119995 10.500000 0 +3527=34 5038.879882 1020.799987 12.000000 0 +3528=11 5077.600097 1078.880004 9.000000 0 +3530=11 5077.600097 1078.880004 10.500000 0 +3531=11 5077.600097 1080.640014 9.000000 0 +3532=11 5077.600097 1080.640014 10.500000 0 +3533=11 5077.600097 1082.400024 9.000000 0 +3534=11 5077.600097 1082.400024 10.500000 0 +3535=11 5077.600097 1084.160034 9.000000 0 +3536=11 5077.600097 1084.160034 10.500000 0 +3537=11 5077.600097 1085.920043 9.000000 0 +2179=11 5077.600097 1085.920043 10.500000 0 +3404=34 5026.560058 1022.559997 12.000000 0 +3405=34 5026.560058 1017.280029 12.000000 0 +3470=34 5026.560058 1020.799987 12.000000 0 +3529=34 5026.560058 1019.039978 12.000000 0 +3538=11 5077.600097 1087.680053 9.000000 0 +3539=11 5077.600097 1087.680053 10.500000 0 +3540=11 5077.600097 1075.359985 9.000000 0 +3541=11 5075.839843 1089.439941 9.000000 0 +3542=11 5077.600097 1089.439941 9.000000 0 +3543=11 5077.600097 1089.439941 10.500000 0 +3544=11 5075.839843 1089.439941 10.500000 0 +3545=11 5074.080078 1089.439941 9.000000 0 +3546=11 5074.080078 1089.439941 10.500000 0 +3547=11 5072.319824 1089.439941 9.000000 0 +3548=37 5028.319824 1024.319946 12.000000 0 +3549=11 5072.319824 1089.439941 10.500000 0 +3550=37 5030.080078 1024.319946 12.000000 0 +3551=11 5070.560058 1089.439941 9.000000 0 +3552=37 5031.839843 1024.319946 12.000000 0 +3553=37 5037.120117 1024.319946 12.000000 0 +3554=11 5068.799804 1089.439941 9.000000 0 +3555=37 5035.359863 1024.319946 12.000000 0 +3556=11 5070.560058 1089.439941 10.500000 0 +3558=11 5067.040039 1089.439941 9.000000 0 +3557=11 5068.799804 1089.439941 10.500000 0 +3559=37 5033.600097 1024.319946 12.000000 0 +3560=11 5065.279785 1089.439941 9.000000 0 +3561=11 5067.040039 1089.439941 10.500000 0 +3466=11 5065.279785 1089.439941 10.500000 0 +3452=11 5061.759765 1089.439941 9.000000 0 +3465=11 5063.520019 1089.439941 9.000000 0 +3494=11 5060.000000 1089.439941 9.000000 0 +3501=11 5061.759765 1089.439941 10.500000 0 +3562=11 5054.720214 1089.439941 10.500000 0 +3563=11 5054.720214 1089.439941 9.000000 0 +3564=19 5031.839843 1015.520019 10.500000 0 +3565=11 5056.479980 1089.439941 9.000000 0 +3566=11 5058.240234 1089.439941 9.000000 0 +3567=11 5056.479980 1089.439941 10.500000 0 +3568=11 5058.240234 1089.439941 10.500000 0 +3569=11 5052.959960 1089.439941 9.000000 0 +3570=11 5052.959960 1089.439941 10.500000 0 +3574=11 5042.399902 1085.920043 10.500000 0 +3575=11 5044.160156 1085.920043 10.500000 0 +3577=11 5045.919921 1085.920043 10.500000 0 +3578=11 5049.439941 1085.920043 10.500000 0 +3580=11 5047.680175 1085.920043 10.500000 0 +3171=11 5051.200195 1085.920043 10.500000 0 +3573=11 5047.680175 1087.680053 10.500000 0 +3581=11 5045.919921 1087.680053 10.500000 0 +3582=11 5044.160156 1087.680053 10.500000 0 +3583=11 5042.399902 1087.680053 10.500000 0 +3584=22 5033.600097 1019.039978 7.500000 0 +3585=11 5049.439941 1087.680053 10.500000 0 +3587=11 5047.680175 1084.160034 10.500000 0 +3588=22 5033.600097 1019.039978 10.500000 0 +3589=11 5049.439941 1084.160034 10.500000 0 +3590=22 5031.839843 1019.039978 7.500000 0 +3591=11 5045.919921 1084.160034 10.500000 0 +3594=11 5044.160156 1084.160034 10.500000 0 +3593=11 5042.399902 1084.160034 10.500000 0 +3597=11 5042.399902 1070.079956 10.500000 0 +3595=11 5042.399902 1071.839965 10.500000 0 +3598=11 5045.919921 1070.079956 10.500000 0 +3599=11 5044.160156 1070.079956 10.500000 0 +3600=23 5030.080078 1019.039978 7.500000 0 +3601=11 5047.680175 1070.079956 10.500000 0 +3603=11 5049.439941 1070.079956 10.500000 0 +3605=11 5051.200195 1070.079956 10.500000 0 +3606=11 5052.959960 1070.079956 10.500000 0 +3607=23 5030.080078 1020.799987 7.500000 0 +3609=11 5054.720214 1070.079956 10.500000 0 +3611=11 5056.479980 1070.079956 10.500000 0 +3612=11 5058.240234 1070.079956 10.500000 0 +3613=11 5060.000000 1070.079956 10.500000 0 +3614=11 5061.759765 1070.079956 10.500000 0 +3615=11 5063.520019 1070.079956 10.500000 0 +3616=11 5065.279785 1070.079956 10.500000 0 +3608=11 5067.040039 1070.079956 10.500000 0 +3617=11 5068.799804 1070.079956 10.500000 0 +3618=11 5070.560058 1070.079956 10.500000 0 +3619=11 5072.319824 1070.079956 10.500000 0 +3602=11 5074.080078 1070.079956 10.500000 0 +3620=11 5075.839843 1070.079956 10.500000 0 +3571=11 5075.839843 1071.839965 10.500000 0 +3592=11 5075.839843 1073.599975 10.500000 0 +3586=11 5075.839843 1075.359985 10.500000 0 +3621=11 5075.839843 1077.119995 10.500000 0 +3500=11 5075.839843 1078.880004 10.500000 0 +3572=11 5075.839843 1080.640014 10.500000 0 +3622=11 5075.839843 1082.400024 10.500000 0 +3623=11 5075.839843 1084.160034 10.500000 0 +3624=11 5075.839843 1085.920043 10.500000 0 +3625=11 5075.839843 1087.680053 10.500000 0 +3626=11 5074.080078 1087.680053 10.500000 0 +3627=11 5072.319824 1087.680053 10.500000 0 +3628=11 5068.799804 1087.680053 10.500000 0 +3629=11 5070.560058 1087.680053 10.500000 0 +3631=11 5052.959960 1082.400024 10.500000 0 +3630=23 5033.600097 1019.039978 9.000000 0 +3632=11 5052.959960 1084.160034 10.500000 0 +3634=11 5052.959960 1085.920043 10.500000 0 +3633=11 5052.959960 1087.680053 10.500000 0 +3635=11 5054.720214 1087.680053 10.500000 0 +3636=11 5058.240234 1087.680053 10.500000 0 +3596=11 5056.479980 1087.680053 10.500000 0 +3637=11 5060.000000 1087.680053 10.500000 0 +3638=23 5031.839843 1019.039978 9.000000 0 +3639=11 5061.759765 1087.680053 10.500000 0 +3640=11 5063.520019 1087.680053 10.500000 0 +3641=22 5031.839843 1019.039978 10.500000 0 +3642=11 5065.279785 1087.680053 10.500000 0 +3643=11 5067.040039 1087.680053 10.500000 0 +3604=11 5072.319824 1085.920043 10.500000 0 +3644=22 5030.080078 1019.039978 9.000000 0 +3645=11 5074.080078 1085.920043 10.500000 0 +3646=11 5074.080078 1084.160034 10.500000 0 +3647=11 5072.319824 1084.160034 10.500000 0 +3610=22 5030.080078 1020.799987 9.000000 0 +3649=11 5072.319824 1082.400024 10.500000 0 +3650=11 5072.319824 1080.640014 10.500000 0 +3651=23 5030.080078 1020.799987 10.500000 0 +3652=11 5074.080078 1080.640014 10.500000 0 +3653=23 5030.080078 1019.039978 10.500000 0 +3654=11 5074.080078 1078.880004 10.500000 0 +3655=11 5072.319824 1078.880004 10.500000 0 +3656=11 5074.080078 1077.119995 10.500000 0 +3657=11 5072.319824 1077.119995 10.500000 0 +3658=11 5074.080078 1075.359985 10.500000 0 +3659=11 5072.319824 1075.359985 10.500000 0 +3661=23 5033.600097 1017.280029 7.500000 0 +3662=22 5033.600097 1017.280029 9.000000 0 +3663=22 5033.600097 1017.280029 10.500000 0 +3664=26 5028.319824 1017.280029 12.000000 0 +3665=26 5028.319824 1019.039978 12.000000 0 +3666=26 5028.319824 1020.799987 12.000000 0 +3667=26 5028.319824 1022.559997 12.000000 0 +3668=26 5030.080078 1022.559997 12.000000 0 +3669=26 5033.600097 1022.559997 12.000000 0 +3670=26 5031.839843 1022.559997 12.000000 0 +3671=26 5035.359863 1022.559997 12.000000 0 +3366=26 5037.120117 1022.559997 12.000000 0 +3675=26 5035.359863 1017.280029 12.000000 0 +3676=26 5033.600097 1017.280029 12.000000 0 +3677=26 5030.080078 1017.280029 12.000000 0 +3678=26 5031.839843 1017.280029 12.000000 0 +3679=26 5035.359863 1020.799987 12.000000 0 +3680=26 5031.839843 1020.799987 12.000000 0 +3681=26 5033.600097 1020.799987 12.000000 0 +3682=26 5030.080078 1019.039978 12.000000 0 +3683=26 5030.080078 1020.799987 12.000000 0 +3684=26 5031.839843 1017.280029 10.500000 0 +3685=26 5031.839843 1019.039978 12.000000 0 +3686=26 5033.600097 1019.039978 12.000000 0 +3687=26 5035.359863 1019.039978 12.000000 0 +3688=19 5038.879882 1022.559997 9.000000 0 +3689=19 5026.560058 1019.039978 6.000000 0 +3690=2010 5031.839843 1013.760009 6.000000 270 +3672=16 5037.120117 1017.280029 7.500000 0 +3673=16 5037.120117 1019.039978 7.500000 0 +3674=16 5037.120117 1017.280029 9.000000 0 +3691=16 5037.120117 1017.280029 10.500000 0 +3692=16 5037.120117 1020.799987 7.500000 0 +3693=16 5037.120117 1019.039978 9.000000 0 +3445=9 5035.359863 1017.280029 6.000000 0 +3694=2003 5035.359863 1017.280029 7.500000 0 +3695=2003 5031.839843 1020.799987 7.500000 0 +3696=2001 5035.359863 1019.039978 7.500000 0 +3697=2001 5033.600097 1020.799987 7.500000 270 +3698=2002 5033.600097 1022.559997 7.500000 0 +3700=12 5026.560058 1017.280029 15.000000 0 +3701=12 5026.560058 1015.520019 15.000000 0 +3699=12 5031.839843 1015.520019 15.000000 0 +3703=12 5030.080078 1015.520019 15.000000 0 +3704=12 5033.600097 1015.520019 15.000000 0 +3706=12 5038.879882 1015.520019 15.000000 0 +3708=12 5038.879882 1017.280029 15.000000 0 +3709=12 5038.879882 1019.039978 15.000000 0 +3710=12 5038.879882 1020.799987 15.000000 0 +3711=12 5038.879882 1022.559997 15.000000 0 +3712=12 5038.879882 1024.319946 15.000000 0 +3713=12 5037.120117 1024.319946 15.000000 0 +3714=12 5035.359863 1024.319946 15.000000 0 +3715=12 5033.600097 1024.319946 15.000000 0 +3716=12 5031.839843 1024.319946 15.000000 0 +3717=12 5030.080078 1024.319946 15.000000 0 +3718=12 5028.319824 1024.319946 15.000000 0 +3719=12 5026.560058 1024.319946 15.000000 0 +3720=12 5026.560058 1022.559997 15.000000 0 +3723=12 5026.560058 1017.280029 16.500000 0 +3724=12 5026.560058 1015.520019 16.500000 0 +3725=12 5028.319824 1015.520019 16.500000 0 +3726=12 5030.080078 1015.520019 16.500000 0 +3727=12 5031.839843 1015.520019 16.500000 0 +3728=12 5033.600097 1015.520019 16.500000 0 +3490=12 5026.560058 1019.039978 16.500000 0 +3729=12 5026.560058 1020.799987 16.500000 0 +3730=12 5026.560058 1022.559997 16.500000 0 +3731=12 5026.560058 1024.319946 16.500000 0 +3732=12 5028.319824 1024.319946 16.500000 0 +3733=12 5030.080078 1024.319946 16.500000 0 +3734=12 5031.839843 1024.319946 16.500000 0 +3735=12 5033.600097 1024.319946 16.500000 0 +3736=12 5035.359863 1024.319946 16.500000 0 +3737=12 5037.120117 1024.319946 16.500000 0 +3738=12 5038.879882 1024.319946 16.500000 0 +3739=12 5038.879882 1022.559997 16.500000 0 +3740=12 5038.879882 1020.799987 16.500000 0 +3741=12 5038.879882 1019.039978 16.500000 0 +3742=12 5038.879882 1017.280029 16.500000 0 +3743=12 5038.879882 1015.520019 16.500000 0 +3744=12 5037.120117 1015.520019 16.500000 0 +3745=12 5035.359863 1015.520019 16.500000 0 +3746=12 5035.359863 1015.520019 18.000000 0 +3747=12 5033.600097 1015.520019 18.000000 0 +3748=12 5031.839843 1015.520019 18.000000 0 +3749=12 5030.080078 1015.520019 18.000000 0 +3750=12 5028.319824 1015.520019 18.000000 0 +3751=12 5026.560058 1015.520019 18.000000 0 +3753=12 5026.560058 1017.280029 18.000000 0 +3755=12 5026.560058 1020.799987 18.000000 0 +3756=12 5026.560058 1022.559997 18.000000 0 +3757=12 5026.560058 1024.319946 18.000000 0 +3758=12 5028.319824 1024.319946 18.000000 0 +3759=12 5030.080078 1024.319946 18.000000 0 +3760=12 5031.839843 1024.319946 18.000000 0 +3761=12 5033.600097 1024.319946 18.000000 0 +3762=12 5035.359863 1024.319946 18.000000 0 +3763=12 5037.120117 1024.319946 18.000000 0 +3764=12 5038.879882 1024.319946 18.000000 0 +3765=12 5038.879882 1022.559997 18.000000 0 +3766=12 5038.879882 1019.039978 18.000000 0 +3768=12 5038.879882 1017.280029 18.000000 0 +3770=12 5037.120117 1015.520019 18.000000 0 +3343=21 5028.319824 1017.280029 18.000000 0 +3771=21 5030.080078 1017.280029 18.000000 0 +3772=21 5031.839843 1017.280029 18.000000 0 +3773=21 5033.600097 1017.280029 18.000000 0 +3774=21 5037.120117 1017.280029 18.000000 0 +3775=21 5035.359863 1017.280029 18.000000 0 +3776=21 5037.120117 1019.039978 18.000000 0 +3777=21 5037.120117 1020.799987 18.000000 0 +3779=21 5035.359863 1022.559997 18.000000 0 +3780=21 5033.600097 1022.559997 18.000000 0 +3781=21 5031.839843 1022.559997 18.000000 0 +3787=21 5030.080078 1019.039978 18.000000 0 +3788=21 5033.600097 1019.039978 18.000000 0 +3789=21 5035.359863 1019.039978 18.000000 0 +3790=21 5035.359863 1020.799987 18.000000 0 +3791=21 5033.600097 1020.799987 18.000000 0 +3792=21 5031.839843 1019.039978 18.000000 0 +3705=32 5035.359863 1015.520019 12.000000 0 +3707=19 5026.560058 1015.520019 7.500000 0 +3431=12 5028.319824 1024.319946 13.500000 0 +3702=33 5037.120117 1015.520019 15.000000 0 +3752=33 5035.359863 1015.520019 15.000000 0 +3794=37 5028.319824 1015.520019 15.000000 0 +3721=38 5026.560058 1019.039978 15.000000 0 +3722=38 5026.560058 1020.799987 15.000000 0 +3754=12 5026.560058 1019.039978 18.000000 0 +3769=12 5038.879882 1015.520019 18.000000 0 +3784=16 5028.319824 1020.799987 13.500000 0 +3797=16 5028.319824 1020.799987 15.000000 0 +3798=2 5030.080078 1015.520019 19.500000 0 +3799=2 5028.319824 1015.520019 19.500000 0 +3800=2 5026.560058 1015.520019 19.500000 0 +3801=2 5026.560058 1017.280029 19.500000 0 +3802=2 5026.560058 1019.039978 19.500000 0 +3805=2 5026.560058 1024.319946 19.500000 0 +3807=2 5031.839843 1024.319946 19.500000 0 +3809=2 5033.600097 1024.319946 19.500000 0 +3810=2 5035.359863 1024.319946 19.500000 0 +3811=2 5037.120117 1024.319946 19.500000 0 +3812=2 5038.879882 1024.319946 19.500000 0 +3813=2 5038.879882 1022.559997 19.500000 0 +3816=2 5038.879882 1017.280029 19.500000 0 +3817=2 5038.879882 1015.520019 19.500000 0 +3818=2 5037.120117 1015.520019 19.500000 0 +3819=2 5035.359863 1015.520019 19.500000 0 +3820=2 5033.600097 1015.520019 19.500000 0 +3821=2 5031.839843 1015.520019 19.500000 0 +3824=2 5037.120117 1022.559997 21.000000 0 +3778=21 5037.120117 1022.559997 18.000000 0 +3822=2 5035.359863 1022.559997 21.000000 0 +3823=2 5033.600097 1022.559997 21.000000 0 +3825=2 5031.839843 1022.559997 21.000000 0 +3826=2 5030.080078 1022.559997 21.000000 0 +3829=2 5028.319824 1019.039978 21.000000 0 +3830=2 5028.319824 1017.280029 21.000000 0 +3831=2 5033.600097 1017.280029 21.000000 0 +3832=2 5030.080078 1017.280029 21.000000 0 +3833=2 5031.839843 1017.280029 21.000000 0 +3834=2 5035.359863 1017.280029 21.000000 0 +3835=2 5037.120117 1017.280029 21.000000 0 +3839=2 5035.359863 1020.799987 22.500000 0 +3840=2 5033.600097 1020.799987 22.500000 0 +3841=2 5031.839843 1020.799987 22.500000 0 +3842=2 5030.080078 1020.799987 22.500000 0 +3843=2 5030.080078 1019.039978 22.500000 0 +3844=2 5033.600097 1019.039978 22.500000 0 +3845=2 5031.839843 1019.039978 22.500000 0 +3786=21 5030.080078 1022.559997 18.000000 0 +3803=21 5028.319824 1022.559997 18.000000 0 +3804=2 5026.560058 1022.559997 19.500000 0 +3806=2 5030.080078 1024.319946 19.500000 0 +3808=2 5028.319824 1024.319946 19.500000 0 +3827=2 5026.560058 1020.799987 19.500000 0 +3828=2 5028.319824 1020.799987 21.000000 0 +3847=2 5028.319824 1022.559997 21.000000 0 +3783=21 5031.839843 1020.799987 18.000000 0 +3793=21 5028.319824 1019.039978 18.000000 0 +3767=12 5038.879882 1020.799987 18.000000 0 +3782=2 5038.879882 1019.039978 19.500000 0 +3785=2 5038.879882 1020.799987 19.500000 0 +3795=2 5035.359863 1019.039978 22.500000 0 +3796=16 5030.080078 1020.799987 13.500000 0 +615=39 5040.640136 1012.000000 6.000000 0 +410=39 5038.879882 1012.000000 6.000000 0 +3836=39 5037.120117 1012.000000 6.000000 0 +616=39 5035.359863 1012.000000 6.000000 0 +3838=39 5026.560058 1012.000000 6.000000 0 +3849=39 5023.040039 1013.760009 6.000000 0 +3850=39 5023.040039 1015.520019 6.000000 0 +3851=39 5023.040039 1017.280029 6.000000 0 +3852=39 5023.040039 1019.039978 6.000000 0 +3853=39 5023.040039 1020.799987 6.000000 0 +3854=39 5023.040039 1022.559997 6.000000 0 +3855=39 5023.040039 1024.319946 6.000000 0 +3856=39 5023.040039 1026.079956 6.000000 0 +3857=39 5023.040039 1027.839965 6.000000 0 +3858=39 5024.799804 1027.839965 6.000000 0 +3859=39 5028.319824 1027.839965 6.000000 0 +3860=39 5026.560058 1027.839965 6.000000 0 +3861=39 5030.080078 1027.839965 6.000000 0 +3862=39 5031.839843 1027.839965 6.000000 0 +3863=39 5033.600097 1027.839965 6.000000 0 +3864=39 5035.359863 1027.839965 6.000000 0 +3865=39 5037.120117 1027.839965 6.000000 0 +3866=39 5038.879882 1027.839965 6.000000 0 +3867=39 5040.640136 1027.839965 6.000000 0 +3868=39 5042.399902 1027.839965 6.000000 0 +3869=39 5042.399902 1026.079956 6.000000 0 +3870=39 5042.399902 1024.319946 6.000000 0 +3871=39 5042.399902 1022.559997 6.000000 0 +3872=39 5042.399902 1020.799987 6.000000 0 +3873=39 5042.399902 1019.039978 6.000000 0 +3874=39 5042.399902 1017.280029 6.000000 0 +3875=39 5042.399902 1015.520019 6.000000 0 +3876=39 5042.399902 1013.760009 6.000000 0 +3814=2013 5030.080078 1012.000000 6.000000 0 +3815=2013 5033.600097 1012.000000 6.000000 0 +3837=39 5028.319824 1012.000000 6.000000 0 +912=23 5030.080078 971.520019 7.500000 0 +914=23 5031.839843 971.520019 7.500000 0 +919=23 5028.319824 971.520019 7.500000 0 +915=23 5031.839843 971.520019 9.000000 0 +920=23 5031.839843 971.520019 10.500000 0 +922=23 5031.839843 971.520019 12.000000 0 +931=23 5031.839843 971.520019 13.500000 0 +936=23 5031.839843 971.520019 15.000000 0 +1548=23 5024.799804 971.520019 7.500000 0 +1777=14 5121.600097 987.359985 6.000000 0 +1791=12 5104.000000 982.080017 6.000000 0 +1806=15 5105.759765 983.840026 7.500000 0 +1808=15 5112.799804 985.599975 6.000000 0 +1812=34 5037.120117 973.280029 6.000000 0 +1831=23 5024.799804 971.520019 12.000000 0 +1845=23 5021.279785 971.520019 9.000000 0 +1847=23 5021.279785 971.520019 12.000000 0 +1851=23 5021.279785 971.520019 13.500000 0 +1865=23 5024.799804 971.520019 13.500000 0 +1844=23 5024.799804 971.520019 15.000000 0 +1866=23 5023.040039 971.520019 15.000000 0 +1867=23 5021.279785 971.520019 15.000000 0 +874=23 5017.759765 971.520019 7.500000 0 +1872=23 5012.479980 971.520019 7.500000 0 +1874=23 5014.240234 971.520019 9.000000 0 +1889=23 5017.759765 971.520019 9.000000 0 +1894=23 5016.000000 971.520019 10.500000 0 +1943=23 5017.759765 971.520019 10.500000 0 +1948=23 5017.759765 971.520019 12.000000 0 +1950=23 5017.759765 971.520019 13.500000 0 +1951=23 5014.240234 971.520019 13.500000 0 +1953=23 5017.759765 971.520019 15.000000 0 +1956=23 5012.479980 971.520019 15.000000 0 +906=23 5008.959960 971.520019 7.500000 0 +1802=15 5111.040039 983.840026 7.500000 0 +1863=23 5008.959960 971.520019 10.500000 0 +1887=23 5008.959960 971.520019 12.000000 0 +1945=23 5008.959960 971.520019 15.000000 0 +801=22 5031.839843 971.520019 6.000000 0 +872=22 5030.080078 971.520019 6.000000 0 +1888=22 5021.279785 971.520019 6.000000 0 +1942=22 5023.040039 971.520019 6.000000 0 +1944=22 5019.520019 971.520019 6.000000 0 +1946=22 5017.759765 971.520019 6.000000 0 +1949=22 5016.000000 971.520019 6.000000 0 +1952=22 5014.240234 971.520019 6.000000 0 +1954=22 5012.479980 971.520019 6.000000 0 +1955=22 5008.959960 971.520019 6.000000 0 +1957=22 5010.720214 971.520019 6.000000 0 +1958=22 5026.560058 971.520019 7.500000 0 +1959=22 5026.560058 971.520019 9.000000 0 +1960=22 5026.560058 971.520019 10.500000 0 +1964=22 5028.319824 971.520019 9.000000 0 +1965=22 5030.080078 971.520019 9.000000 0 +1967=22 5030.080078 971.520019 10.500000 0 +1969=22 5028.319824 971.520019 10.500000 0 +1970=22 5026.560058 971.520019 12.000000 0 +1978=22 5030.080078 971.520019 12.000000 0 +1979=15 5104.000000 985.599975 7.500000 0 +1983=22 5030.080078 971.520019 13.500000 0 +2370=22 5028.319824 971.520019 13.500000 0 +2371=22 5026.560058 971.520019 13.500000 0 +2372=22 5026.560058 971.520019 15.000000 0 +2374=22 5028.319824 971.520019 15.000000 0 +2377=22 5030.080078 971.520019 15.000000 0 +2379=22 5031.839843 971.520019 16.500000 0 +2380=22 5030.080078 971.520019 16.500000 0 +2381=22 5028.319824 971.520019 16.500000 0 +2382=22 5026.560058 971.520019 16.500000 0 +2383=22 5024.799804 971.520019 16.500000 0 +2384=22 5023.040039 971.520019 16.500000 0 +2565=22 5019.520019 971.520019 12.000000 0 +2612=22 5019.520019 971.520019 13.500000 0 +2613=22 5021.279785 971.520019 16.500000 0 +2615=22 5019.520019 971.520019 15.000000 0 +2619=22 5019.520019 971.520019 16.500000 0 +2622=22 5017.759765 971.520019 16.500000 0 +2624=22 5016.000000 971.520019 13.500000 0 +2627=22 5016.000000 971.520019 15.000000 0 +2632=22 5016.000000 971.520019 16.500000 0 +2657=22 5014.240234 971.520019 15.000000 0 +2679=22 5014.240234 971.520019 16.500000 0 +2681=22 5012.479980 971.520019 16.500000 0 +2686=22 5010.720214 971.520019 13.500000 0 +2695=22 5010.720214 971.520019 15.000000 0 +2701=22 5010.720214 971.520019 16.500000 0 +2703=22 5008.959960 971.520019 16.500000 0 +2707=22 5016.000000 971.520019 7.500000 0 +2708=22 5014.240234 971.520019 7.500000 0 +2709=22 5016.000000 971.520019 9.000000 0 +2711=22 5019.520019 971.520019 7.500000 0 +2712=22 5019.520019 971.520019 9.000000 0 +2716=22 5019.520019 971.520019 10.500000 0 +2719=22 5023.040039 971.520019 7.500000 0 +2723=22 5023.040039 971.520019 9.000000 0 +2727=22 5023.040039 971.520019 12.000000 0 +2729=22 5023.040039 971.520019 13.500000 0 +2736=22 5014.240234 971.520019 10.500000 0 +2739=22 5010.720214 971.520019 7.500000 0 +2740=22 5012.479980 971.520019 9.000000 0 +2741=22 5012.479980 971.520019 10.500000 0 +2742=22 5010.720214 971.520019 9.000000 0 +2743=22 5010.720214 971.520019 10.500000 0 +2744=22 5012.479980 971.520019 13.500000 0 +2745=22 5014.240234 971.520019 12.000000 0 +2746=22 5012.479980 971.520019 12.000000 0 +2747=22 5010.720214 971.520019 12.000000 0 +2748=22 5008.959960 971.520019 13.500000 0 +2749=22 5033.600097 971.520019 6.000000 0 +2750=22 5033.600097 971.520019 7.500000 0 +2751=22 5033.600097 971.520019 9.000000 0 +2752=22 5033.600097 971.520019 10.500000 0 +2753=22 5033.600097 971.520019 12.000000 0 +2754=22 5033.600097 971.520019 13.500000 0 +2755=22 5033.600097 971.520019 15.000000 0 +2756=22 5033.600097 971.520019 16.500000 0 +2757=22 5007.200195 971.520019 6.000000 0 +2758=22 5007.200195 971.520019 7.500000 0 +2759=22 5007.200195 971.520019 10.500000 0 +2760=22 5007.200195 971.520019 9.000000 0 +2768=23 5003.680175 971.520019 9.000000 0 +2770=23 5005.439941 971.520019 10.500000 0 +2771=23 5003.680175 971.520019 10.500000 0 +3877=23 5001.919921 971.520019 10.500000 0 +3879=23 5005.439941 971.520019 12.000000 0 +3880=23 5001.919921 971.520019 12.000000 0 +3881=23 5001.919921 971.520019 13.500000 0 +3882=23 5005.439941 971.520019 13.500000 0 +3884=23 5001.919921 971.520019 15.000000 0 +3886=23 5005.439941 971.520019 15.000000 0 +2761=22 5005.439941 971.520019 6.000000 0 +2764=22 5005.439941 971.520019 9.000000 0 +2766=22 5001.919921 971.520019 6.000000 0 +2767=22 5001.919921 971.520019 7.500000 0 +2769=22 5001.919921 971.520019 9.000000 0 +3878=22 5007.200195 971.520019 12.000000 0 +3883=22 5007.200195 971.520019 13.500000 0 +3885=22 5007.200195 971.520019 15.000000 0 +3887=22 5007.200195 971.520019 16.500000 0 +3888=22 5005.439941 971.520019 16.500000 0 +3889=22 5003.680175 971.520019 13.500000 0 +3890=22 5003.680175 971.520019 15.000000 0 +3891=22 5003.680175 971.520019 16.500000 0 +3892=22 5001.919921 971.520019 16.500000 0 +3893=22 5003.680175 971.520019 12.000000 0 +3894=22 5000.160156 971.520019 6.000000 0 +3895=22 5000.160156 971.520019 7.500000 0 +3896=22 5000.160156 971.520019 9.000000 0 +3897=22 5000.160156 971.520019 10.500000 0 +3898=22 5000.160156 971.520019 12.000000 0 +3902=23 4998.399902 971.520019 7.500000 0 +3903=23 4994.879882 971.520019 7.500000 0 +3905=23 4998.399902 971.520019 9.000000 0 +3906=23 4998.399902 971.520019 10.500000 0 +3908=23 4996.640136 971.520019 10.500000 0 +3909=23 4994.879882 971.520019 9.000000 0 +3910=23 4994.879882 971.520019 10.500000 0 +3911=23 4998.399902 971.520019 12.000000 0 +3913=23 4994.879882 971.520019 12.000000 0 +3914=23 4998.399902 971.520019 13.500000 0 +3917=23 4998.399902 971.520019 15.000000 0 +3918=23 4996.640136 971.520019 15.000000 0 +3919=23 4994.879882 971.520019 13.500000 0 +3920=23 4994.879882 971.520019 15.000000 0 +3899=22 5000.160156 971.520019 13.500000 0 +3900=22 5000.160156 971.520019 15.000000 0 +3901=22 5000.160156 971.520019 16.500000 0 +3904=22 4998.399902 971.520019 16.500000 0 +3907=22 4993.120117 971.520019 6.000000 0 +3912=22 4998.399902 971.520019 6.000000 0 +3915=22 4994.879882 971.520019 6.000000 0 +3916=22 4996.640136 971.520019 6.000000 0 +3921=22 4996.640136 971.520019 7.500000 0 +3922=22 4996.640136 971.520019 9.000000 0 +3923=22 4996.640136 971.520019 16.500000 0 +3924=22 4994.879882 971.520019 16.500000 0 +3925=22 4996.640136 971.520019 12.000000 0 +3926=22 4996.640136 971.520019 13.500000 0 +3927=22 4993.120117 971.520019 7.500000 0 +3928=22 4993.120117 971.520019 9.000000 0 +3929=22 4993.120117 971.520019 10.500000 0 +3931=22 4993.120117 971.520019 16.500000 0 +3930=22 4993.120117 971.520019 12.000000 0 +3932=22 4993.120117 971.520019 13.500000 0 +3933=22 4993.120117 971.520019 15.000000 0 +1545=11 4984.319824 1050.719970 12.000000 0 +1553=11 4984.319824 1048.959960 12.000000 0 +1561=11 4984.319824 1047.199951 12.000000 0 +1783=14 5116.319824 987.359985 6.000000 0 +1796=15 5112.799804 983.840026 7.500000 0 +1800=15 5109.279785 983.840026 7.500000 0 +1804=15 5104.000000 983.840026 6.000000 0 +1875=11 5000.160156 1047.199951 6.000000 0 +1876=11 5000.160156 1047.199951 7.500000 0 +1877=11 5000.160156 1047.199951 9.000000 0 +1878=2011 4998.399902 1047.199951 6.000000 0 +1798=15 5111.040039 983.840026 6.000000 0 +1879=11 4998.399902 1047.199951 9.000000 0 +1880=2003 4989.600097 1041.920043 6.000000 0 +1881=2001 4989.600097 1043.680053 6.000000 0 +1882=2001 4991.359863 1041.920043 6.000000 270 +1884=2001 4989.600097 1040.160034 6.000000 180 +1885=2001 4987.839843 1041.920043 6.000000 90 +1883=39 5001.919921 1033.119995 6.000000 0 +1886=39 5001.919921 1031.359985 6.000000 0 +1896=39 5001.919921 1029.599975 6.000000 0 +1905=39 5000.160156 1027.839965 6.000000 0 +1906=39 4996.640136 1027.839965 6.000000 0 +1908=39 4994.879882 1027.839965 6.000000 0 +1909=39 4991.359863 1027.839965 6.000000 0 +1911=39 4989.600097 1027.839965 6.000000 0 +1913=39 4987.839843 1027.839965 6.000000 0 +1914=39 4986.080078 1027.839965 6.000000 0 +1915=39 4984.319824 1027.839965 6.000000 0 +1916=39 4984.319824 1029.599975 6.000000 0 +1966=39 4984.319824 1031.359985 6.000000 0 +1977=39 4984.319824 1033.119995 6.000000 0 +2238=2013 4986.080078 1029.599975 6.000000 0 +3848=2013 5000.160156 1029.599975 6.000000 180 +3333=2013 4993.120117 1091.199951 6.000000 0 +1903=12 5072.319824 960.960021 6.000000 0 +2781=12 5070.560058 960.960021 6.000000 0 +3972=12 5068.799804 960.960021 6.000000 0 +3974=12 5067.040039 960.960021 6.000000 0 +3982=12 5065.279785 960.960021 6.000000 0 +3983=12 5063.520019 960.960021 6.000000 0 +4043=12 5061.759765 960.960021 6.000000 0 +4044=12 5075.839843 960.960021 6.000000 0 +4045=12 5077.600097 960.960021 6.000000 0 +4046=12 5079.359863 960.960021 6.000000 0 +4047=12 5061.759765 959.200012 6.000000 0 +4048=12 5061.759765 957.440002 6.000000 0 +4049=12 5081.120117 960.960021 6.000000 0 +4050=12 5061.759765 955.679992 6.000000 0 +4051=12 5082.879882 960.960021 6.000000 0 +4052=12 5082.879882 959.200012 6.000000 0 +4053=12 5061.759765 953.919982 6.000000 0 +4054=12 5082.879882 957.440002 6.000000 0 +4055=12 5061.759765 952.159973 6.000000 0 +4056=12 5061.759765 950.400024 6.000000 0 +4057=12 5082.879882 955.679992 6.000000 0 +4058=12 5061.759765 948.640014 6.000000 0 +4059=12 5082.879882 953.919982 6.000000 0 +4060=12 5082.879882 952.159973 6.000000 0 +4061=12 5082.879882 950.400024 6.000000 0 +4062=12 5061.759765 946.880004 6.000000 0 +4063=12 5061.759765 945.119995 6.000000 0 +4064=12 5082.879882 948.640014 6.000000 0 +4065=12 5061.759765 943.359985 6.000000 0 +4066=12 5082.879882 946.880004 6.000000 0 +4068=12 5082.879882 945.119995 6.000000 0 +4067=12 5063.520019 943.359985 6.000000 0 +4069=12 5065.279785 943.359985 6.000000 0 +4070=12 5082.879882 943.359985 6.000000 0 +4071=12 5067.040039 943.359985 6.000000 0 +4072=12 5068.799804 943.359985 6.000000 0 +4073=12 5081.120117 943.359985 6.000000 0 +4074=12 5070.560058 943.359985 6.000000 0 +4075=12 5079.359863 943.359985 6.000000 0 +4076=12 5072.319824 943.359985 6.000000 0 +4078=12 5074.080078 943.359985 6.000000 0 +4079=12 5077.600097 943.359985 6.000000 0 +4080=12 5075.839843 943.359985 6.000000 0 +4077=19 5081.120117 945.119995 6.000000 0 +4081=19 5081.120117 946.880004 6.000000 0 +4082=19 5079.359863 945.119995 6.000000 0 +4083=19 5077.600097 945.119995 6.000000 0 +4084=19 5072.319824 945.119995 6.000000 0 +4085=19 5068.799804 945.119995 6.000000 0 +4086=19 5075.839843 945.119995 6.000000 0 +4087=19 5074.080078 945.119995 6.000000 0 +4088=19 5070.560058 945.119995 6.000000 0 +4089=19 5067.040039 945.119995 6.000000 0 +4090=19 5065.279785 945.119995 6.000000 0 +4091=19 5063.520019 945.119995 6.000000 0 +4092=19 5063.520019 946.880004 6.000000 0 +4093=19 5079.359863 946.880004 6.000000 0 +4094=19 5063.520019 948.640014 6.000000 0 +4095=19 5077.600097 946.880004 6.000000 0 +4096=19 5063.520019 950.400024 6.000000 0 +4097=19 5075.839843 946.880004 6.000000 0 +4098=19 5074.080078 946.880004 6.000000 0 +4099=19 5063.520019 952.159973 6.000000 0 +4100=19 5070.560058 946.880004 6.000000 0 +4101=19 5063.520019 953.919982 6.000000 0 +4102=19 5072.319824 946.880004 6.000000 0 +4103=19 5068.799804 946.880004 6.000000 0 +4104=19 5063.520019 955.679992 6.000000 0 +4105=19 5065.279785 946.880004 6.000000 0 +4106=19 5063.520019 957.440002 6.000000 0 +4107=19 5067.040039 946.880004 6.000000 0 +4108=19 5063.520019 959.200012 6.000000 0 +4109=19 5065.279785 948.640014 6.000000 0 +4110=19 5067.040039 948.640014 6.000000 0 +4111=19 5065.279785 959.200012 6.000000 0 +4112=19 5068.799804 948.640014 6.000000 0 +4113=19 5067.040039 959.200012 6.000000 0 +4114=19 5070.560058 948.640014 6.000000 0 +4115=19 5068.799804 959.200012 6.000000 0 +4116=19 5070.560058 959.200012 6.000000 0 +4117=19 5074.080078 948.640014 6.000000 0 +4118=19 5072.319824 959.200012 6.000000 0 +4119=19 5072.319824 948.640014 6.000000 0 +4120=19 5074.080078 959.200012 6.000000 0 +4121=19 5075.839843 948.640014 6.000000 0 +4122=19 5075.839843 959.200012 6.000000 0 +4123=19 5077.600097 959.200012 6.000000 0 +4124=19 5079.359863 948.640014 6.000000 0 +4125=19 5079.359863 959.200012 6.000000 0 +4126=19 5077.600097 948.640014 6.000000 0 +4127=19 5081.120117 959.200012 6.000000 0 +4128=19 5081.120117 948.640014 6.000000 0 +4129=19 5081.120117 957.440002 6.000000 0 +4130=19 5081.120117 955.679992 6.000000 0 +4131=19 5081.120117 953.919982 6.000000 0 +4132=19 5081.120117 950.400024 6.000000 0 +4133=19 5081.120117 952.159973 6.000000 0 +4134=19 5079.359863 950.400024 6.000000 0 +4135=19 5077.600097 950.400024 6.000000 0 +4136=19 5075.839843 950.400024 6.000000 0 +4137=19 5074.080078 950.400024 6.000000 0 +4138=19 5079.359863 952.159973 6.000000 0 +4139=19 5072.319824 950.400024 6.000000 0 +4140=19 5079.359863 955.679992 6.000000 0 +4141=19 5070.560058 950.400024 6.000000 0 +4142=19 5079.359863 953.919982 6.000000 0 +4143=19 5068.799804 950.400024 6.000000 0 +4144=19 5067.040039 950.400024 6.000000 0 +4145=19 5079.359863 957.440002 6.000000 0 +4146=19 5065.279785 950.400024 6.000000 0 +4147=19 5077.600097 957.440002 6.000000 0 +4148=19 5065.279785 952.159973 6.000000 0 +4149=19 5077.600097 955.679992 6.000000 0 +4150=19 5077.600097 953.919982 6.000000 0 +4151=19 5067.040039 952.159973 6.000000 0 +4152=19 5077.600097 952.159973 6.000000 0 +4153=19 5074.080078 952.159973 6.000000 0 +4154=19 5068.799804 952.159973 6.000000 0 +4155=19 5074.080078 953.919982 6.000000 0 +4156=19 5075.839843 955.679992 6.000000 0 +4157=19 5070.560058 952.159973 6.000000 0 +4158=19 5075.839843 957.440002 6.000000 0 +4159=19 5074.080078 957.440002 6.000000 0 +4160=19 5072.319824 952.159973 6.000000 0 +4161=19 5072.319824 957.440002 6.000000 0 +4163=19 5075.839843 953.919982 6.000000 0 +4165=19 5075.839843 952.159973 6.000000 0 +4166=19 5070.560058 953.919982 6.000000 0 +4162=19 5068.799804 953.919982 6.000000 0 +4167=19 5074.080078 955.679992 6.000000 0 +4168=19 5072.319824 955.679992 6.000000 0 +4169=19 5067.040039 953.919982 6.000000 0 +4170=19 5067.040039 955.679992 6.000000 0 +4171=19 5068.799804 955.679992 6.000000 0 +4172=19 5065.279785 953.919982 6.000000 0 +4173=19 5070.560058 955.679992 6.000000 0 +4174=19 5065.279785 955.679992 6.000000 0 +4175=19 5070.560058 957.440002 6.000000 0 +4176=19 5068.799804 957.440002 6.000000 0 +4177=19 5065.279785 957.440002 6.000000 0 +4178=19 5067.040039 957.440002 6.000000 0 +4179=12 5061.759765 943.359985 7.500000 0 +4180=12 5061.759765 960.960021 7.500000 0 +4185=12 5061.759765 943.359985 9.000000 0 +4186=12 5061.759765 943.359985 10.500000 0 +4181=12 5061.759765 960.960021 9.000000 0 +4182=12 5061.759765 960.960021 10.500000 0 +4183=12 5082.879882 960.960021 7.500000 0 +4191=12 5082.879882 943.359985 7.500000 0 +4189=12 5082.879882 960.960021 9.000000 0 +4192=12 5082.879882 960.960021 10.500000 0 +4193=12 5082.879882 943.359985 9.000000 0 +4194=12 5082.879882 943.359985 10.500000 0 +4184=20 5079.359863 943.359985 7.500000 0 +4187=20 5081.120117 943.359985 7.500000 0 +4188=20 5081.120117 943.359985 9.000000 0 +4190=20 5081.120117 943.359985 10.500000 0 +4195=20 5063.520019 943.359985 7.500000 0 +4196=20 5063.520019 943.359985 9.000000 0 +4198=20 5063.520019 943.359985 10.500000 0 +4199=20 5061.759765 945.119995 10.500000 0 +4197=20 5061.759765 945.119995 7.500000 0 +4200=20 5079.359863 943.359985 10.500000 0 +4201=20 5061.759765 945.119995 9.000000 0 +4202=20 5077.600097 943.359985 7.500000 0 +4203=20 5077.600097 943.359985 10.500000 0 +4205=20 5075.839843 943.359985 9.000000 0 +4206=20 5075.839843 943.359985 7.500000 0 +4207=20 5074.080078 943.359985 7.500000 0 +4208=20 5072.319824 943.359985 7.500000 0 +4209=20 5065.279785 943.359985 7.500000 0 +4210=20 5070.560058 943.359985 7.500000 0 +4211=20 5068.799804 943.359985 7.500000 0 +4212=20 5067.040039 943.359985 7.500000 0 +4214=20 5065.279785 943.359985 10.500000 0 +4204=20 5067.040039 943.359985 10.500000 0 +4213=20 5068.799804 943.359985 9.000000 0 +4215=20 5075.839843 943.359985 10.500000 0 +4217=20 5074.080078 943.359985 10.500000 0 +4218=20 5072.319824 943.359985 10.500000 0 +4216=20 5068.799804 943.359985 10.500000 0 +4220=20 5070.560058 943.359985 10.500000 0 +4219=20 5072.319824 943.359985 9.000000 0 +4221=20 5063.520019 960.960021 7.500000 0 +4222=20 5063.520019 960.960021 9.000000 0 +4223=20 5063.520019 960.960021 10.500000 0 +4224=20 5065.279785 960.960021 7.500000 0 +4225=20 5065.279785 960.960021 10.500000 0 +4226=20 5067.040039 960.960021 7.500000 0 +4227=20 5067.040039 960.960021 10.500000 0 +4230=20 5061.759765 959.200012 9.000000 0 +4229=20 5068.799804 960.960021 7.500000 0 +4231=20 5061.759765 959.200012 10.500000 0 +4233=20 5061.759765 957.440002 7.500000 0 +4232=20 5061.759765 957.440002 10.500000 0 +4235=20 5061.759765 955.679992 7.500000 0 +4234=20 5061.759765 946.880004 7.500000 0 +4236=20 5068.799804 960.960021 10.500000 0 +4237=20 5061.759765 948.640014 7.500000 0 +4238=20 5068.799804 960.960021 9.000000 0 +4239=20 5061.759765 953.919982 7.500000 0 +4241=20 5061.759765 950.400024 7.500000 0 +4242=20 5070.560058 960.960021 7.500000 0 +4243=20 5061.759765 955.679992 10.500000 0 +4244=20 5072.319824 960.960021 7.500000 0 +4245=20 5061.759765 953.919982 10.500000 0 +4246=20 5074.080078 960.960021 7.500000 0 +4247=20 5075.839843 960.960021 7.500000 0 +4248=20 5061.759765 952.159973 10.500000 0 +4249=20 5077.600097 960.960021 7.500000 0 +4250=20 5079.359863 960.960021 7.500000 0 +4251=20 5061.759765 950.400024 10.500000 0 +4252=20 5061.759765 946.880004 10.500000 0 +4253=20 5081.120117 960.960021 7.500000 0 +4254=20 5061.759765 948.640014 10.500000 0 +4256=20 5070.560058 960.960021 10.500000 0 +4257=20 5072.319824 960.960021 10.500000 0 +4259=20 5072.319824 960.960021 9.000000 0 +4260=20 5061.759765 953.919982 9.000000 0 +4261=20 5075.839843 960.960021 10.500000 0 +4262=20 5075.839843 960.960021 9.000000 0 +4263=20 5081.120117 960.960021 9.000000 0 +4264=20 5081.120117 960.960021 10.500000 0 +4265=20 5079.359863 960.960021 10.500000 0 +4266=20 5082.879882 945.119995 7.500000 0 +4267=20 5077.600097 960.960021 10.500000 0 +4268=20 5082.879882 945.119995 9.000000 0 +4269=20 5082.879882 945.119995 10.500000 0 +4270=20 5082.879882 946.880004 7.500000 0 +4240=20 5082.879882 948.640014 7.500000 0 +4271=20 5082.879882 950.400024 7.500000 0 +4272=20 5082.879882 952.159973 7.500000 0 +4273=20 5082.879882 948.640014 10.500000 0 +4274=20 5082.879882 950.400024 10.500000 0 +4275=20 5082.879882 946.880004 10.500000 0 +4276=20 5082.879882 950.400024 9.000000 0 +4279=20 5082.879882 959.200012 7.500000 0 +4278=20 5082.879882 957.440002 7.500000 0 +4277=20 5082.879882 955.679992 7.500000 0 +4280=20 5082.879882 953.919982 7.500000 0 +4281=20 5082.879882 959.200012 9.000000 0 +4282=20 5082.879882 959.200012 10.500000 0 +4283=20 5082.879882 957.440002 10.500000 0 +4285=20 5082.879882 955.679992 10.500000 0 +4288=20 5082.879882 952.159973 10.500000 0 +4289=20 5082.879882 953.919982 10.500000 0 +4301=20 5082.879882 953.919982 9.000000 0 +4310=31 5082.879882 957.440002 9.000000 0 +4312=31 5082.879882 955.679992 9.000000 0 +4313=31 5082.879882 952.159973 9.000000 0 +4304=31 5082.879882 946.880004 9.000000 0 +4319=31 5082.879882 948.640014 9.000000 0 +4321=31 5077.600097 943.359985 9.000000 0 +4322=31 5079.359863 943.359985 9.000000 0 +4324=31 5074.080078 943.359985 9.000000 0 +4290=31 5065.279785 943.359985 9.000000 0 +4327=31 5067.040039 943.359985 9.000000 0 +4299=31 5061.759765 948.640014 9.000000 0 +4305=31 5061.759765 946.880004 9.000000 0 +4284=31 5079.359863 960.960021 9.000000 0 +4287=31 5077.600097 960.960021 9.000000 0 +4291=31 5074.080078 960.960021 9.000000 0 +4293=31 5070.560058 960.960021 9.000000 0 +4300=31 5065.279785 960.960021 9.000000 0 +4302=31 5067.040039 960.960021 9.000000 0 +4328=31 5061.759765 955.679992 9.000000 0 +4329=31 5061.759765 957.440002 9.000000 0 +4331=31 5070.560058 943.359985 9.000000 0 +4347=20 5061.759765 950.400024 9.000000 0 +4358=12 5060.000000 953.919982 6.000000 0 +4340=12 5060.000000 950.400024 6.000000 0 +4359=12 5060.000000 952.159973 6.000000 0 +4361=12 5058.240234 953.919982 6.000000 0 +4363=12 5058.240234 952.159973 6.000000 0 +4364=12 5058.240234 950.400024 6.000000 0 +4367=12 5056.479980 952.159973 6.000000 0 +4369=12 5056.479980 950.400024 6.000000 0 +4370=2011 5058.240234 952.159973 7.500000 90 +4371=20 5060.000000 953.919982 7.500000 0 +4344=20 5058.240234 953.919982 7.500000 0 +4375=20 5060.000000 953.919982 9.000000 0 +4377=20 5058.240234 953.919982 9.000000 0 +4378=20 5060.000000 950.400024 7.500000 0 +4379=20 5058.240234 950.400024 7.500000 0 +4380=20 5060.000000 950.400024 9.000000 0 +4381=20 5058.240234 950.400024 9.000000 0 +4362=20 5058.240234 953.919982 10.500000 0 +4382=20 5060.000000 953.919982 10.500000 0 +4383=20 5058.240234 950.400024 10.500000 0 +4384=20 5058.240234 952.159973 10.500000 0 +4385=20 5060.000000 952.159973 10.500000 0 +4387=20 5060.000000 950.400024 10.500000 0 +4386=12 5056.479980 953.919982 6.000000 0 +1784=14 5114.560058 987.359985 6.000000 0 +1598=12 5047.680175 922.239990 6.000000 0 +4388=24 5047.680175 924.000000 6.000000 0 +4392=41 5056.479980 953.919982 7.500000 0 +4394=41 5056.479980 950.400024 7.500000 0 +4395=11 5074.080078 1073.599975 10.500000 0 +4397=11 5074.080078 1071.839965 10.500000 0 +4398=11 5072.319824 1071.839965 10.500000 0 +4399=11 5072.319824 1073.599975 10.500000 0 +4400=11 5070.560058 1082.400024 10.500000 0 +4402=11 5070.560058 1080.640014 10.500000 0 +4405=11 5070.560058 1078.880004 10.500000 0 +4406=11 5070.560058 1077.119995 10.500000 0 +4407=11 5070.560058 1075.359985 10.500000 0 +4409=11 5070.560058 1073.599975 10.500000 0 +4413=11 5070.560058 1071.839965 10.500000 0 +4415=11 5070.560058 1085.920043 10.500000 0 +4416=11 5070.560058 1084.160034 10.500000 0 +4417=11 5068.799804 1085.920043 10.500000 0 +4419=11 5065.279785 1085.920043 10.500000 0 +4420=11 5067.040039 1085.920043 10.500000 0 +4422=12 5061.759765 960.960021 12.000000 0 +4423=11 5067.040039 1084.160034 10.500000 0 +4425=12 5063.520019 960.960021 12.000000 0 +4426=12 5065.279785 960.960021 12.000000 0 +4428=11 5065.279785 1084.160034 10.500000 0 +4429=12 5067.040039 960.960021 12.000000 0 +4430=12 5068.799804 960.960021 12.000000 0 +4431=11 5068.799804 1084.160034 10.500000 0 +4433=12 5070.560058 960.960021 12.000000 0 +4434=12 5061.759765 959.200012 12.000000 0 +4432=12 5081.120117 960.960021 12.000000 0 +4435=12 5061.759765 957.440002 12.000000 0 +4436=12 5079.359863 960.960021 12.000000 0 +4437=12 5061.759765 955.679992 12.000000 0 +4438=12 5072.319824 960.960021 12.000000 0 +4439=12 5061.759765 953.919982 12.000000 0 +4441=11 5068.799804 1071.839965 10.500000 0 +4442=12 5061.759765 952.159973 12.000000 0 +4440=11 5054.720214 1084.160034 10.500000 0 +4443=11 5054.720214 1085.920043 10.500000 0 +4258=12 5077.600097 960.960021 12.000000 0 +4444=11 5054.720214 1082.400024 10.500000 0 +4445=12 5074.080078 960.960021 12.000000 0 +4446=12 5075.839843 960.960021 12.000000 0 +4447=12 5082.879882 960.960021 12.000000 0 +4448=12 5082.879882 945.119995 12.000000 0 +4449=12 5082.879882 946.880004 12.000000 0 +4450=12 5082.879882 948.640014 12.000000 0 +4451=12 5061.759765 950.400024 12.000000 0 +4452=12 5082.879882 950.400024 12.000000 0 +4453=12 5061.759765 948.640014 12.000000 0 +4454=12 5082.879882 952.159973 12.000000 0 +4455=12 5061.759765 946.880004 12.000000 0 +4456=12 5061.759765 945.119995 12.000000 0 +4457=12 5082.879882 953.919982 12.000000 0 +4458=12 5061.759765 943.359985 12.000000 0 +4459=12 5082.879882 955.679992 12.000000 0 +4460=12 5082.879882 957.440002 12.000000 0 +4461=12 5063.520019 943.359985 12.000000 0 +4462=12 5065.279785 943.359985 12.000000 0 +4463=12 5067.040039 943.359985 12.000000 0 +4464=12 5068.799804 943.359985 12.000000 0 +4465=12 5082.879882 959.200012 12.000000 0 +4466=12 5070.560058 943.359985 12.000000 0 +4467=12 5072.319824 943.359985 12.000000 0 +4468=12 5082.879882 943.359985 12.000000 0 +4469=12 5074.080078 943.359985 12.000000 0 +4470=12 5081.120117 943.359985 12.000000 0 +4471=12 5079.359863 943.359985 12.000000 0 +4472=12 5075.839843 943.359985 12.000000 0 +4473=12 5077.600097 943.359985 12.000000 0 +4421=20 5074.080078 960.960021 10.500000 0 +4418=11 5056.479980 1082.400024 10.500000 0 +4424=11 5056.479980 1085.920043 10.500000 0 +4474=11 5058.240234 1085.920043 10.500000 0 +4475=11 5058.240234 1084.160034 10.500000 0 +4476=19 5081.120117 959.200012 12.000000 0 +4477=11 5058.240234 1082.400024 10.500000 0 +4478=11 5060.000000 1084.160034 10.500000 0 +4479=11 5060.000000 1082.400024 10.500000 0 +4480=11 5060.000000 1085.920043 10.500000 0 +4481=19 5079.359863 959.200012 12.000000 0 +4482=19 5065.279785 957.440002 12.000000 0 +4483=11 5063.520019 1084.160034 10.500000 0 +4484=19 5067.040039 959.200012 12.000000 0 +4485=11 5063.520019 1085.920043 10.500000 0 +4486=11 5061.759765 1085.920043 10.500000 0 +4487=19 5077.600097 959.200012 12.000000 0 +4488=11 5061.759765 1084.160034 10.500000 0 +4489=19 5075.839843 959.200012 12.000000 0 +4490=11 5061.759765 1082.400024 10.500000 0 +4491=19 5065.279785 959.200012 12.000000 0 +4492=11 5063.520019 1082.400024 10.500000 0 +4493=19 5063.520019 959.200012 12.000000 0 +4494=11 5065.279785 1082.400024 10.500000 0 +4496=11 5067.040039 1082.400024 10.500000 0 +4495=19 5074.080078 959.200012 12.000000 0 +4497=19 5072.319824 959.200012 12.000000 0 +4498=11 5068.799804 1082.400024 10.500000 0 +4499=19 5070.560058 959.200012 12.000000 0 +4500=19 5063.520019 957.440002 12.000000 0 +4501=19 5068.799804 959.200012 12.000000 0 +4503=19 5067.040039 957.440002 12.000000 0 +4504=19 5068.799804 957.440002 12.000000 0 +4502=11 5068.799804 1073.599975 10.500000 0 +4505=19 5070.560058 957.440002 12.000000 0 +4506=11 5068.799804 1075.359985 10.500000 0 +4507=19 5072.319824 957.440002 12.000000 0 +4508=11 5067.040039 1075.359985 10.500000 0 +4509=19 5074.080078 957.440002 12.000000 0 +4510=19 5075.839843 957.440002 12.000000 0 +4511=11 5068.799804 1077.119995 10.500000 0 +4512=19 5077.600097 957.440002 12.000000 0 +4514=11 5068.799804 1078.880004 10.500000 0 +4515=19 5079.359863 957.440002 12.000000 0 +4516=11 5068.799804 1080.640014 10.500000 0 +4517=19 5081.120117 957.440002 12.000000 0 +4518=11 5067.040039 1080.640014 10.500000 0 +4520=19 5081.120117 955.679992 12.000000 0 +4519=19 5081.120117 953.919982 12.000000 0 +4521=11 5065.279785 1080.640014 10.500000 0 +4522=11 5063.520019 1080.640014 10.500000 0 +4523=19 5063.520019 955.679992 12.000000 0 +2774=11 5061.759765 1080.640014 10.500000 0 +2776=19 5065.279785 955.679992 12.000000 0 +2772=11 5044.160156 1080.640014 10.500000 0 +2775=11 5045.919921 1080.640014 10.500000 0 +2442=11 5047.680175 1080.640014 10.500000 0 +2777=11 5049.439941 1080.640014 10.500000 0 +2778=11 5051.200195 1080.640014 10.500000 0 +2782=19 5081.120117 952.159973 12.000000 0 +2610=11 5052.959960 1080.640014 10.500000 0 +4524=19 5081.120117 950.400024 12.000000 0 +2823=11 5054.720214 1080.640014 10.500000 0 +2824=19 5081.120117 948.640014 12.000000 0 +4525=11 5056.479980 1080.640014 10.500000 0 +2798=11 5058.240234 1080.640014 10.500000 0 +2793=11 5060.000000 1080.640014 10.500000 0 +2795=11 5065.279785 1075.359985 10.500000 0 +2792=19 5081.120117 946.880004 12.000000 0 +2789=19 5081.120117 945.119995 12.000000 0 +2787=11 5063.520019 1075.359985 10.500000 0 +2786=19 5079.359863 945.119995 12.000000 0 +2788=11 5061.759765 1075.359985 10.500000 0 +2785=19 5079.359863 946.880004 12.000000 0 +2790=19 5079.359863 948.640014 12.000000 0 +2791=19 5063.520019 953.919982 12.000000 0 +2796=11 5061.759765 1073.599975 10.500000 0 +4526=19 5079.359863 950.400024 12.000000 0 +4527=19 5063.520019 952.159973 12.000000 0 +4528=19 5079.359863 952.159973 12.000000 0 +4529=11 5061.759765 1071.839965 10.500000 0 +4530=19 5063.520019 950.400024 12.000000 0 +4531=19 5079.359863 953.919982 12.000000 0 +4532=19 5063.520019 948.640014 12.000000 0 +4533=11 5060.000000 1071.839965 10.500000 0 +4534=19 5079.359863 955.679992 12.000000 0 +4536=19 5063.520019 946.880004 12.000000 0 +4537=19 5063.520019 945.119995 12.000000 0 +4538=19 5077.600097 955.679992 12.000000 0 +4539=19 5065.279785 945.119995 12.000000 0 +4540=19 5077.600097 953.919982 12.000000 0 +4541=19 5067.040039 945.119995 12.000000 0 +4535=19 5068.799804 945.119995 12.000000 0 +4542=19 5077.600097 952.159973 12.000000 0 +4543=19 5070.560058 945.119995 12.000000 0 +4544=19 5077.600097 950.400024 12.000000 0 +458=19 5072.319824 945.119995 12.000000 0 +4545=19 5077.600097 948.640014 12.000000 0 +4546=19 5077.600097 946.880004 12.000000 0 +4547=19 5074.080078 945.119995 12.000000 0 +2410=19 5077.600097 945.119995 12.000000 0 +4548=19 5075.839843 945.119995 12.000000 0 +443=19 5075.839843 946.880004 12.000000 0 +531=19 5074.080078 946.880004 12.000000 0 +434=19 5075.839843 948.640014 12.000000 0 +472=19 5075.839843 950.400024 12.000000 0 +110=19 5075.839843 952.159973 12.000000 0 +432=19 5075.839843 953.919982 12.000000 0 +464=19 5065.279785 946.880004 12.000000 0 +457=19 5065.279785 948.640014 12.000000 0 +519=19 5075.839843 955.679992 12.000000 0 +527=19 5065.279785 950.400024 12.000000 0 +528=19 5074.080078 955.679992 12.000000 0 +535=19 5065.279785 952.159973 12.000000 0 +537=19 5072.319824 955.679992 12.000000 0 +538=19 5065.279785 953.919982 12.000000 0 +541=19 5070.560058 955.679992 12.000000 0 +734=11 5058.240234 1071.839965 10.500000 0 +928=19 5067.040039 955.679992 12.000000 0 +871=19 5068.799804 955.679992 12.000000 0 +933=19 5067.040039 953.919982 12.000000 0 +2173=19 5074.080078 953.919982 12.000000 0 +2202=19 5068.799804 953.919982 12.000000 0 +4513=19 5067.040039 952.159973 12.000000 0 +4549=11 5056.479980 1071.839965 10.500000 0 +4550=19 5074.080078 950.400024 12.000000 0 +4552=11 5054.720214 1071.839965 10.500000 0 +4551=19 5074.080078 948.640014 12.000000 0 +4553=19 5067.040039 950.400024 12.000000 0 +4554=11 5052.959960 1071.839965 10.500000 0 +4555=19 5072.319824 946.880004 12.000000 0 +4556=19 5067.040039 948.640014 12.000000 0 +4557=11 5051.200195 1071.839965 10.500000 0 +4558=19 5067.040039 946.880004 12.000000 0 +4560=11 5049.439941 1071.839965 10.500000 0 +4561=19 5068.799804 946.880004 12.000000 0 +4564=11 5047.680175 1071.839965 10.500000 0 +4565=19 5072.319824 948.640014 12.000000 0 +4563=11 5045.919921 1071.839965 10.500000 0 +929=11 5044.160156 1071.839965 10.500000 0 +4562=19 5070.560058 946.880004 12.000000 0 +4566=19 5072.319824 950.400024 12.000000 0 +4567=19 5070.560058 948.640014 12.000000 0 +4568=19 5074.080078 952.159973 12.000000 0 +4569=19 5068.799804 948.640014 12.000000 0 +4570=19 5068.799804 950.400024 12.000000 0 +4571=19 5072.319824 952.159973 12.000000 0 +4573=19 5070.560058 950.400024 12.000000 0 +4576=11 5060.000000 1073.599975 10.500000 0 +4575=11 5058.240234 1073.599975 10.500000 0 +4572=11 5056.479980 1073.599975 10.500000 0 +4577=19 5068.799804 952.159973 12.000000 0 +4578=19 5070.560058 952.159973 12.000000 0 +3576=19 5070.560058 953.919982 12.000000 0 +3579=19 5072.319824 953.919982 12.000000 0 +4574=11 5044.160156 1073.599975 10.500000 0 +4579=11 5054.720214 1073.599975 10.500000 0 +4581=11 5052.959960 1073.599975 10.500000 0 +4582=2007 5063.520019 946.880004 7.500000 90 +4583=11 5051.200195 1073.599975 10.500000 0 +4584=2007 5063.520019 948.640014 7.500000 90 +4589=11 5047.680175 1073.599975 10.500000 0 +4591=11 5049.439941 1073.599975 10.500000 0 +4593=11 5045.919921 1073.599975 10.500000 0 +4595=11 5044.160156 1075.359985 10.500000 0 +4594=11 5044.160156 1078.880004 10.500000 0 +4597=11 5044.160156 1077.119995 10.500000 0 +4590=11 5045.919921 1078.880004 10.500000 0 +4598=2002 5065.279785 945.119995 7.500000 180 +4599=11 5047.680175 1078.880004 10.500000 0 +4601=11 5049.439941 1078.880004 10.500000 0 +4602=11 5067.040039 1078.880004 10.500000 0 +4603=11 5047.680175 1075.359985 10.500000 0 +4604=11 5067.040039 1077.119995 10.500000 0 +4605=11 5045.919921 1075.359985 10.500000 0 +4607=11 5045.919921 1077.119995 10.500000 0 +4608=11 5065.279785 1077.119995 10.500000 0 +4586=11 5065.279785 1078.880004 10.500000 0 +4596=11 5049.439941 1075.359985 10.500000 0 +4600=11 5063.520019 1078.880004 10.500000 0 +4609=11 5051.200195 1075.359985 10.500000 0 +4610=2002 5067.040039 945.119995 7.500000 180 +4611=11 5063.520019 1077.119995 10.500000 0 +4613=11 5061.759765 1077.119995 10.500000 0 +4612=11 5061.759765 1078.880004 10.500000 0 +4615=11 5047.680175 1077.119995 10.500000 0 +4606=11 5049.439941 1077.119995 10.500000 0 +4616=11 5067.040039 1071.839965 10.500000 0 +4588=11 5067.040039 1073.599975 10.500000 0 +4592=11 5051.200195 1078.880004 10.500000 0 +4585=11 5065.279785 1071.839965 10.500000 0 +4617=11 5052.959960 1078.880004 10.500000 0 +4618=11 5065.279785 1073.599975 10.500000 0 +4619=11 5054.720214 1078.880004 10.500000 0 +3660=11 5051.200195 1077.119995 10.500000 0 +4559=11 5063.520019 1073.599975 10.500000 0 +4620=11 5052.959960 1077.119995 10.500000 0 +4391=11 5054.720214 1077.119995 10.500000 0 +4621=11 5063.520019 1071.839965 10.500000 0 +4587=11 5054.720214 1075.359985 10.500000 0 +4614=2008 5070.560058 945.119995 7.500000 180 +4622=11 5056.479980 1078.880004 10.500000 0 +4393=11 5058.240234 1078.880004 10.500000 0 +4580=11 5052.959960 1075.359985 10.500000 0 +4390=11 5060.000000 1078.880004 10.500000 0 +1912=11 5060.000000 1077.119995 10.500000 0 +1910=11 5058.240234 1077.119995 10.500000 0 +4389=11 5060.000000 1075.359985 10.500000 0 +4396=11 5058.240234 1075.359985 10.500000 0 +4623=11 5056.479980 1077.119995 10.500000 0 +4408=2003 5067.040039 946.880004 7.500000 0 +4401=2003 5065.279785 946.880004 7.500000 0 +4403=11 5044.160156 1073.599975 7.500000 0 +4404=11 5044.160156 1073.599975 9.000000 0 +4410=11 5052.959960 1082.400024 7.500000 0 +4411=11 5045.919921 1073.599975 7.500000 0 +4414=11 5056.479980 1082.400024 7.500000 0 +4412=11 5045.919921 1073.599975 9.000000 0 +4628=11 5058.240234 1082.400024 7.500000 0 +4629=11 5047.680175 1073.599975 9.000000 0 +4625=11 5060.000000 1082.400024 7.500000 0 +4627=11 5047.680175 1073.599975 7.500000 0 +4631=11 5051.200195 1073.599975 7.500000 0 +4632=11 5052.959960 1073.599975 7.500000 0 +4636=11 5052.959960 1073.599975 9.000000 0 +4639=11 5051.200195 1073.599975 9.000000 0 +4642=11 5052.959960 1070.079956 7.500000 0 +4643=11 5052.959960 1071.839965 7.500000 0 +4644=11 5060.000000 1082.400024 9.000000 0 +4641=11 5058.240234 1082.400024 9.000000 0 +4645=11 5052.959960 1070.079956 9.000000 0 +4647=11 5056.479980 1082.400024 9.000000 0 +4648=11 5052.959960 1082.400024 9.000000 0 +4650=11 5052.959960 1071.839965 9.000000 0 +4649=2012 5054.720214 1082.400024 7.500000 0 +4626=2002 5065.279785 959.200012 7.500000 0 +4635=11 5060.000000 1084.160034 7.500000 0 +4637=11 5060.000000 1084.160034 9.000000 0 +4638=11 5054.720214 1073.599975 7.500000 0 +4651=11 5060.000000 1085.920043 7.500000 0 +4652=11 5054.720214 1073.599975 9.000000 0 +4653=11 5060.000000 1087.680053 7.500000 0 +4654=11 5056.479980 1073.599975 7.500000 0 +4655=11 5060.000000 1085.920043 9.000000 0 +4657=11 5056.479980 1073.599975 9.000000 0 +4656=11 5060.000000 1087.680053 9.000000 0 +4634=11 5058.240234 1073.599975 7.500000 0 +4640=11 5058.240234 1073.599975 9.000000 0 +4630=11 5061.759765 1073.599975 7.500000 0 +4659=2002 5063.520019 957.440002 7.500000 90 +4658=11 5063.520019 1073.599975 7.500000 0 +4633=2002 5065.279785 955.679992 7.500000 180 +4661=11 5063.520019 1071.839965 7.500000 0 +4663=11 5063.520019 1070.079956 7.500000 0 +4662=11 5063.520019 1070.079956 9.000000 0 +4664=11 5063.520019 1071.839965 9.000000 0 +4665=2002 5067.040039 957.440002 7.500000 270 +4660=11 5063.520019 1073.599975 9.000000 0 +4667=2012 5060.000000 1073.599975 7.500000 0 +4668=11 5061.759765 1073.599975 9.000000 0 +4669=11 5061.759765 1082.400024 7.500000 0 +4666=11 5061.759765 1082.400024 9.000000 0 +4670=11 5067.040039 1070.079956 7.500000 0 +4671=2003 5065.279785 957.440002 7.500000 90 +4672=2006 5079.359863 948.640014 7.500000 270 +4673=11 5063.520019 1082.400024 7.500000 0 +4674=11 5063.520019 1082.400024 9.000000 0 +4675=11 5067.040039 1073.599975 7.500000 0 +4676=11 5067.040039 1070.079956 9.000000 0 +4677=2006 5079.359863 955.679992 7.500000 270 +4678=11 5067.040039 1073.599975 9.000000 0 +4680=11 5065.279785 1082.400024 7.500000 0 +4679=11 5065.279785 1082.400024 9.000000 0 +4682=11 5068.799804 1073.599975 7.500000 0 +4681=11 5067.040039 1082.400024 7.500000 0 +4684=11 5070.560058 1073.599975 7.500000 0 +4685=11 5067.040039 1082.400024 9.000000 0 +4687=11 5070.560058 1082.400024 7.500000 0 +4688=11 5068.799804 1073.599975 9.000000 0 +4683=11 5070.560058 1073.599975 9.000000 0 +4689=11 5072.319824 1082.400024 7.500000 0 +4692=11 5072.319824 1084.160034 7.500000 0 +4693=11 5072.319824 1085.920043 7.500000 0 +4699=11 5072.319824 1087.680053 7.500000 0 +4700=11 5072.319824 1087.680053 9.000000 0 +4697=11 5072.319824 1085.920043 9.000000 0 +4702=11 5072.319824 1084.160034 9.000000 0 +4703=11 5072.319824 1082.400024 9.000000 0 +4701=11 5070.560058 1082.400024 9.000000 0 +4705=2012 5068.799804 1082.400024 7.500000 0 +4686=11 5072.319824 1073.599975 7.500000 0 +4690=11 5075.839843 1082.400024 7.500000 0 +4691=11 5074.080078 1073.599975 7.500000 0 +4694=11 5075.839843 1082.400024 9.000000 0 +4696=11 5075.839843 1073.599975 7.500000 0 +4698=11 5072.319824 1073.599975 9.000000 0 +4706=11 5075.839843 1073.599975 9.000000 0 +4707=11 5074.080078 1073.599975 9.000000 0 +4709=2006 5074.080078 1071.839965 7.500000 270 +4711=2001 5075.839843 1070.079956 7.500000 270 +4712=2000 5060.000000 1080.640014 7.500000 0 +4713=2000 5058.240234 1080.640014 7.500000 0 +4714=2001 5068.799804 1070.079956 7.500000 90 +4715=2000 5056.479980 1080.640014 7.500000 0 +4716=11 5001.919921 1043.680053 6.000000 0 +3235=11 5001.919921 1040.160034 6.000000 0 +3236=11 5001.919921 1038.400024 6.000000 0 +2807=12 5049.439941 1068.319946 6.000000 0 +4727=2003 5054.720214 1071.839965 7.500000 0 +4728=2000 5054.720214 1070.079956 7.500000 180 +4730=2001 5061.759765 1071.839965 7.500000 270 +4729=2001 5061.759765 1070.079956 7.500000 270 +4732=12 5060.000000 948.640014 12.000000 0 +4731=12 5058.240234 950.400024 12.000000 0 +4733=12 5060.000000 950.400024 12.000000 0 +4735=12 5060.000000 952.159973 12.000000 0 +4736=12 5058.240234 953.919982 12.000000 0 +4708=12 5058.240234 952.159973 12.000000 0 +4734=12 5060.000000 953.919982 12.000000 0 +4738=12 5060.000000 955.679992 12.000000 0 +4739=12 5058.240234 955.679992 12.000000 0 +4740=11 5074.080078 1082.400024 10.500000 0 +2888=11 5044.160156 1068.319946 7.500000 0 +4741=11 5045.919921 1068.319946 7.500000 0 +2886=12 5058.240234 948.640014 12.000000 0 +4742=12 5060.000000 946.880004 12.000000 0 +4743=12 5061.759765 941.599975 12.000000 0 +4744=12 5060.000000 943.359985 12.000000 0 +4745=12 5060.000000 945.119995 12.000000 0 +4724=2000 5061.759765 1080.640014 7.500000 0 +4719=2000 5063.520019 1080.640014 7.500000 0 +4722=2000 5065.279785 1080.640014 7.500000 0 +4721=2000 5067.040039 1080.640014 7.500000 0 +4695=2008 5075.839843 1077.119995 7.500000 270 +4718=12 5056.479980 948.640014 12.000000 0 +4720=12 5056.479980 950.400024 12.000000 0 +4717=12 5056.479980 952.159973 12.000000 0 +4723=12 5056.479980 953.919982 12.000000 0 +4737=12 5056.479980 955.679992 12.000000 0 +4746=2003 5049.439941 1087.680053 7.500000 0 +4726=12 5060.000000 959.200012 12.000000 0 +4748=12 5060.000000 957.440002 12.000000 0 +4749=12 5060.000000 960.960021 12.000000 0 +4750=12 5060.000000 962.719970 12.000000 0 +4751=12 5061.759765 962.719970 12.000000 0 +3472=12 5063.520019 962.719970 12.000000 0 +4752=12 5065.279785 962.719970 12.000000 0 +4753=12 5060.000000 941.599975 12.000000 0 +4755=16 5047.680175 1064.800048 6.000000 0 +4756=16 5047.680175 1066.560058 6.000000 0 +4754=16 5047.680175 1063.040039 6.000000 0 +4757=2010 5049.439941 1061.280029 6.000000 0 +4758=11 5047.680175 1061.280029 6.000000 0 +4759=11 5045.919921 1066.560058 6.000000 0 +4760=11 5045.919921 1064.800048 6.000000 0 +4761=11 5045.919921 1063.040039 6.000000 0 +4762=11 5045.919921 1061.280029 6.000000 0 +4763=11 5045.919921 1059.520019 6.000000 0 +4765=11 5049.439941 1059.520019 6.000000 0 +4766=11 5051.200195 1059.520019 6.000000 0 +4767=11 5049.439941 1063.040039 6.000000 0 +4768=11 5049.439941 1064.800048 6.000000 0 +4770=11 5049.439941 1066.560058 6.000000 0 +4771=11 5051.200195 1064.800048 6.000000 0 +4769=11 5051.200195 1063.040039 6.000000 0 +4772=11 5051.200195 1066.560058 6.000000 0 +4773=11 5045.919921 1066.560058 7.500000 0 +4775=11 5045.919921 1064.800048 7.500000 0 +4774=11 5045.919921 1063.040039 7.500000 0 +4776=11 5045.919921 1061.280029 7.500000 0 +4777=11 5045.919921 1059.520019 7.500000 0 +4778=11 5045.919921 1066.560058 9.000000 0 +4779=11 5045.919921 1066.560058 10.500000 0 +4780=11 5045.919921 1064.800048 9.000000 0 +4781=11 5045.919921 1063.040039 9.000000 0 +4782=11 5047.680175 1059.520019 7.500000 0 +4783=11 5049.439941 1059.520019 7.500000 0 +4784=11 5051.200195 1059.520019 7.500000 0 +4785=11 5045.919921 1064.800048 10.500000 0 +4786=11 5045.919921 1063.040039 10.500000 0 +4787=11 5045.919921 1061.280029 9.000000 0 +4788=11 5047.680175 1059.520019 9.000000 0 +4789=11 5045.919921 1061.280029 10.500000 0 +4790=11 5045.919921 1059.520019 9.000000 0 +4791=11 5045.919921 1059.520019 10.500000 0 +4792=11 5047.680175 1059.520019 10.500000 0 +4793=11 5049.439941 1059.520019 9.000000 0 +4795=11 5049.439941 1059.520019 10.500000 0 +4796=11 5051.200195 1059.520019 10.500000 0 +4797=11 5051.200195 1059.520019 9.000000 0 +4798=11 5049.439941 1066.560058 7.500000 0 +4799=11 5049.439941 1066.560058 9.000000 0 +4800=11 5049.439941 1066.560058 10.500000 0 +4801=11 5051.200195 1066.560058 10.500000 0 +4802=11 5051.200195 1066.560058 7.500000 0 +4803=11 5051.200195 1066.560058 9.000000 0 +4804=11 5051.200195 1064.800048 7.500000 0 +4805=11 5049.439941 1064.800048 7.500000 0 +4806=11 5049.439941 1063.040039 7.500000 0 +4807=11 5051.200195 1063.040039 7.500000 0 +4808=11 5045.919921 1068.319946 12.000000 0 +4809=11 5049.439941 1064.800048 9.000000 0 +4810=11 5044.160156 1068.319946 12.000000 0 +4811=11 5051.200195 1064.800048 9.000000 0 +4813=11 5049.439941 1063.040039 9.000000 0 +4812=11 5051.200195 1063.040039 9.000000 0 +4814=11 5049.439941 1063.040039 10.500000 0 +4815=11 5051.200195 1064.800048 10.500000 0 +4816=11 5049.439941 1064.800048 10.500000 0 +4817=11 5051.200195 1063.040039 10.500000 0 +4818=11 5042.399902 1068.319946 12.000000 0 +4819=11 5040.640136 1068.319946 12.000000 0 +4820=11 5040.640136 1070.079956 12.000000 0 +4821=11 5040.640136 1071.839965 12.000000 0 +4822=11 5040.640136 1073.599975 12.000000 0 +4824=11 5051.200195 1061.280029 10.500000 0 +4825=11 5049.439941 1061.280029 10.500000 0 +4826=11 5040.640136 1075.359985 12.000000 0 +4827=11 5047.680175 1061.280029 10.500000 0 +4829=11 5040.640136 1077.119995 12.000000 0 +4823=11 5040.640136 1078.880004 12.000000 0 +4828=11 5049.439941 1068.319946 12.000000 0 +4830=11 5051.200195 1068.319946 12.000000 0 +4831=11 5042.399902 1068.319946 13.500000 0 +4832=11 5040.640136 1068.319946 13.500000 0 +4833=11 5044.160156 1068.319946 13.500000 0 +4834=11 5045.919921 1068.319946 13.500000 0 +4835=11 5049.439941 1064.800048 12.000000 0 +4836=11 5049.439941 1068.319946 13.500000 0 +4837=11 5049.439941 1066.560058 12.000000 0 +4838=11 5052.959960 1068.319946 12.000000 0 +4839=11 5049.439941 1063.040039 12.000000 0 +4840=11 5047.680175 1061.280029 12.000000 0 +4841=11 5049.439941 1061.280029 12.000000 0 +4842=11 5054.720214 1068.319946 12.000000 0 +4843=11 5056.479980 1068.319946 12.000000 0 +4844=11 5045.919921 1064.800048 12.000000 0 +4845=11 5058.240234 1068.319946 12.000000 0 +4846=11 5060.000000 1068.319946 12.000000 0 +4847=11 5045.919921 1066.560058 12.000000 0 +4848=11 5061.759765 1068.319946 12.000000 0 +4849=11 5045.919921 1066.560058 13.500000 0 +4850=11 5056.479980 1068.319946 13.500000 0 +4851=11 5049.439941 1066.560058 13.500000 0 +4852=11 5051.200195 1068.319946 13.500000 0 +4853=11 5045.919921 1063.040039 12.000000 0 +4854=11 5052.959960 1068.319946 13.500000 0 +4855=11 5054.720214 1068.319946 13.500000 0 +4856=11 5045.919921 1061.280029 12.000000 0 +4857=11 5058.240234 1068.319946 13.500000 0 +4858=11 5045.919921 1061.280029 13.500000 0 +4859=11 5060.000000 1068.319946 13.500000 0 +4860=11 5047.680175 1061.280029 13.500000 0 +4861=11 5063.520019 1068.319946 12.000000 0 +4862=11 5047.680175 1063.040039 13.500000 0 +4863=11 5045.919921 1063.040039 13.500000 0 +4864=11 5045.919921 1064.800048 13.500000 0 +4865=11 5047.680175 1064.800048 13.500000 0 +4866=11 5047.680175 1066.560058 13.500000 0 +4867=11 5049.439941 1064.800048 13.500000 0 +4868=11 5049.439941 1063.040039 13.500000 0 +4869=11 5040.640136 1070.079956 13.500000 0 +4871=11 5040.640136 1071.839965 13.500000 0 +4872=11 5049.439941 1061.280029 13.500000 0 +4873=11 5040.640136 1073.599975 13.500000 0 +4870=11 5040.640136 1075.359985 13.500000 0 +4874=11 5040.640136 1077.119995 13.500000 0 +4875=11 5040.640136 1078.880004 13.500000 0 +4876=11 5040.640136 1080.640014 12.000000 0 +4877=11 5040.640136 1080.640014 13.500000 0 +4878=11 5040.640136 1084.160034 12.000000 0 +4879=11 5040.640136 1082.400024 12.000000 0 +4880=11 5063.520019 1068.319946 13.500000 0 +4881=11 5061.759765 1068.319946 13.500000 0 +4882=11 5040.640136 1085.920043 12.000000 0 +4883=11 5040.640136 1087.680053 12.000000 0 +4884=11 5067.040039 1068.319946 12.000000 0 +4885=11 5040.640136 1089.439941 12.000000 0 +4886=11 5065.279785 1068.319946 12.000000 0 +4887=11 5065.279785 1068.319946 13.500000 0 +4888=11 5068.799804 1068.319946 12.000000 0 +4889=11 5067.040039 1068.319946 13.500000 0 +4890=11 5070.560058 1068.319946 12.000000 0 +4891=11 5068.799804 1068.319946 13.500000 0 +4892=11 5070.560058 1068.319946 13.500000 0 +4893=11 5074.080078 1068.319946 12.000000 0 +4894=11 5072.319824 1068.319946 12.000000 0 +4896=11 5072.319824 1068.319946 13.500000 0 +4897=11 5074.080078 1068.319946 13.500000 0 +4898=11 5075.839843 1068.319946 12.000000 0 +4895=11 5075.839843 1068.319946 13.500000 0 +4899=11 5077.600097 1068.319946 12.000000 0 +4900=11 5077.600097 1068.319946 13.500000 0 +4901=11 5077.600097 1070.079956 12.000000 0 +4902=11 5077.600097 1070.079956 13.500000 0 +4903=11 5077.600097 1071.839965 12.000000 0 +4905=11 5077.600097 1071.839965 13.500000 0 +4908=11 5077.600097 1073.599975 12.000000 0 +4909=11 5077.600097 1073.599975 13.500000 0 +4904=11 5077.600097 1075.359985 12.000000 0 +4906=11 5077.600097 1075.359985 13.500000 0 +4907=11 5077.600097 1077.119995 12.000000 0 +4910=11 5077.600097 1077.119995 13.500000 0 +4911=11 5077.600097 1078.880004 12.000000 0 +4912=11 5077.600097 1078.880004 13.500000 0 +4913=11 5077.600097 1080.640014 12.000000 0 +4914=11 5077.600097 1080.640014 13.500000 0 +4915=11 5077.600097 1082.400024 12.000000 0 +4916=11 5077.600097 1082.400024 13.500000 0 +4917=11 5077.600097 1085.920043 12.000000 0 +4918=11 5077.600097 1084.160034 12.000000 0 +4919=11 5077.600097 1084.160034 13.500000 0 +4920=11 5077.600097 1085.920043 13.500000 0 +4921=11 5077.600097 1087.680053 12.000000 0 +4922=11 5077.600097 1087.680053 13.500000 0 +4923=11 5077.600097 1089.439941 12.000000 0 +4924=11 5077.600097 1089.439941 13.500000 0 +4925=11 5075.839843 1089.439941 12.000000 0 +4926=11 5075.839843 1089.439941 13.500000 0 +4747=11 5074.080078 1089.439941 12.000000 0 +4927=11 5074.080078 1089.439941 13.500000 0 +4928=11 5072.319824 1089.439941 12.000000 0 +4930=11 5072.319824 1089.439941 13.500000 0 +4931=11 5070.560058 1089.439941 12.000000 0 +4932=11 5070.560058 1089.439941 13.500000 0 +4929=11 5040.640136 1082.400024 13.500000 0 +4933=11 5040.640136 1084.160034 13.500000 0 +4934=11 5040.640136 1085.920043 13.500000 0 +4935=11 5040.640136 1087.680053 13.500000 0 +4936=11 5040.640136 1089.439941 13.500000 0 +4937=11 5042.399902 1089.439941 12.000000 0 +4939=11 5044.160156 1089.439941 12.000000 0 +4940=11 5042.399902 1089.439941 13.500000 0 +4941=11 5044.160156 1089.439941 13.500000 0 +4942=11 5045.919921 1089.439941 12.000000 0 +4943=11 5045.919921 1089.439941 13.500000 0 +4938=11 5047.680175 1089.439941 12.000000 0 +4944=11 5047.680175 1089.439941 13.500000 0 +4945=11 5049.439941 1089.439941 12.000000 0 +4946=11 5049.439941 1089.439941 13.500000 0 +4947=11 5051.200195 1089.439941 12.000000 0 +4949=11 5051.200195 1089.439941 13.500000 0 +4950=11 5052.959960 1089.439941 12.000000 0 +4951=11 5052.959960 1089.439941 13.500000 0 +3473=11 5054.720214 1089.439941 12.000000 0 +4948=11 5054.720214 1089.439941 13.500000 0 +4952=11 5056.479980 1089.439941 12.000000 0 +4953=11 5056.479980 1089.439941 13.500000 0 +4954=2010 5047.680175 1068.319946 10.500000 270 +4955=2011 5074.080078 1082.400024 7.500000 0 +3467=2005 5038.879882 1073.599975 6.000000 90 +3648=2005 5038.879882 1082.400024 6.000000 90 +4794=2005 5052.959960 1059.520019 6.000000 90 +926=2010 5060.000000 1092.959960 9.000000 90 +728=11 5063.520019 1089.439941 10.500000 0 +730=2010 5060.000000 1089.439941 10.500000 90 +731=11 5067.040039 1089.439941 12.000000 0 +860=11 5068.799804 1089.439941 12.000000 0 +861=11 5065.279785 1089.439941 12.000000 0 +747=11 5068.799804 1089.439941 13.500000 0 +862=11 5058.240234 1089.439941 12.000000 0 +746=11 5067.040039 1089.439941 13.500000 0 +863=11 5058.240234 1089.439941 13.500000 0 +136=11 5065.279785 1089.439941 13.500000 0 +736=11 5061.759765 1089.439941 12.000000 0 +733=11 5063.520019 1089.439941 12.000000 0 +737=11 5061.759765 1089.439941 13.500000 0 +864=11 5058.240234 1091.199951 6.000000 0 +729=11 5058.240234 1092.959960 6.000000 0 +726=11 5058.240234 1094.719970 6.000000 0 +725=11 5058.240234 1096.479980 6.000000 0 +727=11 5058.240234 1091.199951 7.500000 0 +865=11 5058.240234 1092.959960 7.500000 0 +867=11 5058.240234 1089.439941 15.000000 0 +866=11 5056.479980 1089.439941 15.000000 0 +868=11 5058.240234 1096.479980 7.500000 0 +869=11 5054.720214 1089.439941 15.000000 0 +875=11 5058.240234 1094.719970 7.500000 0 +876=11 5058.240234 1091.199951 9.000000 0 +877=11 5052.959960 1089.439941 15.000000 0 +888=11 5058.240234 1092.959960 9.000000 0 +890=11 5058.240234 1094.719970 9.000000 0 +889=11 5058.240234 1096.479980 9.000000 0 +891=11 5058.240234 1091.199951 10.500000 0 +892=11 5051.200195 1089.439941 15.000000 0 +893=11 5058.240234 1092.959960 10.500000 0 +894=11 5058.240234 1094.719970 10.500000 0 +895=11 5058.240234 1096.479980 10.500000 0 +896=11 5049.439941 1089.439941 15.000000 0 +897=11 5047.680175 1089.439941 15.000000 0 +898=11 5045.919921 1089.439941 15.000000 0 +899=11 5044.160156 1089.439941 15.000000 0 +900=11 5061.759765 1092.959960 7.500000 0 +902=11 5040.640136 1089.439941 15.000000 0 +903=11 5061.759765 1094.719970 7.500000 0 +907=11 5061.759765 1094.719970 6.000000 0 +909=11 5061.759765 1096.479980 6.000000 0 +910=11 5061.759765 1092.959960 6.000000 0 +911=11 5061.759765 1091.199951 6.000000 0 +924=11 5061.759765 1091.199951 7.500000 0 +925=11 5061.759765 1091.199951 9.000000 0 +927=11 5061.759765 1092.959960 9.000000 0 +930=11 5042.399902 1089.439941 15.000000 0 +935=11 5061.759765 1094.719970 9.000000 0 +1158=11 5040.640136 1087.680053 15.000000 0 +1182=11 5061.759765 1096.479980 7.500000 0 +1184=11 5061.759765 1096.479980 9.000000 0 +1186=11 5061.759765 1091.199951 10.500000 0 +1187=11 5040.640136 1085.920043 15.000000 0 +1188=11 5061.759765 1092.959960 10.500000 0 +1189=11 5040.640136 1084.160034 15.000000 0 +1191=11 5061.759765 1091.199951 12.000000 0 +1192=11 5040.640136 1082.400024 15.000000 0 +3495=11 5061.759765 1092.959960 12.000000 0 +4956=11 5040.640136 1080.640014 15.000000 0 +4957=11 5061.759765 1094.719970 10.500000 0 +4958=11 5040.640136 1077.119995 15.000000 0 +4959=11 5061.759765 1094.719970 12.000000 0 +4960=11 5040.640136 1078.880004 15.000000 0 +4961=11 5061.759765 1096.479980 10.500000 0 +4962=11 5040.640136 1075.359985 15.000000 0 +4963=11 5061.759765 1096.479980 12.000000 0 +4964=11 5040.640136 1073.599975 15.000000 0 +4965=11 5040.640136 1070.079956 15.000000 0 +4966=11 5058.240234 1091.199951 12.000000 0 +4967=11 5058.240234 1092.959960 12.000000 0 +4968=11 5058.240234 1094.719970 12.000000 0 +4969=11 5040.640136 1071.839965 15.000000 0 +4970=11 5058.240234 1096.479980 12.000000 0 +4971=11 5040.640136 1068.319946 15.000000 0 +4972=11 5042.399902 1068.319946 15.000000 0 +4973=11 5044.160156 1068.319946 15.000000 0 +4974=11 5045.919921 1068.319946 15.000000 0 +4975=11 5058.240234 1091.199951 13.500000 0 +4976=11 5045.919921 1066.560058 15.000000 0 +4977=11 5061.759765 1091.199951 13.500000 0 +4978=11 5047.680175 1066.560058 15.000000 0 +4979=11 5061.759765 1092.959960 13.500000 0 +4980=11 5061.759765 1094.719970 13.500000 0 +4981=11 5061.759765 1096.479980 13.500000 0 +4982=11 5058.240234 1096.479980 13.500000 0 +4983=11 5049.439941 1066.560058 15.000000 0 +4984=11 5058.240234 1092.959960 13.500000 0 +4985=11 5058.240234 1094.719970 13.500000 0 +4986=11 5060.000000 1092.959960 13.500000 0 +4987=11 5049.439941 1068.319946 15.000000 0 +4988=11 5060.000000 1091.199951 13.500000 0 +4989=11 5047.680175 1068.319946 15.000000 0 +4991=11 5060.000000 1096.479980 13.500000 0 +4992=11 5060.000000 1094.719970 13.500000 0 +4993=11 5051.200195 1068.319946 15.000000 0 +4990=11 5052.959960 1068.319946 15.000000 0 +4994=11 5060.000000 1089.439941 15.000000 0 +4995=11 5060.000000 1094.719970 12.000000 0 +4996=11 5051.200195 1066.560058 12.000000 0 +4997=11 5051.200195 1066.560058 13.500000 0 +4998=11 5060.000000 1096.479980 10.500000 0 +4999=11 5051.200195 1066.560058 15.000000 0 +5000=11 5049.439941 1064.800048 15.000000 0 +5001=11 5047.680175 1064.800048 15.000000 0 +5002=11 5045.919921 1064.800048 15.000000 0 +5003=11 5045.919921 1063.040039 15.000000 0 +5004=11 5047.680175 1063.040039 15.000000 0 +5005=11 5049.439941 1063.040039 15.000000 0 +5006=11 5049.439941 1061.280029 15.000000 0 +5007=11 5061.759765 1089.439941 15.000000 0 +5008=11 5063.520019 1089.439941 15.000000 0 +754=11 5054.720214 1068.319946 15.000000 0 +1159=11 5051.200195 1063.040039 12.000000 0 +1160=11 5051.200195 1064.800048 12.000000 0 +1161=11 5051.200195 1064.800048 13.500000 0 +1162=11 5051.200195 1064.800048 15.000000 0 +1163=11 5051.200195 1063.040039 13.500000 0 +1164=21 5068.799804 1101.760009 6.000000 0 +618=11 5051.200195 1061.280029 12.000000 0 +753=21 5068.799804 1100.000000 6.000000 0 +1165=11 5051.200195 1061.280029 13.500000 0 +1166=21 5068.799804 1098.239990 6.000000 0 +717=11 5051.200195 1063.040039 15.000000 0 +718=21 5063.520019 1098.239990 6.000000 0 +719=21 5065.279785 1098.239990 6.000000 0 +1167=11 5051.200195 1061.280029 15.000000 0 +1168=21 5067.040039 1098.239990 6.000000 0 +1169=11 5047.680175 1061.280029 15.000000 0 +1185=11 5045.919921 1061.280029 15.000000 0 +5009=11 5045.919921 1059.520019 12.000000 0 +720=21 5061.759765 1098.239990 6.000000 0 +845=21 5058.240234 1098.239990 7.500000 0 +1181=21 5054.720214 1098.239990 7.500000 0 +847=11 5047.680175 1059.520019 12.000000 0 +846=11 5049.439941 1059.520019 12.000000 0 +848=11 5051.200195 1059.520019 12.000000 0 +724=21 5054.720214 1098.239990 6.000000 0 +838=18 5054.720214 1108.800048 6.000000 0 +839=11 5051.200195 1059.520019 13.500000 0 +749=11 5049.439941 1059.520019 13.500000 0 +748=11 5047.680175 1059.520019 13.500000 0 +834=11 5045.919921 1059.520019 13.500000 0 +835=21 5054.720214 1119.359985 6.000000 0 +836=11 5045.919921 1059.520019 15.000000 0 +837=21 5056.479980 1119.359985 6.000000 0 +840=21 5056.479980 1117.599975 6.000000 0 +841=11 5047.680175 1059.520019 15.000000 0 +842=21 5056.479980 1115.839965 6.000000 0 +844=11 5049.439941 1059.520019 15.000000 0 +849=21 5056.479980 1114.079956 6.000000 0 +850=11 5051.200195 1059.520019 15.000000 0 +851=21 5056.479980 1112.319946 6.000000 0 +852=21 5056.479980 1110.560058 6.000000 0 +853=21 5056.479980 1108.800048 6.000000 0 +854=21 5056.479980 1107.040039 6.000000 0 +855=21 5056.479980 1105.280029 6.000000 0 +856=11 5058.240234 1068.319946 15.000000 0 +857=21 5056.479980 1103.520019 6.000000 0 +858=11 5056.479980 1068.319946 15.000000 0 +883=21 5056.479980 1101.760009 6.000000 0 +5011=11 5060.000000 1068.319946 15.000000 0 +5012=21 5061.759765 1098.239990 7.500000 0 +5013=21 5063.520019 1098.239990 7.500000 0 +5014=21 5067.040039 1098.239990 7.500000 0 +5015=21 5065.279785 1098.239990 7.500000 0 +5016=11 5061.759765 1068.319946 15.000000 0 +5017=11 5063.520019 1068.319946 15.000000 0 +5018=11 5065.279785 1068.319946 15.000000 0 +5019=11 5067.040039 1068.319946 15.000000 0 +5020=11 5068.799804 1068.319946 15.000000 0 +5021=11 5070.560058 1068.319946 15.000000 0 +5022=11 5072.319824 1068.319946 15.000000 0 +843=21 5054.720214 1100.000000 6.000000 0 +5023=11 5074.080078 1068.319946 15.000000 0 +5024=11 5075.839843 1068.319946 15.000000 0 +5025=11 5077.600097 1068.319946 15.000000 0 +5027=11 5077.600097 1070.079956 15.000000 0 +5026=11 5077.600097 1071.839965 15.000000 0 +5029=11 5077.600097 1073.599975 15.000000 0 +5028=11 5077.600097 1075.359985 15.000000 0 +5031=11 5077.600097 1077.119995 15.000000 0 +5030=11 5077.600097 1078.880004 15.000000 0 +5032=2001 5054.720214 1101.760009 7.500000 90 +5033=11 5077.600097 1080.640014 15.000000 0 +5035=11 5077.600097 1082.400024 15.000000 0 +5034=11 5077.600097 1084.160034 15.000000 0 +5036=11 5077.600097 1087.680053 15.000000 0 +5037=11 5077.600097 1085.920043 15.000000 0 +5038=11 5077.600097 1089.439941 15.000000 0 +5039=2001 5054.720214 1103.520019 7.500000 90 +5040=11 5075.839843 1089.439941 15.000000 0 +5041=11 5074.080078 1089.439941 15.000000 0 +5042=2001 5054.720214 1105.280029 7.500000 90 +3988=2001 5054.720214 1107.040039 7.500000 90 +755=11 5072.319824 1089.439941 15.000000 0 +756=11 5070.560058 1089.439941 15.000000 0 +757=2001 5054.720214 1108.800048 7.500000 90 +758=11 5067.040039 1089.439941 15.000000 0 +759=11 5068.799804 1089.439941 15.000000 0 +5043=21 5068.799804 1103.520019 6.000000 0 +5044=21 5068.799804 1105.280029 6.000000 0 +5045=21 5068.799804 1107.040039 6.000000 0 +735=21 5068.799804 1108.800048 6.000000 0 +5046=11 5065.279785 1089.439941 15.000000 0 +5047=21 5068.799804 1110.560058 6.000000 0 +764=21 5068.799804 1112.319946 6.000000 0 +1172=11 5063.520019 1089.439941 13.500000 0 +765=21 5068.799804 1114.079956 6.000000 0 +766=21 5068.799804 1115.839965 6.000000 0 +763=21 5068.799804 1117.599975 6.000000 0 +767=21 5068.799804 1119.359985 6.000000 0 +760=11 5061.759765 1091.199951 15.000000 0 +761=11 5061.759765 1092.959960 15.000000 0 +762=21 5067.040039 1119.359985 6.000000 0 +1170=11 5061.759765 1094.719970 15.000000 0 +1171=21 5065.279785 1119.359985 6.000000 0 +1174=21 5063.520019 1119.359985 6.000000 0 +1175=11 5060.000000 1096.479980 15.000000 0 +1176=11 5061.759765 1096.479980 15.000000 0 +1173=11 5058.240234 1094.719970 15.000000 0 +752=11 5058.240234 1096.479980 15.000000 0 +751=11 5060.000000 1094.719970 15.000000 0 +750=11 5060.000000 1092.959960 15.000000 0 +1177=11 5060.000000 1091.199951 15.000000 0 +1178=11 5058.240234 1091.199951 15.000000 0 +1179=11 5058.240234 1092.959960 15.000000 0 +1180=21 5061.759765 1119.359985 6.000000 0 +5048=21 5060.000000 1119.359985 6.000000 0 +5049=21 5058.240234 1119.359985 6.000000 0 +5050=2001 5054.720214 1110.560058 7.500000 90 +5051=2001 5054.720214 1112.319946 7.500000 90 +5052=2001 5054.720214 1114.079956 7.500000 90 +5053=2001 5054.720214 1115.839965 7.500000 90 +5054=2001 5054.720214 1117.599975 7.500000 90 +5055=11 5044.160156 1070.079956 15.000000 0 +5056=11 5045.919921 1070.079956 15.000000 0 +5057=11 5042.399902 1070.079956 15.000000 0 +5058=11 5042.399902 1071.839965 15.000000 0 +5059=11 5042.399902 1073.599975 15.000000 0 +5060=11 5042.399902 1075.359985 15.000000 0 +5061=21 5068.799804 1098.239990 7.500000 0 +5062=11 5042.399902 1077.119995 15.000000 0 +5063=11 5042.399902 1078.880004 15.000000 0 +5064=21 5068.799804 1100.000000 7.500000 0 +5066=21 5068.799804 1101.760009 7.500000 0 +5065=21 5068.799804 1105.280029 7.500000 0 +5067=11 5042.399902 1080.640014 15.000000 0 +5068=21 5068.799804 1103.520019 7.500000 0 +5069=11 5042.399902 1082.400024 15.000000 0 +5070=21 5068.799804 1107.040039 7.500000 0 +5071=11 5042.399902 1084.160034 15.000000 0 +5072=11 5042.399902 1085.920043 15.000000 0 +5073=21 5068.799804 1110.560058 7.500000 0 +5074=11 5042.399902 1087.680053 15.000000 0 +5075=21 5068.799804 1108.800048 7.500000 0 +5076=11 5044.160156 1087.680053 15.000000 0 +5077=21 5068.799804 1112.319946 7.500000 0 +5078=11 5044.160156 1085.920043 15.000000 0 +5079=21 5068.799804 1114.079956 7.500000 0 +5080=11 5045.919921 1085.920043 15.000000 0 +5081=21 5068.799804 1115.839965 7.500000 0 +5082=21 5068.799804 1117.599975 7.500000 0 +5083=11 5045.919921 1087.680053 15.000000 0 +5084=21 5068.799804 1119.359985 7.500000 0 +5085=11 5047.680175 1087.680053 15.000000 0 +5086=21 5067.040039 1119.359985 7.500000 0 +5087=11 5047.680175 1085.920043 15.000000 0 +5088=21 5061.759765 1119.359985 7.500000 0 +5089=11 5049.439941 1087.680053 15.000000 0 +5090=21 5063.520019 1119.359985 7.500000 0 +5091=21 5065.279785 1119.359985 7.500000 0 +5092=11 5049.439941 1085.920043 15.000000 0 +5093=21 5058.240234 1119.359985 7.500000 0 +5094=11 5051.200195 1087.680053 15.000000 0 +5095=21 5060.000000 1119.359985 7.500000 0 +5096=11 5051.200195 1085.920043 15.000000 0 +5097=21 5054.720214 1119.359985 7.500000 0 +5098=11 5052.959960 1087.680053 15.000000 0 +5099=21 5056.479980 1119.359985 7.500000 0 +5100=11 5052.959960 1085.920043 15.000000 0 +5101=11 5054.720214 1087.680053 15.000000 0 +5102=11 5054.720214 1085.920043 15.000000 0 +5103=11 5056.479980 1087.680053 15.000000 0 +5104=11 5056.479980 1085.920043 15.000000 0 +5105=21 5052.959960 1098.239990 6.000000 0 +5106=21 5052.959960 1100.000000 6.000000 0 +5107=11 5060.000000 1087.680053 15.000000 0 +5108=21 5052.959960 1103.520019 6.000000 0 +5110=21 5052.959960 1101.760009 6.000000 0 +5109=21 5052.959960 1108.800048 6.000000 0 +5111=11 5058.240234 1087.680053 15.000000 0 +5112=11 5058.240234 1085.920043 15.000000 0 +5113=21 5052.959960 1115.839965 6.000000 0 +5114=21 5052.959960 1119.359985 6.000000 0 +5115=11 5060.000000 1085.920043 15.000000 0 +5116=21 5052.959960 1119.359985 7.500000 0 +5117=11 5061.759765 1087.680053 15.000000 0 +5118=21 5052.959960 1112.319946 6.000000 0 +5119=11 5061.759765 1085.920043 15.000000 0 +5120=21 5052.959960 1117.599975 6.000000 0 +5121=21 5052.959960 1114.079956 6.000000 0 +5122=21 5052.959960 1110.560058 6.000000 0 +5123=11 5063.520019 1085.920043 15.000000 0 +5124=21 5052.959960 1107.040039 6.000000 0 +5125=21 5052.959960 1105.280029 6.000000 0 +5126=11 5063.520019 1087.680053 15.000000 0 +5127=11 5065.279785 1087.680053 15.000000 0 +5128=11 5065.279785 1085.920043 15.000000 0 +5129=21 5052.959960 1098.239990 7.500000 0 +5130=11 5067.040039 1087.680053 15.000000 0 +5131=21 5052.959960 1100.000000 7.500000 0 +5132=11 5067.040039 1085.920043 15.000000 0 +5133=21 5052.959960 1101.760009 7.500000 0 +5134=11 5068.799804 1087.680053 15.000000 0 +5135=21 5052.959960 1103.520019 7.500000 0 +5136=11 5068.799804 1085.920043 15.000000 0 +5137=21 5052.959960 1105.280029 7.500000 0 +5138=11 5070.560058 1087.680053 15.000000 0 +5139=21 5052.959960 1107.040039 7.500000 0 +5140=11 5070.560058 1085.920043 15.000000 0 +5141=21 5052.959960 1108.800048 7.500000 0 +5142=21 5052.959960 1112.319946 7.500000 0 +5144=21 5052.959960 1110.560058 7.500000 0 +5145=21 5052.959960 1114.079956 7.500000 0 +5146=21 5052.959960 1115.839965 7.500000 0 +5143=21 5052.959960 1117.599975 7.500000 0 +5147=11 5075.839843 1087.680053 15.000000 0 +5148=11 5075.839843 1085.920043 15.000000 0 +5149=11 5074.080078 1087.680053 15.000000 0 +5150=11 5072.319824 1087.680053 15.000000 0 +721=21 5060.000000 1098.239990 6.000000 0 +2836=3 5063.520019 1108.800048 6.000000 0 +2838=3 5060.000000 1103.520019 6.000000 0 +5151=11 5074.080078 1085.920043 15.000000 0 +5152=11 5072.319824 1085.920043 15.000000 0 +5153=11 5075.839843 1084.160034 15.000000 0 +5154=11 5075.839843 1082.400024 15.000000 0 +5155=11 5075.839843 1080.640014 15.000000 0 +5156=11 5075.839843 1078.880004 15.000000 0 +5157=11 5075.839843 1077.119995 15.000000 0 +5158=11 5075.839843 1075.359985 15.000000 0 +5159=11 5075.839843 1073.599975 15.000000 0 +722=21 5058.240234 1098.239990 6.000000 0 +825=3 5058.240234 1100.000000 6.000000 0 +5160=11 5067.040039 1070.079956 15.000000 0 +5161=11 5065.279785 1070.079956 15.000000 0 +5162=11 5063.520019 1070.079956 15.000000 0 +5163=11 5061.759765 1070.079956 15.000000 0 +5164=11 5060.000000 1070.079956 15.000000 0 +5165=11 5075.839843 1071.839965 15.000000 0 +5166=11 5056.479980 1070.079956 15.000000 0 +5168=11 5054.720214 1070.079956 15.000000 0 +5169=11 5058.240234 1070.079956 15.000000 0 +5171=11 5056.479980 1071.839965 15.000000 0 +5172=11 5072.319824 1070.079956 15.000000 0 +5173=11 5058.240234 1071.839965 15.000000 0 +5174=11 5070.560058 1070.079956 15.000000 0 +5175=11 5068.799804 1070.079956 15.000000 0 +5176=11 5061.759765 1071.839965 15.000000 0 +2190=11 5074.080078 1082.400024 15.000000 0 +2191=11 5074.080078 1080.640014 15.000000 0 +2193=11 5074.080078 1078.880004 15.000000 0 +2195=11 5074.080078 1075.359985 15.000000 0 +2196=11 5074.080078 1071.839965 15.000000 0 +2204=11 5074.080078 1073.599975 15.000000 0 +2205=11 5072.319824 1071.839965 15.000000 0 +2207=11 5072.319824 1073.599975 15.000000 0 +2210=11 5072.319824 1075.359985 15.000000 0 +2212=11 5072.319824 1078.880004 15.000000 0 +2192=11 5074.080078 1077.119995 15.000000 0 +2211=11 5072.319824 1077.119995 15.000000 0 +2225=11 5072.319824 1084.160034 15.000000 0 +2189=11 5074.080078 1084.160034 15.000000 0 +2242=11 5072.319824 1082.400024 15.000000 0 +2810=11 5072.319824 1080.640014 15.000000 0 +4255=11 5070.560058 1084.160034 15.000000 0 +4286=11 5068.799804 1084.160034 15.000000 0 +4292=11 5067.040039 1084.160034 15.000000 0 +4294=11 5065.279785 1084.160034 15.000000 0 +4295=11 5063.520019 1084.160034 15.000000 0 +4296=11 5061.759765 1084.160034 15.000000 0 +4297=11 5060.000000 1084.160034 15.000000 0 +4298=11 5058.240234 1084.160034 15.000000 0 +4303=11 5056.479980 1084.160034 15.000000 0 +4306=11 5044.160156 1071.839965 15.000000 0 +4307=11 5045.919921 1071.839965 15.000000 0 +4308=11 5044.160156 1073.599975 15.000000 0 +4309=11 5045.919921 1073.599975 15.000000 0 +4311=11 5045.919921 1075.359985 15.000000 0 +4314=11 5044.160156 1075.359985 15.000000 0 +4315=11 5044.160156 1077.119995 15.000000 0 +4316=11 5045.919921 1077.119995 15.000000 0 +4317=11 5044.160156 1078.880004 15.000000 0 +4318=11 5045.919921 1078.880004 15.000000 0 +4320=11 5044.160156 1080.640014 15.000000 0 +4323=11 5045.919921 1080.640014 15.000000 0 +4325=2012 5060.000000 1096.479980 7.500000 0 +4326=11 5044.160156 1082.400024 15.000000 0 +4330=11 5045.919921 1082.400024 15.000000 0 +4332=11 5044.160156 1084.160034 15.000000 0 +4333=11 5045.919921 1084.160034 15.000000 0 +4334=11 5063.520019 1082.400024 15.000000 0 +4335=11 5065.279785 1082.400024 15.000000 0 +4337=11 5067.040039 1082.400024 15.000000 0 +4338=11 5068.799804 1082.400024 15.000000 0 +4339=11 5070.560058 1082.400024 15.000000 0 +4336=11 5070.560058 1078.880004 15.000000 0 +4342=11 5070.560058 1080.640014 15.000000 0 +4343=11 5068.799804 1080.640014 15.000000 0 +4341=11 5070.560058 1071.839965 15.000000 0 +4345=11 5070.560058 1073.599975 15.000000 0 +4346=11 5054.720214 1071.839965 15.000000 0 +4348=11 5052.959960 1070.079956 15.000000 0 +4349=11 5052.959960 1071.839965 15.000000 0 +2654=11 5047.680175 1070.079956 15.000000 0 +4350=11 5049.439941 1070.079956 15.000000 0 +4351=11 5051.200195 1070.079956 15.000000 0 +2540=11 5051.200195 1071.839965 15.000000 0 +4352=11 5049.439941 1071.839965 15.000000 0 +4353=11 5047.680175 1071.839965 15.000000 0 +4354=11 5047.680175 1073.599975 15.000000 0 +2567=11 5047.680175 1075.359985 15.000000 0 +4357=11 5047.680175 1077.119995 15.000000 0 +4365=2012 5051.200195 1061.280029 6.000000 90 +4366=11 5047.680175 1078.880004 15.000000 0 +4368=11 5047.680175 1080.640014 15.000000 0 +4372=11 5047.680175 1082.400024 15.000000 0 +4376=11 5051.200195 1061.280029 9.000000 0 +4373=11 5049.439941 1084.160034 15.000000 0 +4374=11 5047.680175 1084.160034 15.000000 0 +4764=11 5052.959960 1084.160034 15.000000 0 +2251=11 5068.799804 1071.839965 15.000000 0 +2298=11 5054.720214 1084.160034 15.000000 0 +5177=11 5051.200195 1084.160034 15.000000 0 +5178=11 5049.439941 1073.599975 15.000000 0 +5179=11 5061.759765 1082.400024 15.000000 0 +5180=11 5060.000000 1082.400024 15.000000 0 +5181=11 5051.200195 1073.599975 15.000000 0 +5182=11 5058.240234 1082.400024 15.000000 0 +5183=11 5056.479980 1082.400024 15.000000 0 +5184=11 5051.200195 1075.359985 15.000000 0 +5185=11 5054.720214 1082.400024 15.000000 0 +5186=11 5049.439941 1075.359985 15.000000 0 +5187=11 5052.959960 1082.400024 15.000000 0 +5188=11 5051.200195 1082.400024 15.000000 0 +5189=11 5049.439941 1077.119995 15.000000 0 +5190=11 5049.439941 1082.400024 15.000000 0 +5191=11 5049.439941 1078.880004 15.000000 0 +5192=11 5049.439941 1080.640014 15.000000 0 +5193=11 5051.200195 1080.640014 15.000000 0 +5194=11 5051.200195 1078.880004 15.000000 0 +5195=11 5051.200195 1077.119995 15.000000 0 +5196=11 5060.000000 1071.839965 15.000000 0 +5197=11 5063.520019 1071.839965 15.000000 0 +5198=11 5067.040039 1071.839965 15.000000 0 +5199=11 5065.279785 1071.839965 15.000000 0 +5200=8 5068.799804 1105.280029 9.000000 0 +5202=8 5068.799804 1107.040039 9.000000 0 +5203=8 5068.799804 1108.800048 9.000000 0 +5201=8 5068.799804 1110.560058 9.000000 0 +5204=11 5070.560058 1077.119995 15.000000 0 +5205=8 5068.799804 1112.319946 9.000000 0 +5206=11 5070.560058 1075.359985 15.000000 0 +5207=8 5068.799804 1114.079956 9.000000 0 +5208=11 5068.799804 1075.359985 15.000000 0 +5209=8 5068.799804 1115.839965 9.000000 0 +5210=8 5068.799804 1117.599975 9.000000 0 +5211=11 5068.799804 1073.599975 15.000000 0 +5212=8 5068.799804 1119.359985 9.000000 0 +5213=8 5065.279785 1119.359985 9.000000 0 +5214=11 5068.799804 1077.119995 15.000000 0 +5215=8 5067.040039 1119.359985 9.000000 0 +5216=11 5068.799804 1078.880004 15.000000 0 +5217=8 5063.520019 1119.359985 9.000000 0 +5218=8 5061.759765 1119.359985 9.000000 0 +5219=11 5067.040039 1080.640014 15.000000 0 +5220=11 5065.279785 1080.640014 15.000000 0 +5221=8 5060.000000 1119.359985 9.000000 0 +5222=8 5058.240234 1119.359985 9.000000 0 +5223=11 5061.759765 1080.640014 15.000000 0 +5224=8 5056.479980 1119.359985 9.000000 0 +5225=8 5054.720214 1119.359985 9.000000 0 +5226=8 5052.959960 1119.359985 9.000000 0 +5227=11 5063.520019 1080.640014 15.000000 0 +5228=8 5052.959960 1117.599975 9.000000 0 +5229=11 5060.000000 1080.640014 15.000000 0 +5230=8 5052.959960 1115.839965 9.000000 0 +5231=8 5052.959960 1114.079956 9.000000 0 +5232=8 5052.959960 1112.319946 9.000000 0 +5233=8 5052.959960 1110.560058 9.000000 0 +5234=8 5052.959960 1108.800048 9.000000 0 +5235=8 5052.959960 1107.040039 9.000000 0 +5236=8 5052.959960 1105.280029 9.000000 0 +5237=8 5052.959960 1103.520019 9.000000 0 +5238=8 5052.959960 1101.760009 9.000000 0 +5239=8 5052.959960 1100.000000 9.000000 0 +5240=8 5052.959960 1098.239990 9.000000 0 +5241=8 5054.720214 1098.239990 9.000000 0 +5242=8 5056.479980 1098.239990 9.000000 0 +5243=8 5058.240234 1098.239990 9.000000 0 +5244=8 5061.759765 1098.239990 9.000000 0 +5245=8 5063.520019 1098.239990 9.000000 0 +5246=8 5065.279785 1098.239990 9.000000 0 +5247=8 5067.040039 1098.239990 9.000000 0 +5248=11 5058.240234 1080.640014 15.000000 0 +5249=8 5068.799804 1098.239990 9.000000 0 +5250=11 5056.479980 1080.640014 15.000000 0 +5251=8 5068.799804 1100.000000 9.000000 0 +5252=11 5054.720214 1080.640014 15.000000 0 +5253=8 5068.799804 1101.760009 9.000000 0 +5254=11 5052.959960 1080.640014 15.000000 0 +5255=8 5068.799804 1103.520019 9.000000 0 +4624=11 5052.959960 1078.880004 15.000000 0 +5256=8 5068.799804 1103.520019 10.500000 0 +5257=11 5052.959960 1077.119995 15.000000 0 +5258=11 5052.959960 1075.359985 15.000000 0 +5259=8 5068.799804 1105.280029 10.500000 0 +5260=11 5052.959960 1073.599975 15.000000 0 +5261=11 5054.720214 1073.599975 15.000000 0 +5262=11 5054.720214 1075.359985 15.000000 0 +5263=11 5054.720214 1077.119995 15.000000 0 +5264=8 5068.799804 1101.760009 10.500000 0 +5265=11 5054.720214 1078.880004 15.000000 0 +5266=8 5068.799804 1100.000000 10.500000 0 +5267=8 5068.799804 1098.239990 10.500000 0 +5268=8 5067.040039 1098.239990 10.500000 0 +5269=8 5065.279785 1098.239990 10.500000 0 +2299=8 5063.520019 1098.239990 10.500000 0 +2300=8 5061.759765 1098.239990 10.500000 0 +2000=14 5155.040039 985.599975 6.000000 0 +2015=8 5068.799804 1108.800048 10.500000 0 +3331=8 5068.799804 1110.560058 10.500000 0 +2013=8 5068.799804 1112.319946 10.500000 0 +5270=8 5068.799804 1114.079956 10.500000 0 +5271=8 5068.799804 1115.839965 10.500000 0 +5273=8 5068.799804 1117.599975 10.500000 0 +5274=8 5068.799804 1119.359985 10.500000 0 +5275=8 5067.040039 1119.359985 10.500000 0 +5276=8 5065.279785 1119.359985 10.500000 0 +5277=8 5063.520019 1119.359985 10.500000 0 +5278=8 5061.759765 1119.359985 10.500000 0 +5279=8 5060.000000 1119.359985 10.500000 0 +5280=8 5058.240234 1119.359985 10.500000 0 +5281=8 5056.479980 1119.359985 10.500000 0 +5282=8 5054.720214 1119.359985 10.500000 0 +5283=8 5052.959960 1119.359985 10.500000 0 +5284=8 5052.959960 1117.599975 10.500000 0 +5272=8 5052.959960 1115.839965 10.500000 0 +5286=8 5052.959960 1114.079956 10.500000 0 +5287=8 5052.959960 1112.319946 10.500000 0 +5288=8 5052.959960 1110.560058 10.500000 0 +5289=8 5052.959960 1108.800048 10.500000 0 +5290=8 5052.959960 1107.040039 10.500000 0 +5285=11 5056.479980 1078.880004 15.000000 0 +5291=8 5052.959960 1105.280029 10.500000 0 +5292=8 5052.959960 1103.520019 10.500000 0 +5293=11 5056.479980 1077.119995 15.000000 0 +5294=8 5052.959960 1101.760009 10.500000 0 +5295=8 5052.959960 1100.000000 10.500000 0 +5296=11 5056.479980 1075.359985 15.000000 0 +5297=8 5052.959960 1098.239990 10.500000 0 +5298=11 5056.479980 1073.599975 15.000000 0 +5299=11 5058.240234 1073.599975 15.000000 0 +5301=11 5060.000000 1073.599975 15.000000 0 +5300=11 5067.040039 1073.599975 15.000000 0 +5302=8 5054.720214 1098.239990 10.500000 0 +5303=8 5056.479980 1098.239990 10.500000 0 +5304=11 5065.279785 1073.599975 15.000000 0 +5305=11 5063.520019 1073.599975 15.000000 0 +5306=8 5058.240234 1098.239990 10.500000 0 +5307=11 5061.759765 1073.599975 15.000000 0 +5308=11 5067.040039 1075.359985 15.000000 0 +5309=11 5067.040039 1077.119995 15.000000 0 +5310=11 5067.040039 1078.880004 15.000000 0 +5311=11 5058.240234 1077.119995 15.000000 0 +5312=11 5058.240234 1078.880004 15.000000 0 +5313=11 5060.000000 1078.880004 15.000000 0 +5314=11 5061.759765 1078.880004 15.000000 0 +5315=11 5063.520019 1078.880004 15.000000 0 +5316=11 5065.279785 1078.880004 15.000000 0 +5317=11 5065.279785 1077.119995 15.000000 0 +5318=11 5065.279785 1075.359985 15.000000 0 +5319=18 5054.720214 1100.000000 10.500000 0 +5320=11 5058.240234 1075.359985 15.000000 0 +5321=18 5054.720214 1101.760009 10.500000 0 +5322=11 5060.000000 1075.359985 15.000000 0 +5323=18 5054.720214 1103.520019 10.500000 0 +5324=18 5054.720214 1105.280029 10.500000 0 +5325=11 5060.000000 1077.119995 15.000000 0 +5326=11 5061.759765 1077.119995 15.000000 0 +5327=11 5061.759765 1075.359985 15.000000 0 +5328=18 5054.720214 1107.040039 10.500000 0 +5329=18 5054.720214 1108.800048 10.500000 0 +5330=11 5063.520019 1075.359985 15.000000 0 +5331=18 5054.720214 1110.560058 10.500000 0 +5332=18 5054.720214 1112.319946 10.500000 0 +5333=11 5063.520019 1077.119995 15.000000 0 +5334=18 5054.720214 1114.079956 10.500000 0 +5335=18 5054.720214 1115.839965 10.500000 0 +5336=18 5054.720214 1117.599975 10.500000 0 +5338=18 5056.479980 1117.599975 10.500000 0 +5339=18 5058.240234 1115.839965 10.500000 0 +5340=18 5056.479980 1115.839965 10.500000 0 +5341=18 5056.479980 1112.319946 10.500000 0 +5342=18 5056.479980 1114.079956 10.500000 0 +5343=18 5058.240234 1100.000000 10.500000 0 +5344=18 5056.479980 1100.000000 10.500000 0 +5346=18 5058.240234 1101.760009 10.500000 0 +5345=18 5056.479980 1101.760009 10.500000 0 +5347=18 5056.479980 1103.520019 10.500000 0 +5348=18 5056.479980 1105.280029 10.500000 0 +5349=18 5056.479980 1108.800048 10.500000 0 +5350=18 5056.479980 1107.040039 10.500000 0 +5351=18 5056.479980 1110.560058 10.500000 0 +5352=18 5058.240234 1103.520019 10.500000 0 +5353=18 5058.240234 1105.280029 10.500000 0 +5354=18 5058.240234 1107.040039 10.500000 0 +5355=18 5058.240234 1108.800048 10.500000 0 +5356=18 5058.240234 1110.560058 10.500000 0 +5357=18 5058.240234 1112.319946 10.500000 0 +5358=18 5058.240234 1114.079956 10.500000 0 +5359=18 5061.759765 1100.000000 10.500000 0 +5360=18 5060.000000 1098.239990 10.500000 0 +5361=18 5060.000000 1100.000000 10.500000 0 +5362=18 5063.520019 1100.000000 10.500000 0 +5363=18 5063.520019 1101.760009 10.500000 0 +5364=18 5061.759765 1101.760009 10.500000 0 +5365=18 5060.000000 1101.760009 10.500000 0 +5366=18 5060.000000 1103.520019 10.500000 0 +5167=18 5058.240234 1117.599975 10.500000 0 +5170=11 5075.839843 1070.079956 15.000000 0 +5337=18 5060.000000 1117.599975 10.500000 0 +5367=11 5074.080078 1070.079956 15.000000 0 +5368=18 5061.759765 1117.599975 10.500000 0 +5369=18 5063.520019 1117.599975 10.500000 0 +5370=18 5065.279785 1117.599975 10.500000 0 +5371=18 5067.040039 1115.839965 10.500000 0 +5372=18 5067.040039 1117.599975 10.500000 0 +5373=18 5060.000000 1115.839965 10.500000 0 +5374=18 5061.759765 1115.839965 10.500000 0 +5375=11 5056.479980 1075.359985 10.500000 0 +5376=18 5063.520019 1115.839965 10.500000 0 +5377=18 5065.279785 1115.839965 10.500000 0 +5378=18 5067.040039 1114.079956 10.500000 0 +5379=18 5067.040039 1110.560058 10.500000 0 +5381=18 5065.279785 1114.079956 10.500000 0 +5383=18 5060.000000 1114.079956 10.500000 0 +5384=18 5061.759765 1114.079956 10.500000 0 +5385=18 5067.040039 1108.800048 10.500000 0 +5388=18 5067.040039 1100.000000 10.500000 0 +5389=18 5067.040039 1101.760009 10.500000 0 +5390=18 5067.040039 1103.520019 10.500000 0 +5391=18 5067.040039 1105.280029 10.500000 0 +3233=18 5060.000000 1112.319946 10.500000 0 +4725=18 5063.520019 1112.319946 10.500000 0 +5392=18 5065.279785 1112.319946 10.500000 0 +5394=18 5060.000000 1110.560058 10.500000 0 +5395=18 5060.000000 1105.280029 10.500000 0 +5396=18 5060.000000 1107.040039 10.500000 0 +5397=18 5060.000000 1108.800048 10.500000 0 +4008=18 5061.759765 1108.800048 10.500000 0 +4007=18 5063.520019 1110.560058 10.500000 0 +4005=18 5061.759765 1110.560058 10.500000 0 +3993=18 5061.759765 1107.040039 10.500000 0 +3989=18 5063.520019 1108.800048 10.500000 0 +3990=18 5065.279785 1110.560058 10.500000 0 +3994=18 5065.279785 1108.800048 10.500000 0 +3998=18 5063.520019 1107.040039 10.500000 0 +3996=18 5065.279785 1107.040039 10.500000 0 +4003=18 5065.279785 1105.280029 10.500000 0 +4004=18 5065.279785 1103.520019 10.500000 0 +4006=18 5065.279785 1101.760009 10.500000 0 +5399=18 5061.759765 1103.520019 10.500000 0 +5401=18 5061.759765 1105.280029 10.500000 0 +5402=18 5063.520019 1105.280029 10.500000 0 +5403=18 5063.520019 1103.520019 10.500000 0 +2387=2014 5049.439941 1071.839965 7.500000 0 +5406=11 5047.680175 1059.520019 6.000000 0 +3097=21 5049.439941 1075.359985 6.000000 0 +3105=21 5049.439941 1073.599975 6.000000 0 +4646=41 5049.439941 1073.599975 7.500000 0 +5405=11 5042.399902 1078.880004 12.000000 0 +5407=11 5042.399902 1078.880004 13.500000 0 +5409=11 5044.160156 1078.880004 13.500000 0 +5410=11 5045.919921 1078.880004 12.000000 0 +5411=11 5045.919921 1078.880004 13.500000 0 +5412=11 5049.439941 1078.880004 12.000000 0 +5413=11 5049.439941 1078.880004 13.500000 0 +5414=11 5052.959960 1078.880004 12.000000 0 +5415=11 5051.200195 1078.880004 12.000000 0 +5416=11 5051.200195 1078.880004 13.500000 0 +5417=11 5052.959960 1078.880004 13.500000 0 +5428=2012 5047.680175 1078.880004 12.000000 0 +5429=11 5058.240234 1087.680053 12.000000 0 +5430=11 5058.240234 1087.680053 13.500000 0 +5431=11 5058.240234 1085.920043 12.000000 0 +5432=11 5058.240234 1085.920043 13.500000 0 +5433=11 5058.240234 1084.160034 12.000000 0 +5434=11 5058.240234 1084.160034 13.500000 0 +5435=11 5058.240234 1082.400024 13.500000 0 +5436=11 5058.240234 1082.400024 12.000000 0 +5437=11 5058.240234 1080.640014 12.000000 0 +5439=11 5058.240234 1078.880004 12.000000 0 +4427=11 5056.479980 1084.160034 10.500000 0 +5418=11 5051.200195 1080.640014 12.000000 0 +5419=11 5051.200195 1080.640014 13.500000 0 +5422=11 5051.200195 1087.680053 13.500000 0 +5423=11 5051.200195 1085.920043 13.500000 0 +5424=11 5051.200195 1085.920043 12.000000 0 +5427=11 5051.200195 1084.160034 13.500000 0 +5441=11 5056.479980 1078.880004 12.000000 0 +5442=11 5056.479980 1078.880004 13.500000 0 +5443=2012 5054.720214 1078.880004 12.000000 0 +5444=11 5061.759765 1087.680053 12.000000 0 +5446=11 5061.759765 1084.160034 12.000000 0 +5447=11 5061.759765 1085.920043 13.500000 0 +5448=19 5107.520019 990.880004 6.000000 0 +5449=11 5061.759765 1084.160034 13.500000 0 +5450=11 5061.759765 1082.400024 12.000000 0 +5451=11 5061.759765 1082.400024 13.500000 0 +5452=11 5061.759765 1080.640014 13.500000 0 +5453=11 5061.759765 1080.640014 12.000000 0 +5454=11 5061.759765 1078.880004 12.000000 0 +5455=19 5109.279785 989.119995 6.000000 0 +5456=19 5109.279785 990.880004 6.000000 0 +5457=11 5068.799804 1080.640014 12.000000 0 +5458=19 5111.040039 989.119995 6.000000 0 +5459=11 5068.799804 1082.400024 12.000000 0 +5460=11 5068.799804 1087.680053 12.000000 0 +5461=19 5111.040039 990.880004 6.000000 0 +5462=11 5068.799804 1087.680053 13.500000 0 +5463=11 5068.799804 1085.920043 13.500000 0 +5464=11 5068.799804 1084.160034 13.500000 0 +5465=11 5068.799804 1082.400024 13.500000 0 +5466=11 5068.799804 1080.640014 13.500000 0 +5467=11 5068.799804 1078.880004 13.500000 0 +5468=11 5063.520019 1078.880004 12.000000 0 +5469=11 5063.520019 1078.880004 13.500000 0 +5470=11 5067.040039 1078.880004 12.000000 0 +5471=11 5067.040039 1078.880004 13.500000 0 +5472=14 5156.799804 987.359985 6.000000 0 +5473=2011 5060.000000 1078.880004 12.000000 0 +5474=11 5070.560058 1078.880004 12.000000 0 +5475=11 5070.560058 1078.880004 13.500000 0 +5476=11 5075.839843 1078.880004 12.000000 0 +5477=11 5075.839843 1078.880004 13.500000 0 +5478=11 5074.080078 1078.880004 12.000000 0 +5479=14 5158.560058 987.359985 6.000000 0 +5480=14 5158.560058 985.599975 6.000000 0 +5481=11 5045.919921 1070.079956 12.000000 0 +5482=14 5156.799804 985.599975 6.000000 0 +5483=11 5045.919921 1071.839965 13.500000 0 +5484=11 5045.919921 1071.839965 12.000000 0 +5485=14 5156.799804 983.840026 6.000000 0 +5486=11 5075.839843 1075.359985 13.500000 0 +5489=11 5075.839843 1075.359985 12.000000 0 +5490=11 5074.080078 1075.359985 13.500000 0 +5491=11 5070.560058 1075.359985 12.000000 0 +5492=11 5068.799804 1075.359985 12.000000 0 +5493=11 5067.040039 1075.359985 12.000000 0 +5494=11 5065.279785 1075.359985 12.000000 0 +5495=11 5063.520019 1075.359985 12.000000 0 +5496=11 5061.759765 1075.359985 12.000000 0 +5497=11 5060.000000 1075.359985 12.000000 0 +5498=11 5058.240234 1075.359985 12.000000 0 +5499=11 5056.479980 1075.359985 12.000000 0 +5500=11 5054.720214 1075.359985 12.000000 0 +5501=11 5052.959960 1075.359985 12.000000 0 +5502=11 5051.200195 1075.359985 12.000000 0 +5503=11 5049.439941 1075.359985 12.000000 0 +5505=11 5049.439941 1071.839965 12.000000 0 +5506=11 5049.439941 1073.599975 12.000000 0 +5507=11 5049.439941 1070.079956 13.500000 0 +5508=11 5049.439941 1071.839965 13.500000 0 +5509=11 5049.439941 1073.599975 13.500000 0 +5510=11 5049.439941 1075.359985 13.500000 0 +5511=11 5051.200195 1075.359985 13.500000 0 +5512=11 5052.959960 1075.359985 13.500000 0 +5513=11 5054.720214 1075.359985 13.500000 0 +5514=11 5056.479980 1075.359985 13.500000 0 +5515=11 5058.240234 1075.359985 13.500000 0 +5516=11 5060.000000 1075.359985 13.500000 0 +5517=11 5061.759765 1075.359985 13.500000 0 +5518=11 5063.520019 1075.359985 13.500000 0 +5519=11 5065.279785 1075.359985 13.500000 0 +5520=11 5067.040039 1075.359985 13.500000 0 +5521=11 5068.799804 1075.359985 13.500000 0 +5523=11 5070.560058 1075.359985 13.500000 0 +5522=2012 5072.319824 1075.359985 12.000000 0 +5487=11 5045.919921 1073.599975 12.000000 0 +5488=11 5045.919921 1075.359985 12.000000 0 +5524=11 5045.919921 1073.599975 13.500000 0 +5525=11 5045.919921 1075.359985 13.500000 0 +5526=2011 5045.919921 1077.119995 12.000000 90 +553=39 5042.399902 980.320007 6.000000 0 +723=21 5056.479980 1100.000000 6.000000 0 +1157=21 5056.479980 1098.239990 6.000000 0 +1563=21 5056.479980 1098.239990 7.500000 0 +626=39 5042.399902 997.919982 6.000000 0 +1792=12 5102.240234 982.080017 6.000000 0 +1822=14 5155.040039 994.400024 6.000000 0 +1919=39 5042.399902 985.599975 6.000000 0 +1920=39 5042.399902 987.359985 6.000000 0 +1921=39 5042.399902 983.840026 6.000000 0 +3984=39 5042.399902 982.080017 6.000000 0 +823=27 4996.640136 932.799987 6.000000 0 +2484=27 4996.640136 931.039978 6.000000 0 +3987=27 4996.640136 929.280029 6.000000 0 +3995=27 4996.640136 927.520019 6.000000 0 +3997=27 4996.640136 925.760009 6.000000 0 +3999=27 4996.640136 924.000000 6.000000 0 +4000=27 4996.640136 922.239990 6.000000 0 +4002=27 4996.640136 920.479980 6.000000 0 +4009=23 4996.640136 931.039978 7.500000 0 +3205=23 4996.640136 931.039978 9.000000 0 +4010=31 4986.080078 1034.880004 7.500000 0 +4011=23 4996.640136 931.039978 10.500000 0 +4012=23 4996.640136 931.039978 12.000000 0 +4013=23 4996.640136 931.039978 13.500000 0 +4014=23 4996.640136 929.280029 12.000000 0 +4015=23 4996.640136 927.520019 10.500000 0 +4016=23 4996.640136 925.760009 9.000000 0 +4017=23 4996.640136 924.000000 7.500000 0 +4022=23 4996.640136 924.000000 9.000000 0 +4355=23 4996.640136 924.000000 10.500000 0 +4356=23 4996.640136 924.000000 12.000000 0 +4360=23 4996.640136 924.000000 13.500000 0 +5010=23 4996.640136 920.479980 7.500000 0 +5527=27 4996.640136 918.719970 6.000000 0 +5528=27 4996.640136 916.960021 6.000000 0 +5529=27 4996.640136 915.200012 6.000000 0 +5530=27 4996.640136 913.440002 6.000000 0 +5531=27 4996.640136 911.679992 6.000000 0 +5532=27 4996.640136 909.919982 6.000000 0 +5533=27 4996.640136 908.159973 6.000000 0 +5534=27 4996.640136 906.400024 6.000000 0 +5535=27 4996.640136 904.640014 6.000000 0 +5536=27 4996.640136 902.880004 6.000000 0 +5537=23 4996.640136 920.479980 9.000000 0 +5538=23 4996.640136 920.479980 10.500000 0 +5539=23 4996.640136 920.479980 12.000000 0 +5540=23 4996.640136 920.479980 13.500000 0 +5541=23 4996.640136 918.719970 13.500000 0 +5542=23 4996.640136 918.719970 10.500000 0 +5544=23 4996.640136 916.960021 7.500000 0 +5545=23 4996.640136 916.960021 9.000000 0 +5546=23 4996.640136 916.960021 10.500000 0 +5548=23 4996.640136 916.960021 12.000000 0 +5547=27 4996.640136 932.799987 7.500000 0 +5549=27 4996.640136 932.799987 9.000000 0 +5550=27 4996.640136 932.799987 10.500000 0 +5551=27 4996.640136 932.799987 12.000000 0 +1200=27 4996.640136 932.799987 13.500000 0 +5552=27 4996.640136 932.799987 15.000000 0 +5553=22 4813.600097 1082.400024 6.000000 0 +5554=27 4996.640136 931.039978 15.000000 0 +1190=27 4996.640136 929.280029 13.500000 0 +5555=27 4996.640136 929.280029 15.000000 0 +5556=23 4811.839843 1078.880004 6.000000 0 +5558=27 4996.640136 929.280029 7.500000 0 +5557=27 4996.640136 929.280029 9.000000 0 +5559=27 4996.640136 929.280029 10.500000 0 +5560=27 4996.640136 927.520019 7.500000 0 +5561=27 4996.640136 927.520019 9.000000 0 +5562=27 4996.640136 925.760009 7.500000 0 +4018=27 4996.640136 927.520019 12.000000 0 +4021=27 4996.640136 927.520019 13.500000 0 +4019=27 4996.640136 927.520019 15.000000 0 +3992=27 4996.640136 925.760009 13.500000 0 +3991=27 4996.640136 925.760009 15.000000 0 +4001=27 4996.640136 925.760009 10.500000 0 +4020=27 4996.640136 925.760009 12.000000 0 +4023=27 4996.640136 922.239990 7.500000 0 +4024=27 4996.640136 922.239990 9.000000 0 +4025=27 4996.640136 922.239990 10.500000 0 +4026=27 4996.640136 922.239990 12.000000 0 +4027=27 4996.640136 922.239990 13.500000 0 +4028=27 4996.640136 924.000000 15.000000 0 +4029=27 4996.640136 922.239990 15.000000 0 +4030=27 4996.640136 920.479980 15.000000 0 +4031=27 4996.640136 918.719970 15.000000 0 +4032=27 4996.640136 916.960021 15.000000 0 +4033=27 4996.640136 915.200012 15.000000 0 +4034=27 4996.640136 915.200012 12.000000 0 +4035=27 4996.640136 915.200012 7.500000 0 +4036=27 4996.640136 915.200012 9.000000 0 +4037=27 4996.640136 915.200012 10.500000 0 +4038=27 4996.640136 915.200012 13.500000 0 +4039=27 4996.640136 918.719970 12.000000 0 +4040=27 4996.640136 918.719970 9.000000 0 +4041=27 4996.640136 918.719970 7.500000 0 +5543=23 4996.640136 916.960021 13.500000 0 +5563=23 4996.640136 913.440002 7.500000 0 +5564=23 4996.640136 913.440002 9.000000 0 +5565=23 4996.640136 913.440002 10.500000 0 +5566=23 4996.640136 913.440002 12.000000 0 +5567=23 4996.640136 913.440002 13.500000 0 +5568=23 4996.640136 911.679992 7.500000 0 +5569=23 4996.640136 909.919982 7.500000 0 +5570=23 4996.640136 909.919982 9.000000 0 +5571=23 4996.640136 909.919982 10.500000 0 +5572=23 4996.640136 909.919982 12.000000 0 +5573=23 4996.640136 909.919982 13.500000 0 +5574=23 4996.640136 906.400024 7.500000 0 +5575=23 4996.640136 906.400024 9.000000 0 +5576=23 4996.640136 906.400024 10.500000 0 +5577=23 4996.640136 906.400024 12.000000 0 +5578=23 4996.640136 906.400024 13.500000 0 +5579=23 4996.640136 904.640014 13.500000 0 +5580=23 4996.640136 902.880004 10.500000 0 +5582=23 4996.640136 902.880004 13.500000 0 +5583=27 4996.640136 901.119995 6.000000 0 +5584=27 4996.640136 899.359985 6.000000 0 +5585=27 4996.640136 897.599975 6.000000 0 +5586=27 4996.640136 895.840026 6.000000 0 +5587=27 4996.640136 894.080017 6.000000 0 +5588=27 4996.640136 892.320007 6.000000 0 +5589=27 4996.640136 890.559997 6.000000 0 +5590=27 4996.640136 888.799987 6.000000 0 +1550=23 5014.240234 906.400024 6.000000 0 +1585=35 5082.879882 915.200012 6.000000 0 +1632=35 5084.640136 915.200012 6.000000 0 +1696=35 5086.399902 913.440002 6.000000 0 +1716=35 5088.160156 915.200012 6.000000 0 +1762=35 5086.399902 916.960021 6.000000 0 +1843=35 5086.399902 915.200012 6.000000 0 +1870=35 5081.120117 915.200012 6.000000 0 +4164=24 5088.160156 913.440002 6.000000 0 +4228=24 5088.160156 916.960021 6.000000 0 +5592=27 5012.479980 876.479980 201.000000 0 +5593=24 5084.640136 916.960021 6.000000 0 +5591=24 5082.879882 916.960021 6.000000 0 +5594=24 5081.120117 916.960021 6.000000 0 +5595=24 5079.359863 916.960021 6.000000 0 +5596=24 5079.359863 915.200012 6.000000 0 +5597=24 5079.359863 913.440002 6.000000 0 +5599=24 5084.640136 913.440002 6.000000 0 +5600=24 5082.879882 913.440002 6.000000 0 +5601=24 5081.120117 913.440002 6.000000 0 +5602=24 5089.919921 916.960021 6.000000 0 +5603=24 5089.919921 915.200012 6.000000 0 +5604=24 5089.919921 913.440002 6.000000 0 +5605=24 5088.160156 911.679992 6.000000 0 +5606=24 5086.399902 911.679992 6.000000 0 +5607=24 5084.640136 911.679992 6.000000 0 +5608=24 5084.640136 918.719970 6.000000 0 +5609=24 5086.399902 918.719970 6.000000 0 +5610=24 5088.160156 918.719970 6.000000 0 +5611=22 5091.680175 915.200012 6.000000 0 +5598=22 5091.680175 913.440002 6.000000 0 +5612=22 5089.919921 911.679992 6.000000 0 +5615=22 5086.399902 909.919982 6.000000 0 +5616=22 5084.640136 909.919982 6.000000 0 +5618=22 5082.879882 911.679992 6.000000 0 +5620=22 5081.120117 911.679992 6.000000 0 +5621=22 5079.359863 911.679992 6.000000 0 +5622=22 5077.600097 911.679992 6.000000 0 +5614=22 5077.600097 913.440002 6.000000 0 +5619=22 5077.600097 916.960021 6.000000 0 +5623=22 5077.600097 915.200012 6.000000 0 +5625=22 5077.600097 918.719970 6.000000 0 +5626=22 5079.359863 918.719970 6.000000 0 +5627=22 5081.120117 918.719970 6.000000 0 +5628=22 5082.879882 918.719970 6.000000 0 +5629=22 5082.879882 920.479980 6.000000 0 +5631=22 5086.399902 920.479980 6.000000 0 +5632=22 5088.160156 920.479980 6.000000 0 +5633=22 5086.399902 922.239990 6.000000 0 +5634=22 5089.919921 918.719970 6.000000 0 +5635=22 5091.680175 916.960021 6.000000 0 +5636=22 5093.439941 915.200012 6.000000 0 +5624=22 5075.839843 915.200012 6.000000 0 +5637=22 5075.839843 916.960021 6.000000 0 +5638=22 5075.839843 913.440002 6.000000 0 +5639=22 5074.080078 915.200012 6.000000 0 +5640=24 5084.640136 916.960021 7.500000 0 +5641=24 5081.120117 916.960021 7.500000 0 +5642=24 5082.879882 916.960021 7.500000 0 +5643=24 5079.359863 915.200012 7.500000 0 +5644=24 5079.359863 916.960021 7.500000 0 +5645=24 5079.359863 913.440002 7.500000 0 +5646=24 5081.120117 913.440002 7.500000 0 +5647=24 5082.879882 913.440002 7.500000 0 +5649=24 5084.640136 911.679992 7.500000 0 +5650=24 5086.399902 911.679992 7.500000 0 +1606=24 5084.640136 918.719970 7.500000 0 +1675=24 5086.399902 918.719970 7.500000 0 +1717=24 5088.160156 918.719970 7.500000 0 +5651=24 5088.160156 916.960021 7.500000 0 +5652=24 5089.919921 916.960021 7.500000 0 +5653=24 5089.919921 915.200012 7.500000 0 +5654=24 5089.919921 913.440002 7.500000 0 +5655=24 5088.160156 911.679992 7.500000 0 +5656=24 5088.160156 913.440002 7.500000 0 +5657=22 5086.399902 920.479980 7.500000 0 +5630=22 5084.640136 920.479980 6.000000 0 +5660=22 5088.160156 920.479980 7.500000 0 +5661=22 5089.919921 918.719970 7.500000 0 +5662=22 5091.680175 916.960021 7.500000 0 +5663=22 5091.680175 915.200012 7.500000 0 +5664=22 5093.439941 915.200012 7.500000 0 +5665=22 5091.680175 913.440002 7.500000 0 +5666=22 5089.919921 911.679992 7.500000 0 +5668=22 5086.399902 909.919982 7.500000 0 +5613=22 5088.160156 909.919982 6.000000 0 +5667=22 5088.160156 909.919982 7.500000 0 +5617=22 5086.399902 908.159973 6.000000 0 +5669=22 5082.879882 911.679992 7.500000 0 +5670=22 5084.640136 909.919982 7.500000 0 +5671=22 5086.399902 908.159973 7.500000 0 +5672=22 5081.120117 911.679992 7.500000 0 +5673=22 5079.359863 911.679992 7.500000 0 +5674=22 5077.600097 911.679992 7.500000 0 +5675=22 5077.600097 913.440002 7.500000 0 +5676=22 5077.600097 915.200012 7.500000 0 +5678=22 5077.600097 916.960021 7.500000 0 +5677=22 5075.839843 918.719970 6.000000 0 +5679=22 5082.879882 920.479980 7.500000 0 +5680=22 5082.879882 918.719970 7.500000 0 +5681=22 5081.120117 918.719970 7.500000 0 +5682=22 5079.359863 918.719970 7.500000 0 +5683=22 5077.600097 918.719970 7.500000 0 +5684=22 5075.839843 918.719970 7.500000 0 +5685=22 5075.839843 916.960021 7.500000 0 +5686=22 5075.839843 913.440002 7.500000 0 +5687=22 5075.839843 915.200012 7.500000 0 +5688=22 5074.080078 915.200012 7.500000 0 +5689=2002 5049.439941 1087.680053 12.000000 0 +5690=2002 5047.680175 1087.680053 12.000000 0 +5691=2002 5049.439941 1085.920043 12.000000 270 +5692=2002 5049.439941 1084.160034 12.000000 270 +5693=2006 5042.399902 1082.400024 12.000000 0 +5694=2001 5042.399902 1080.640014 12.000000 90 +4042=22 5028.319824 971.520019 6.000000 0 +5695=22 5026.560058 971.520019 6.000000 0 +5696=22 5024.799804 971.520019 6.000000 0 +3=10 4889.279785 941.599975 6.000000 0 +38=10 4887.520019 943.359985 6.000000 0 +215=10 4889.279785 943.359985 6.000000 0 +231=10 4885.759765 943.359985 6.000000 0 +395=10 4884.000000 943.359985 6.000000 0 +397=10 4882.240234 943.359985 6.000000 0 +399=10 4880.479980 943.359985 6.000000 0 +232=10 4876.959960 943.359985 6.000000 0 +402=10 4875.200195 943.359985 6.000000 0 +404=10 4873.439941 943.359985 6.000000 0 +405=10 4871.680175 943.359985 6.000000 0 +407=10 4889.279785 938.080017 6.000000 0 +412=10 4889.279785 939.840026 6.000000 0 +413=10 4889.279785 936.320007 6.000000 0 +414=10 4889.279785 934.559997 6.000000 0 +416=10 4889.279785 932.799987 6.000000 0 +417=10 4889.279785 931.039978 6.000000 0 +403=10 4889.279785 929.280029 6.000000 0 +418=10 4889.279785 924.000000 6.000000 0 +419=10 4887.520019 920.479980 6.000000 0 +420=10 4889.279785 920.479980 6.000000 0 +421=10 4885.759765 920.479980 6.000000 0 +422=10 4884.000000 920.479980 6.000000 0 +423=10 4882.240234 920.479980 6.000000 0 +424=10 4880.479980 920.479980 6.000000 0 +425=10 4878.720214 920.479980 6.000000 0 +426=10 4876.959960 920.479980 6.000000 0 +427=10 4875.200195 920.479980 6.000000 0 +428=10 4873.439941 920.479980 6.000000 0 +429=10 4871.680175 920.479980 6.000000 0 +430=10 4869.919921 920.479980 6.000000 0 +431=10 4869.919921 922.239990 6.000000 0 +433=10 4869.919921 924.000000 6.000000 0 +435=10 4869.919921 925.760009 6.000000 0 +444=10 4869.919921 927.520019 6.000000 0 +445=10 4869.919921 929.280029 6.000000 0 +446=10 4869.919921 931.039978 6.000000 0 +447=10 4869.919921 932.799987 6.000000 0 +448=10 4869.919921 934.559997 6.000000 0 +449=10 4869.919921 936.320007 6.000000 0 +450=10 4869.919921 938.080017 6.000000 0 +451=10 4869.919921 939.840026 6.000000 0 +452=10 4869.919921 941.599975 6.000000 0 +453=10 4876.959960 943.359985 7.500000 0 +460=10 4880.479980 943.359985 7.500000 0 +461=10 4882.240234 943.359985 7.500000 0 +462=10 4884.000000 943.359985 7.500000 0 +463=10 4885.759765 943.359985 7.500000 0 +465=10 4887.520019 943.359985 7.500000 0 +467=10 4889.279785 943.359985 7.500000 0 +468=10 4889.279785 941.599975 7.500000 0 +469=10 4889.279785 939.840026 7.500000 0 +471=10 4889.279785 938.080017 7.500000 0 +473=10 4889.279785 936.320007 7.500000 0 +474=10 4889.279785 934.559997 7.500000 0 +475=10 4889.279785 932.799987 7.500000 0 +476=32 4878.720214 1064.800048 6.000000 0 +478=10 4889.279785 931.039978 7.500000 0 +479=32 4880.479980 1064.800048 6.000000 0 +481=10 4889.279785 929.280029 7.500000 0 +482=10 4889.279785 927.520019 7.500000 0 +483=10 4889.279785 925.760009 7.500000 0 +477=32 4882.240234 1064.800048 6.000000 0 +470=32 4884.000000 1064.800048 6.000000 0 +484=10 4889.279785 924.000000 7.500000 0 +487=10 4875.200195 943.359985 7.500000 0 +488=10 4873.439941 943.359985 7.500000 0 +489=10 4871.680175 943.359985 7.500000 0 +490=10 4869.919921 943.359985 7.500000 0 +491=32 4885.759765 1064.800048 6.000000 0 +492=10 4869.919921 941.599975 7.500000 0 +493=10 4869.919921 939.840026 7.500000 0 +486=10 4869.919921 938.080017 7.500000 0 +485=10 4869.919921 936.320007 7.500000 0 +495=10 4869.919921 934.559997 7.500000 0 +496=10 4869.919921 932.799987 7.500000 0 +494=10 4869.919921 931.039978 7.500000 0 +497=10 4869.919921 929.280029 7.500000 0 +499=10 4869.919921 925.760009 7.500000 0 +500=10 4869.919921 920.479980 7.500000 0 +502=23 4887.520019 1064.800048 6.000000 0 +503=10 4869.919921 922.239990 7.500000 0 +498=10 4869.919921 927.520019 7.500000 0 +501=10 4869.919921 924.000000 7.500000 0 +504=23 4876.959960 1064.800048 6.000000 0 +506=10 4871.680175 920.479980 7.500000 0 +507=10 4873.439941 920.479980 7.500000 0 +508=10 4875.200195 920.479980 7.500000 0 +509=10 4876.959960 920.479980 7.500000 0 +510=10 4878.720214 920.479980 7.500000 0 +511=10 4880.479980 920.479980 7.500000 0 +513=10 4882.240234 920.479980 7.500000 0 +514=10 4884.000000 920.479980 7.500000 0 +516=10 4885.759765 920.479980 7.500000 0 +512=10 4887.520019 920.479980 7.500000 0 +517=10 4889.279785 920.479980 7.500000 0 +518=23 4876.959960 1064.800048 7.500000 0 +521=23 4876.959960 1064.800048 9.000000 0 +524=10 4889.279785 941.599975 9.000000 0 +522=10 4889.279785 936.320007 9.000000 0 +529=10 4889.279785 938.080017 9.000000 0 +525=23 4887.520019 1064.800048 7.500000 0 +530=23 4887.520019 1064.800048 9.000000 0 +534=10 4889.279785 943.359985 9.000000 0 +532=10 4889.279785 939.840026 9.000000 0 +536=10 4887.520019 943.359985 9.000000 0 +533=10 4885.759765 943.359985 9.000000 0 +540=10 4884.000000 943.359985 9.000000 0 +542=10 4882.240234 943.359985 9.000000 0 +543=10 4880.479980 943.359985 9.000000 0 +545=10 4878.720214 943.359985 9.000000 0 +739=10 4876.959960 943.359985 9.000000 0 +873=10 4869.919921 943.359985 9.000000 0 +954=10 4871.680175 943.359985 9.000000 0 +983=21 4901.600097 918.719970 6.000000 0 +1557=10 4873.439941 943.359985 9.000000 0 +1577=21 4901.600097 918.719970 7.500000 0 +1803=15 5105.759765 983.840026 6.000000 0 +411=10 4889.279785 922.239990 6.000000 0 +415=10 4889.279785 922.239990 7.500000 0 +1809=15 5112.799804 985.599975 7.500000 0 +1810=15 5112.799804 987.359985 6.000000 0 +1811=14 5153.279785 982.080017 6.000000 0 +400=10 4889.279785 934.559997 9.000000 0 +454=0 4901.600097 918.719970 10.500000 0 +1814=14 5151.520019 992.640014 6.000000 0 +1815=14 5151.520019 990.880004 6.000000 0 +1816=14 5151.520019 994.400024 6.000000 0 +1818=14 5153.279785 992.640014 6.000000 0 +1825=10 4889.279785 925.760009 9.000000 0 +1826=10 4889.279785 924.000000 9.000000 0 +1830=0 4901.600097 920.479980 9.000000 0 +1829=0 4903.359863 918.719970 9.000000 0 +1832=10 4889.279785 922.239990 9.000000 0 +1833=0 4901.600097 916.960021 9.000000 0 +1834=10 4889.279785 920.479980 9.000000 0 +1836=10 4887.520019 920.479980 9.000000 0 +1839=0 4899.839843 918.719970 9.000000 0 +1848=10 4885.759765 920.479980 9.000000 0 +1856=10 4884.000000 920.479980 9.000000 0 +1857=10 4880.479980 920.479980 9.000000 0 +1859=10 4878.720214 920.479980 9.000000 0 +1861=10 4882.240234 920.479980 9.000000 0 +1862=10 4876.959960 920.479980 9.000000 0 +1917=10 4875.200195 920.479980 9.000000 0 +1922=10 4873.439941 920.479980 9.000000 0 +1923=10 4871.680175 920.479980 9.000000 0 +1924=10 4869.919921 918.719970 6.000000 0 +1925=10 4869.919921 922.239990 9.000000 0 +1926=10 4869.919921 924.000000 9.000000 0 +1665=3 5047.680175 916.960021 6.000000 0 +1927=3 5049.439941 920.479980 6.000000 0 +1928=3 5044.160156 918.719970 6.000000 0 +1929=3 5035.359863 918.719970 6.000000 0 +1930=3 5035.359863 916.960021 6.000000 0 +1931=3 5030.080078 915.200012 6.000000 0 +1932=3 5035.359863 922.239990 6.000000 0 +368=23 4996.640136 899.359985 7.500000 0 +1933=23 4996.640136 899.359985 9.000000 0 +1934=23 4996.640136 899.359985 10.500000 0 +1935=23 4996.640136 899.359985 12.000000 0 +1936=23 4996.640136 899.359985 13.500000 0 +1937=23 4996.640136 897.599975 13.500000 0 +1938=23 4996.640136 895.840026 13.500000 0 +1939=23 4996.640136 895.840026 12.000000 0 +1940=23 4996.640136 895.840026 10.500000 0 +1941=23 4996.640136 895.840026 9.000000 0 +1961=23 4996.640136 895.840026 7.500000 0 +1962=23 4996.640136 897.599975 10.500000 0 +1963=23 4996.640136 892.320007 7.500000 0 +1968=23 4996.640136 892.320007 9.000000 0 +1971=23 4996.640136 892.320007 10.500000 0 +1972=23 4996.640136 892.320007 12.000000 0 +1973=23 4996.640136 892.320007 13.500000 0 +1974=23 4996.640136 890.559997 7.500000 0 +1975=23 4996.640136 888.799987 7.500000 0 +1976=27 4996.640136 887.039978 6.000000 0 +1980=15 5104.000000 987.359985 6.000000 0 +1981=15 5104.000000 987.359985 7.500000 0 +1982=27 4996.640136 887.039978 10.500000 0 +1984=27 4996.640136 890.559997 10.500000 0 +1985=27 4996.640136 890.559997 9.000000 0 +1986=27 4996.640136 888.799987 9.000000 0 +1987=15 5112.799804 983.840026 9.000000 0 +1991=14 5156.799804 994.400024 6.000000 0 +2153=27 4996.640136 888.799987 12.000000 0 +2182=27 4996.640136 890.559997 12.000000 0 +2186=27 4996.640136 890.559997 13.500000 0 +2201=27 4996.640136 888.799987 13.500000 0 +2209=27 4996.640136 887.039978 13.500000 0 +2217=27 4996.640136 894.080017 7.500000 0 +2218=27 4996.640136 894.080017 9.000000 0 +2219=27 4996.640136 894.080017 10.500000 0 +2373=27 4996.640136 894.080017 12.000000 0 +2428=27 4996.640136 894.080017 13.500000 0 +2430=27 4996.640136 888.799987 15.000000 0 +2496=27 4996.640136 897.599975 12.000000 0 +2609=27 4996.640136 887.039978 15.000000 0 +2465=27 4996.640136 890.559997 15.000000 0 +2611=27 4996.640136 897.599975 9.000000 0 +2614=27 4996.640136 892.320007 15.000000 0 +2616=27 4996.640136 897.599975 7.500000 0 +2617=27 4996.640136 894.080017 15.000000 0 +2620=27 4996.640136 895.840026 15.000000 0 +2621=27 4996.640136 897.599975 15.000000 0 +2623=27 4996.640136 901.119995 12.000000 0 +2628=27 4996.640136 901.119995 13.500000 0 +2629=27 4996.640136 899.359985 15.000000 0 +2630=27 4996.640136 901.119995 15.000000 0 +2633=27 4996.640136 902.880004 15.000000 0 +2631=27 4996.640136 904.640014 15.000000 0 +2635=27 4996.640136 908.159973 15.000000 0 +2636=27 4996.640136 901.119995 7.500000 0 +2634=27 4996.640136 913.440002 15.000000 0 +2637=27 4996.640136 901.119995 9.000000 0 +2638=27 4996.640136 901.119995 10.500000 0 +2639=27 4996.640136 911.679992 12.000000 0 +2640=27 4996.640136 911.679992 13.500000 0 +2641=27 4996.640136 911.679992 15.000000 0 +2642=27 4996.640136 908.159973 13.500000 0 +2643=27 4996.640136 906.400024 15.000000 0 +2644=27 4996.640136 904.640014 7.500000 0 +2645=27 4996.640136 904.640014 9.000000 0 +2648=27 4996.640136 902.880004 9.000000 0 +2649=27 4996.640136 902.880004 7.500000 0 +2650=27 4996.640136 909.919982 15.000000 0 +2651=27 4996.640136 902.880004 12.000000 0 +2652=27 4996.640136 904.640014 12.000000 0 +2655=27 4996.640136 908.159973 7.500000 0 +2656=27 4996.640136 908.159973 9.000000 0 +2658=27 4996.640136 911.679992 9.000000 0 +2659=27 4996.640136 911.679992 10.500000 0 +2660=27 4996.640136 908.159973 12.000000 0 +2661=27 4996.640136 908.159973 10.500000 0 +2646=23 4996.640136 904.640014 10.500000 0 +2698=11 5060.000000 1096.479980 12.000000 0 +2699=3 5058.240234 1103.520019 6.000000 0 +2117=19 5065.279785 1073.599975 6.000000 0 +2142=19 5065.279785 1075.359985 6.000000 0 +2704=19 5065.279785 1071.839965 6.000000 0 +2705=23 5003.680175 971.520019 7.500000 0 +2706=22 5003.680175 971.520019 6.000000 0 +2762=22 5005.439941 971.520019 7.500000 0 +2653=14 4980.799804 922.239990 6.000000 0 +2662=14 4980.799804 924.000000 6.000000 0 +2664=14 4980.799804 920.479980 6.000000 0 +2665=14 4980.799804 918.719970 6.000000 0 +2666=14 4980.799804 916.960021 6.000000 0 +2667=14 4980.799804 915.200012 6.000000 0 +2668=14 4980.799804 913.440002 6.000000 0 +2669=14 4980.799804 911.679992 6.000000 0 +2670=14 4980.799804 909.919982 6.000000 0 +2671=14 4980.799804 906.400024 6.000000 0 +2673=14 4980.799804 908.159973 6.000000 0 +2674=14 4980.799804 904.640014 6.000000 0 +2675=14 4980.799804 902.880004 6.000000 0 +2676=14 4980.799804 899.359985 6.000000 0 +2677=14 4980.799804 901.119995 6.000000 0 +2680=14 4979.040039 899.359985 6.000000 0 +2663=14 4977.279785 899.359985 6.000000 0 +2684=14 4975.520019 899.359985 6.000000 0 +2685=14 4972.000000 899.359985 6.000000 0 +2687=14 4980.799804 925.760009 6.000000 0 +2688=14 4973.759765 899.359985 6.000000 0 +2689=14 4970.240234 899.359985 6.000000 0 +2690=14 4966.720214 899.359985 6.000000 0 +2691=14 4968.479980 899.359985 6.000000 0 +2693=14 4964.959960 899.359985 6.000000 0 +2696=14 4963.200195 899.359985 6.000000 0 +2697=14 4961.439941 899.359985 6.000000 0 +2763=14 4959.680175 899.359985 6.000000 0 +2765=14 4959.680175 901.119995 6.000000 0 +2876=14 4959.680175 902.880004 6.000000 0 +3127=14 4959.680175 909.919982 6.000000 0 +3131=14 4959.680175 908.159973 6.000000 0 +3321=14 4959.680175 911.679992 6.000000 0 +3323=14 4959.680175 913.440002 6.000000 0 +3846=14 4959.680175 916.960021 6.000000 0 +3934=14 4959.680175 915.200012 6.000000 0 +3935=14 4959.680175 918.719970 6.000000 0 +3936=14 4959.680175 922.239990 6.000000 0 +3937=14 4959.680175 920.479980 6.000000 0 +3938=14 4959.680175 924.000000 6.000000 0 +3267=14 4959.680175 925.760009 6.000000 0 +3268=14 4959.680175 929.280029 6.000000 0 +3939=14 4959.680175 927.520019 6.000000 0 +3940=14 4980.799804 927.520019 6.000000 0 +3941=14 4980.799804 929.280029 6.000000 0 +3942=14 4980.799804 931.039978 6.000000 0 +3943=14 4979.040039 932.799987 6.000000 0 +3944=14 4977.279785 932.799987 6.000000 0 +3945=14 4975.520019 932.799987 6.000000 0 +3946=14 4980.799804 932.799987 6.000000 0 +3947=14 4973.759765 932.799987 6.000000 0 +3950=14 4968.479980 932.799987 6.000000 0 +3951=14 4966.720214 932.799987 6.000000 0 +3953=14 4963.200195 932.799987 6.000000 0 +3954=14 4961.439941 932.799987 6.000000 0 +3956=14 4959.680175 932.799987 6.000000 0 +3957=14 4959.680175 931.039978 6.000000 0 +3949=14 4964.959960 932.799987 6.000000 0 +3952=14 4970.240234 932.799987 6.000000 0 +3958=14 4977.279785 932.799987 7.500000 0 +3955=14 4979.040039 932.799987 7.500000 0 +3967=2011 4968.479980 932.799987 7.500000 0 +3948=2010 4968.479980 934.559997 6.000000 90 +3964=14 4970.240234 932.799987 7.500000 0 +3965=14 4966.720214 932.799987 7.500000 0 +3968=14 4970.240234 932.799987 9.000000 0 +3975=14 4966.720214 932.799987 9.000000 0 +3963=12 5140.959960 987.359985 6.000000 0 +3966=12 5140.959960 985.599975 6.000000 0 +3976=12 5140.959960 983.840026 6.000000 0 +3977=12 5140.959960 982.080017 6.000000 0 +3978=14 4972.000000 932.799987 9.000000 0 +3986=14 4973.759765 932.799987 9.000000 0 +4704=12 5140.959960 980.320007 6.000000 0 +3981=14 4973.759765 932.799987 7.500000 0 +5398=12 5140.959960 989.119995 6.000000 0 +3962=12 5140.959960 990.880004 6.000000 0 +3979=12 5140.959960 992.640014 6.000000 0 +3980=12 5140.959960 994.400024 6.000000 0 +5581=14 4972.000000 932.799987 6.000000 0 +5697=12 5140.959960 996.159973 6.000000 0 +5400=14 4972.000000 932.799987 7.500000 0 +3969=12 5142.720214 980.320007 6.000000 0 +3970=12 5144.479980 980.320007 6.000000 0 +3973=12 5146.240234 980.320007 6.000000 0 +3971=12 5148.000000 980.320007 6.000000 0 +5698=12 5149.759765 980.320007 6.000000 0 +3985=12 5151.520019 980.320007 6.000000 0 +5699=12 5153.279785 980.320007 6.000000 0 +5700=12 5155.040039 980.320007 6.000000 0 +5701=12 5156.799804 980.320007 6.000000 0 +5702=20 4977.279785 925.760009 6.000000 0 +5703=20 4979.040039 925.760009 6.000000 0 +5704=20 4977.279785 929.280029 6.000000 0 +5705=20 4977.279785 927.520019 6.000000 0 +5706=12 5158.560058 980.320007 6.000000 0 +5708=12 5160.319824 980.320007 6.000000 0 +5707=20 4979.040039 929.280029 6.000000 0 +5709=12 5162.080078 980.320007 6.000000 0 +5710=12 5163.839843 980.320007 6.000000 0 +5711=12 5165.600097 980.320007 6.000000 0 +5713=12 5167.359863 980.320007 6.000000 0 +5714=20 4979.040039 924.000000 6.000000 0 +5715=20 4979.040039 927.520019 6.000000 0 +5717=20 4979.040039 922.239990 6.000000 0 +5720=20 4979.040039 918.719970 6.000000 0 +5722=20 4979.040039 920.479980 6.000000 0 +5724=20 4979.040039 931.039978 6.000000 0 +5725=20 4979.040039 916.960021 6.000000 0 +5721=20 4979.040039 915.200012 6.000000 0 +5727=20 4979.040039 913.440002 6.000000 0 +5718=20 4979.040039 911.679992 6.000000 0 +5726=20 4979.040039 909.919982 6.000000 0 +5730=20 4977.279785 931.039978 6.000000 0 +5731=20 4979.040039 908.159973 6.000000 0 +5732=20 4979.040039 904.640014 6.000000 0 +5734=20 4975.520019 931.039978 6.000000 0 +5736=20 4975.520019 929.280029 6.000000 0 +5737=20 4979.040039 906.400024 6.000000 0 +5738=20 4975.520019 927.520019 6.000000 0 +5740=20 4975.520019 925.760009 6.000000 0 +5741=20 4979.040039 902.880004 6.000000 0 +5742=20 4979.040039 901.119995 6.000000 0 +5743=20 4977.279785 922.239990 6.000000 0 +5744=20 4977.279785 901.119995 6.000000 0 +5745=20 4975.520019 922.239990 6.000000 0 +5746=20 4975.520019 901.119995 6.000000 0 +5747=20 4975.520019 924.000000 6.000000 0 +5748=20 4973.759765 901.119995 6.000000 0 +5749=20 4977.279785 924.000000 6.000000 0 +5735=20 4972.000000 901.119995 6.000000 0 +5751=20 4970.240234 901.119995 6.000000 0 +5750=20 4975.520019 918.719970 6.000000 0 +5752=20 4966.720214 901.119995 6.000000 0 +5753=20 4975.520019 920.479980 6.000000 0 +5739=20 4968.479980 901.119995 6.000000 0 +5754=20 4977.279785 920.479980 6.000000 0 +5755=20 4963.200195 901.119995 6.000000 0 +5757=20 4961.439941 901.119995 6.000000 0 +5756=20 4977.279785 918.719970 6.000000 0 +5758=20 4964.959960 901.119995 6.000000 0 +5759=20 4975.520019 916.960021 6.000000 0 +5760=20 4977.279785 916.960021 6.000000 0 +5761=20 4961.439941 902.880004 6.000000 0 +5762=20 4975.520019 915.200012 6.000000 0 +5763=20 4961.439941 904.640014 6.000000 0 +5764=20 4977.279785 915.200012 6.000000 0 +5765=20 4961.439941 908.159973 6.000000 0 +5767=20 4975.520019 911.679992 6.000000 0 +5768=20 4961.439941 909.919982 6.000000 0 +5769=20 4977.279785 913.440002 6.000000 0 +5770=20 4961.439941 911.679992 6.000000 0 +5771=20 4961.439941 913.440002 6.000000 0 +5772=20 4961.439941 916.960021 6.000000 0 +5773=20 4975.520019 913.440002 6.000000 0 +5774=20 4961.439941 915.200012 6.000000 0 +5775=20 4977.279785 911.679992 6.000000 0 +5776=20 4975.520019 908.159973 6.000000 0 +5777=20 4961.439941 920.479980 6.000000 0 +5778=20 4975.520019 909.919982 6.000000 0 +5779=12 5142.720214 996.159973 6.000000 0 +5780=20 4961.439941 918.719970 6.000000 0 +5781=20 4977.279785 909.919982 6.000000 0 +5782=12 5144.479980 996.159973 6.000000 0 +5783=20 4961.439941 922.239990 6.000000 0 +5784=20 4977.279785 908.159973 6.000000 0 +5785=12 5146.240234 996.159973 6.000000 0 +5787=20 4961.439941 924.000000 6.000000 0 +5788=12 5148.000000 996.159973 6.000000 0 +5789=20 4975.520019 906.400024 6.000000 0 +5790=20 4961.439941 927.520019 6.000000 0 +5786=12 5149.759765 996.159973 6.000000 0 +5791=20 4977.279785 906.400024 6.000000 0 +5792=12 5155.040039 996.159973 6.000000 0 +5795=20 4961.439941 925.760009 6.000000 0 +5796=20 4975.520019 904.640014 6.000000 0 +5797=20 4961.439941 931.039978 6.000000 0 +5798=20 4961.439941 929.280029 6.000000 0 +5799=12 5156.799804 996.159973 6.000000 0 +5800=12 5160.319824 996.159973 6.000000 0 +5801=20 4977.279785 904.640014 6.000000 0 +5802=12 5158.560058 996.159973 6.000000 0 +5803=20 4963.200195 931.039978 6.000000 0 +5804=20 4977.279785 902.880004 6.000000 0 +5805=20 4964.959960 931.039978 6.000000 0 +5806=12 5163.839843 996.159973 6.000000 0 +5807=20 4975.520019 902.880004 6.000000 0 +5808=12 5162.080078 996.159973 6.000000 0 +5809=20 4973.759765 902.880004 6.000000 0 +5810=20 4966.720214 931.039978 6.000000 0 +5811=20 4972.000000 904.640014 6.000000 0 +5812=20 4968.479980 931.039978 6.000000 0 +5813=12 5165.600097 996.159973 6.000000 0 +5816=12 5167.359863 996.159973 6.000000 0 +5815=20 4970.240234 931.039978 6.000000 0 +5818=20 4972.000000 908.159973 6.000000 0 +5819=20 4972.000000 931.039978 6.000000 0 +5820=20 4973.759765 908.159973 6.000000 0 +5821=20 4973.759765 931.039978 6.000000 0 +5814=20 4973.759765 929.280029 6.000000 0 +5822=20 4973.759765 904.640014 6.000000 0 +5823=20 4973.759765 927.520019 6.000000 0 +5824=20 4973.759765 906.400024 6.000000 0 +5825=20 4973.759765 925.760009 6.000000 0 +5826=20 4970.240234 906.400024 6.000000 0 +5793=20 4972.000000 906.400024 6.000000 0 +5827=20 4973.759765 924.000000 6.000000 0 +5794=20 4970.240234 904.640014 6.000000 0 +5828=20 4973.759765 922.239990 6.000000 0 +5830=20 4973.759765 920.479980 6.000000 0 +5831=20 4970.240234 902.880004 6.000000 0 +5832=20 4973.759765 918.719970 6.000000 0 +5833=20 4973.759765 916.960021 6.000000 0 +5829=12 5153.279785 996.159973 6.000000 0 +5834=20 4973.759765 915.200012 6.000000 0 +5835=20 4973.759765 913.440002 6.000000 0 +5836=20 4972.000000 902.880004 6.000000 0 +5837=20 4973.759765 909.919982 6.000000 0 +5838=20 4970.240234 908.159973 6.000000 0 +5839=12 5151.520019 996.159973 6.000000 0 +5840=20 4973.759765 911.679992 6.000000 0 +5841=20 4970.240234 909.919982 6.000000 0 +5843=20 4968.479980 902.880004 6.000000 0 +5844=20 4972.000000 911.679992 6.000000 0 +5845=20 4966.720214 902.880004 6.000000 0 +5842=20 4963.200195 902.880004 6.000000 0 +5847=20 4972.000000 909.919982 6.000000 0 +5846=20 4964.959960 902.880004 6.000000 0 +5848=20 4970.240234 911.679992 6.000000 0 +5849=20 4970.240234 913.440002 6.000000 0 +5850=20 4972.000000 915.200012 6.000000 0 +5851=20 4972.000000 913.440002 6.000000 0 +5852=20 4963.200195 904.640014 6.000000 0 +5853=20 4970.240234 915.200012 6.000000 0 +5854=20 4970.240234 916.960021 6.000000 0 +5855=20 4963.200195 906.400024 6.000000 0 +5856=20 4972.000000 918.719970 6.000000 0 +5857=20 4963.200195 908.159973 6.000000 0 +5858=20 4972.000000 916.960021 6.000000 0 +5859=20 4963.200195 909.919982 6.000000 0 +5860=20 4970.240234 918.719970 6.000000 0 +5861=20 4970.240234 920.479980 6.000000 0 +5862=20 4963.200195 911.679992 6.000000 0 +5863=20 4963.200195 915.200012 6.000000 0 +5864=20 4972.000000 922.239990 6.000000 0 +5865=20 4963.200195 913.440002 6.000000 0 +5866=20 4970.240234 922.239990 6.000000 0 +5867=20 4972.000000 920.479980 6.000000 0 +5868=20 4963.200195 916.960021 6.000000 0 +5869=20 4972.000000 924.000000 6.000000 0 +5870=20 4963.200195 918.719970 6.000000 0 +5871=20 4963.200195 922.239990 6.000000 0 +5872=20 4970.240234 925.760009 6.000000 0 +5873=20 4963.200195 920.479980 6.000000 0 +5874=20 4964.959960 925.760009 6.000000 0 +5875=20 4963.200195 925.760009 6.000000 0 +5876=20 4970.240234 924.000000 6.000000 0 +5877=20 4963.200195 924.000000 6.000000 0 +5878=20 4964.959960 924.000000 6.000000 0 +5879=20 4972.000000 927.520019 6.000000 0 +5880=20 4966.720214 922.239990 6.000000 0 +5882=20 4964.959960 922.239990 6.000000 0 +5883=20 4970.240234 929.280029 6.000000 0 +5885=20 4966.720214 927.520019 6.000000 0 +5881=20 4966.720214 925.760009 6.000000 0 +5886=20 4966.720214 924.000000 6.000000 0 +5817=20 4968.479980 924.000000 6.000000 0 +5728=20 4970.240234 927.520019 6.000000 0 +5716=20 4968.479980 927.520019 6.000000 0 +5719=20 4968.479980 925.760009 6.000000 0 +5712=20 4968.479980 929.280029 6.000000 0 +5729=20 4966.720214 929.280029 6.000000 0 +5733=20 4972.000000 925.760009 6.000000 0 +5884=20 4964.959960 929.280029 6.000000 0 +5887=20 4972.000000 929.280029 6.000000 0 +5723=20 4963.200195 927.520019 6.000000 0 +5888=20 4964.959960 927.520019 6.000000 0 +5889=20 4968.479980 920.479980 6.000000 0 +5890=20 4963.200195 929.280029 6.000000 0 +5891=20 4968.479980 922.239990 6.000000 0 +5892=20 4968.479980 918.719970 6.000000 0 +5893=20 4964.959960 918.719970 6.000000 0 +5894=20 4968.479980 916.960021 6.000000 0 +5895=20 4964.959960 920.479980 6.000000 0 +5896=20 4968.479980 915.200012 6.000000 0 +5897=20 4966.720214 918.719970 6.000000 0 +5898=20 4968.479980 913.440002 6.000000 0 +5899=20 4966.720214 920.479980 6.000000 0 +5900=20 4968.479980 909.919982 6.000000 0 +5904=20 4966.720214 916.960021 6.000000 0 +5901=20 4964.959960 913.440002 6.000000 0 +5908=20 4968.479980 911.679992 6.000000 0 +5902=20 4966.720214 915.200012 6.000000 0 +5905=20 4964.959960 915.200012 6.000000 0 +5903=20 4964.959960 916.960021 6.000000 0 +5909=20 4966.720214 913.440002 6.000000 0 +5910=20 4964.959960 909.919982 6.000000 0 +5911=20 4966.720214 909.919982 6.000000 0 +5914=20 4966.720214 911.679992 6.000000 0 +5913=20 4968.479980 906.400024 6.000000 0 +5915=20 4968.479980 908.159973 6.000000 0 +5918=20 4964.959960 911.679992 6.000000 0 +5919=20 4964.959960 906.400024 6.000000 0 +5920=20 4964.959960 908.159973 6.000000 0 +5921=20 4966.720214 908.159973 6.000000 0 +5917=20 4966.720214 906.400024 6.000000 0 +5923=20 4966.720214 904.640014 6.000000 0 +5925=20 4964.959960 904.640014 6.000000 0 +5926=20 4968.479980 904.640014 6.000000 0 +5924=14 5149.759765 990.880004 6.000000 0 +5928=14 5149.759765 994.400024 6.000000 0 +5929=14 5148.000000 989.119995 6.000000 0 +5930=14 5149.759765 989.119995 6.000000 0 +5907=14 5142.720214 989.119995 6.000000 0 +5931=14 5144.479980 989.119995 6.000000 0 +5932=14 5142.720214 990.880004 6.000000 0 +5933=14 5144.479980 990.880004 6.000000 0 +5934=14 5144.479980 992.640014 6.000000 0 +3960=14 5142.720214 994.400024 6.000000 0 +3959=14 4975.520019 932.799987 7.500000 0 +5935=14 5142.720214 992.640014 6.000000 0 +3961=14 5146.240234 990.880004 6.000000 0 +5939=14 5146.240234 994.400024 6.000000 0 +5942=14 5148.000000 994.400024 6.000000 0 +5945=14 5148.000000 992.640014 6.000000 0 +5912=14 5149.759765 985.599975 6.000000 0 +5916=14 5148.000000 985.599975 6.000000 0 +5940=14 5146.240234 985.599975 6.000000 0 +4710=14 5146.240234 989.119995 6.000000 0 +5943=14 5144.479980 985.599975 6.000000 0 +5944=14 5146.240234 987.359985 6.000000 0 +5946=14 5142.720214 985.599975 6.000000 0 +5947=14 5149.759765 987.359985 6.000000 0 +5948=14 5148.000000 987.359985 6.000000 0 +5949=14 5144.479980 982.080017 6.000000 0 +5950=14 5149.759765 982.080017 6.000000 0 +5951=14 5142.720214 983.840026 6.000000 0 +5952=14 5144.479980 983.840026 6.000000 0 +5953=14 5142.720214 982.080017 6.000000 0 +5954=14 5146.240234 982.080017 6.000000 0 +5956=14 5146.240234 983.840026 6.000000 0 +5955=14 5149.759765 983.840026 6.000000 0 +5957=14 5148.000000 983.840026 6.000000 0 +5958=14 5148.000000 982.080017 6.000000 0 +5959=14 4963.200195 932.799987 7.500000 0 +5960=14 4964.959960 932.799987 7.500000 0 +5961=14 4959.680175 931.039978 7.500000 0 +5962=14 4959.680175 932.799987 7.500000 0 +5963=14 4961.439941 932.799987 7.500000 0 +5964=14 4959.680175 927.520019 7.500000 0 +5965=14 4959.680175 929.280029 7.500000 0 +5966=14 4959.680175 925.760009 7.500000 0 +5967=14 4959.680175 922.239990 7.500000 0 +5968=14 4959.680175 924.000000 7.500000 0 +5969=2012 5148.000000 989.119995 7.500000 0 +5970=12 5144.479980 989.119995 7.500000 0 +5971=12 5146.240234 989.119995 7.500000 0 +5972=12 5149.759765 989.119995 7.500000 0 +5975=12 5140.959960 990.880004 7.500000 0 +5976=12 5140.959960 992.640014 7.500000 0 +5906=14 4959.680175 913.440002 7.500000 0 +2954=12 5140.959960 989.119995 7.500000 0 +2985=12 5142.720214 989.119995 7.500000 0 +5766=20 4961.439941 906.400024 6.000000 0 +5941=12 5142.720214 989.119995 9.000000 0 +5974=12 5140.959960 990.880004 9.000000 0 +6090=12 5151.520019 989.119995 10.500000 0 +6092=12 5155.040039 989.119995 7.500000 0 +6095=12 5153.279785 989.119995 10.500000 0 +6096=12 5155.040039 989.119995 10.500000 0 +6097=12 5156.799804 989.119995 7.500000 0 +6098=12 5158.560058 989.119995 7.500000 0 +6099=12 5158.560058 989.119995 9.000000 0 +6100=12 5156.799804 989.119995 9.000000 0 +6101=12 5156.799804 989.119995 10.500000 0 +6102=12 5158.560058 989.119995 10.500000 0 +6103=12 5158.560058 990.880004 7.500000 0 +6104=12 5158.560058 990.880004 9.000000 0 +6105=12 5158.560058 990.880004 10.500000 0 +6106=12 5158.560058 994.400024 7.500000 0 +6107=12 5158.560058 994.400024 9.000000 0 +6108=12 5158.560058 992.640014 7.500000 0 +6109=12 5158.560058 992.640014 9.000000 0 +6110=12 5158.560058 992.640014 10.500000 0 +6111=12 5158.560058 994.400024 10.500000 0 +6112=12 5158.560058 996.159973 7.500000 0 +6114=12 5158.560058 996.159973 10.500000 0 +6115=12 5156.799804 996.159973 7.500000 0 +6116=12 5155.040039 996.159973 7.500000 0 +6117=12 5155.040039 996.159973 9.000000 0 +6118=12 5156.799804 996.159973 9.000000 0 +6119=12 5155.040039 996.159973 10.500000 0 +6120=12 5156.799804 996.159973 10.500000 0 +6113=12 5158.560058 996.159973 9.000000 0 +6122=12 5153.279785 996.159973 7.500000 0 +6121=12 5151.520019 996.159973 7.500000 0 +6123=12 5153.279785 996.159973 9.000000 0 +6124=12 5153.279785 996.159973 10.500000 0 +6125=12 5151.520019 996.159973 9.000000 0 +6126=12 5151.520019 996.159973 10.500000 0 +6088=12 5153.279785 989.119995 7.500000 0 +6089=12 5153.279785 989.119995 9.000000 0 +6091=2012 5151.520019 989.119995 7.500000 0 +6093=31 5155.040039 989.119995 9.000000 0 +5987=31 5140.959960 992.640014 9.000000 0 +5973=31 5140.959960 989.119995 9.000000 0 +333=12 5035.359863 922.239990 6.000000 0 +334=14 4966.720214 932.799987 10.500000 0 +335=12 5128.640136 983.840026 6.000000 0 +336=14 4968.479980 932.799987 10.500000 0 +337=12 5128.640136 985.599975 6.000000 0 +339=12 5128.640136 989.119995 6.000000 0 +340=12 5128.640136 990.880004 6.000000 0 +341=12 5128.640136 992.640014 6.000000 0 +342=12 5128.640136 994.400024 6.000000 0 +345=12 5146.240234 989.119995 10.500000 0 +1778=14 5119.839843 985.599975 6.000000 0 +1779=14 5119.839843 987.359985 6.000000 0 +1793=12 5102.240234 983.840026 6.000000 0 +1794=12 5102.240234 985.599975 6.000000 0 +1795=12 5102.240234 987.359985 6.000000 0 +1797=15 5112.799804 983.840026 6.000000 0 +3255=14 5155.040039 987.359985 6.000000 0 +5504=14 5156.799804 982.080017 6.000000 0 +5922=14 5158.560058 982.080017 6.000000 0 +5927=14 5158.560058 983.840026 6.000000 0 +5936=14 5160.319824 982.080017 6.000000 0 +5937=14 5160.319824 983.840026 6.000000 0 +5938=14 5160.319824 985.599975 6.000000 0 +5648=14 5155.040039 989.119995 6.000000 0 +6001=12 5140.959960 989.119995 9.000000 0 +406=12 5140.959960 987.359985 7.500000 0 +3372=12 5140.959960 987.359985 9.000000 0 +5658=12 5140.959960 987.359985 10.500000 0 +5659=12 5140.959960 985.599975 6.000000 0 +323=12 5114.560058 982.080017 6.000000 0 +324=12 5116.319824 982.080017 6.000000 0 +1799=15 5107.520019 983.840026 6.000000 0 +1901=15 5112.799804 987.359985 7.500000 0 +1947=15 5104.000000 985.599975 6.000000 0 +3143=15 5112.799804 987.359985 9.000000 0 +3144=15 5112.799804 985.599975 9.000000 0 +5382=15 5105.759765 983.840026 9.000000 0 +5386=15 5104.000000 987.359985 9.000000 0 +3145=31 5109.279785 983.840026 9.000000 0 +3241=31 5107.520019 983.840026 9.000000 0 +5387=19 5111.040039 985.599975 6.000000 0 +5393=19 5111.040039 987.359985 6.000000 0 +5404=19 5109.279785 985.599975 6.000000 0 +5408=19 5109.279785 987.359985 6.000000 0 +5420=19 5107.520019 985.599975 6.000000 0 +5425=19 5105.759765 987.359985 6.000000 0 +5421=19 5105.759765 985.599975 6.000000 0 +5426=19 5107.520019 987.359985 6.000000 0 +5438=19 5105.759765 989.119995 6.000000 0 +5440=19 5105.759765 990.880004 6.000000 0 +5445=19 5107.520019 989.119995 6.000000 0 +3324=15 5104.000000 983.840026 9.000000 0 +5380=15 5104.000000 985.599975 9.000000 0 diff --git a/scriptfiles/plants.txt b/scriptfiles/plants.txt new file mode 100644 index 0000000..d3f8b2e --- /dev/null +++ b/scriptfiles/plants.txt @@ -0,0 +1,12 @@ +617 +659 +673 +732 +3506 +736 +685 +820 +821 +19473 +869 +870 \ No newline at end of file diff --git a/scriptfiles/stone.txt b/scriptfiles/stone.txt new file mode 100644 index 0000000..181c57b --- /dev/null +++ b/scriptfiles/stone.txt @@ -0,0 +1,7 @@ +4724 0 0 90 0.4 +19355 0 0 90 0.6 +19364 0 0 90 0.6 +19357 0 0 90 0.6 +19359 0 0 90 0.6 +19363 0 0 90 0.6 +19371 0 0 90 0.6 \ No newline at end of file diff --git a/scriptfiles/switch.txt b/scriptfiles/switch.txt new file mode 100644 index 0000000..285e4a9 --- /dev/null +++ b/scriptfiles/switch.txt @@ -0,0 +1,9 @@ +822 +1463 +897 +19091 +1649 +970 +1720 0 0 165 +617 +19133 0 0 90 1 \ No newline at end of file diff --git a/scriptfiles/wood.txt b/scriptfiles/wood.txt new file mode 100644 index 0000000..0afb571 --- /dev/null +++ b/scriptfiles/wood.txt @@ -0,0 +1,7 @@ +1224 0 0 0 0.6 +3260 0 0 0 0.6 +2988 0 0 90 0.5 +19376 0 0 90 0.6 +19378 0 0 90 0.6 +19379 0 0 90 0.6 +19356 0 0 90 0.6 \ No newline at end of file