diff --git a/README.md b/README.md index 5c05682..9aed4f5 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,21 @@ # tf-amongus + This repository is used for the TF2 gamemode based on [Among Us](http://www.innersloth.com/gameAmongUs.php). This gamemode has yet to be fully released and is currently in early testing. ## Requires + [morecolors.inc](https://forums.alliedmods.net/showthread.php?t=185016) [stocksoup/entity_prefabs.inc](https://github.com/nosoop/stocksoup/blob/master/tf/entity_prefabs.inc) +[CustomKeyValues](https://github.com/SlidyBat/CustomKeyValues) + [TF2Items](https://builds.limetech.io/?p=tf2items) ## References + [Sort Numbers](https://forums.alliedmods.net/showthread.php?t=187237) (References code for sorting votes) [Sapper Immunity](https://forums.alliedmods.net/showthread.php?p=1329948) (Sapper functionality) @@ -21,9 +26,12 @@ This gamemode has yet to be fully released and is currently in early testing. [TF2 Events Need Help](https://forums.alliedmods.net/showpost.php?p=862230&postcount=6) (Used to detect TF2 round state) -[Map Trigger Condition](https://forums.alliedmods.net/showthread.php?t=257579) (Will be used to detect map triggers) +[Map Trigger Condition](https://forums.alliedmods.net/showthread.php?t=257579) (Used to detect map triggers) + +[Emergency Button](https://tf2maps.net/threads/emergency-button.42837/) (Included in example map) ## Credits + [TeamPopplio](https://github.com/TeamPopplio/) (Main development) [IceboundCat6](https://www.reddit.com/user/IceboundCat6) (Original idea on [Reddit](https://www.reddit.com/r/tf2/comments/j7gznz/tf2_among_us_gamemode_idea/)) diff --git a/addons/sourcemod/scripting/amongus.sp b/addons/sourcemod/scripting/amongus.sp index 85d2810..5c1103d 100644 --- a/addons/sourcemod/scripting/amongus.sp +++ b/addons/sourcemod/scripting/amongus.sp @@ -21,6 +21,7 @@ SourcePawn Help - puntero #include #include #include +#include #include #include //should we still undef extensions? no documentation... @@ -38,7 +39,7 @@ SourcePawn Help - puntero #define MAJOR_REVISION "0" #define MINOR_REVISION "1" -#define STABLE_REVISION "7" +#define STABLE_REVISION "8" #define PLUGIN_VERSION MAJOR_REVISION..."."...MINOR_REVISION..."."...STABLE_REVISION enum PlayerState @@ -99,13 +100,37 @@ enum RoundStart RoundStart_NotEnoughPlayers //not enough players to start; allow microphone/chat }; +enum VentState +{ + VentState_Crewmate = 0, //player is not allowed to use vents + VentState_NoVent, //player is not using vents + VentState_OnTopOfVent, //player is on top of a vent + VentState_InsideVent //player is inside of a vent +}; + +enum EmergencyButtonState +{ + Emergency_NotNearButton = 0, + Emergency_NextToButton +}; + + Reason currentMeeting = Reason_NoMeeting; PlayerState playerState[MAXPLAYERS +1]; VotingState g_votingState = VotingState_NoVote; RoundStart startOfRound = RoundStart_Ended; +VentState ventState[MAXPLAYERS +1]; +EmergencyButtonState emergencyButton[MAXPLAYERS +1]; char voteAnnouncer[MAX_NAME_LENGTH]; +char g_ventLocation1Name[MAX_NAME_LENGTH]; +char g_ventLocation2Name[MAX_NAME_LENGTH]; + +int g_ventDoors[MAXPLAYERS +1] = -1; +int g_ventLocation1[MAXPLAYERS +1] = -1; +int g_ventLocation2[MAXPLAYERS +1] = -1; +int emergencyUses[MAXPLAYERS +1]; int g_knifeCount[MAXPLAYERS +1]; int g_playerSkin[MAXPLAYERS +1]; int activeImpostors = 0; @@ -115,6 +140,8 @@ int votePlayerCorelation[MAXPLAYERS +1]; //reverse: key = vote id, value = user int voteStorage[MAXPLAYERS +2]; //plus 1 extra because last slot will be used for skip int firstVote; //used for ejection int secondVote; //used to test for a tie +int iSkin = 0; +int mapEmergencyButtonId = -1; Handle g_hHud; Handle persistentUITimer[MAXPLAYERS +1]=INVALID_HANDLE; @@ -128,6 +155,7 @@ ConVar preVotingCount; ConVar votingCount; ConVar ejectionCount; ConVar anonymousEjection; +ConVar emergencyButtonMaxUses; ConVar friendlyFire; ConVar unbalanceLimit; @@ -142,7 +170,7 @@ ArrayList g_aSpawnPoints; public Plugin myinfo = { name = "[TF2] Among Us", - author = "TeamPopplio, IceboundCat6", + author = "TeamPopplio, IceboundCat6, puntero", description = "Among Us in TF2!", version = PLUGIN_VERSION, url = "https://github.com/TeamPopplio/tf-amongus" @@ -156,6 +184,25 @@ public void OnMapStart() PrecacheSound(EMERGENCY_SOUND, true); PrecacheSound(KILL_SOUND, true); PrecacheSound(SPAWN_SOUND, true); + int ent = -1; + if(g_aSpawnPoints == null) + { + g_aSpawnPoints = new ArrayList(); + while((ent = FindEntityByClassname(ent, "info_player_teamspawn")) != -1) + { + g_aSpawnPoints.Push(ent); + } + } + while((ent = FindEntityByClassname(ent, "prop_dynamic")) != -1) //find the emergency button + { + char targetName[32]; + GetEntPropString(ent, Prop_Data, "m_iName", targetName, sizeof(targetName)); + if(StrContains(targetName,"emergency_button") != -1) + { + mapEmergencyButtonId = ent; + break; //this might break anything below this portion of the script... oh well + } + } } public OnConfigsExecuted() @@ -165,6 +212,18 @@ public OnConfigsExecuted() Steam_SetGameDescription(gameDesc); } +public void OnPluginEnd() +{ + LogMessage("[TF2] Among Us - Unloading! (v%s)", PLUGIN_VERSION); + for(new i = 1; i <= MaxClients; i++) + { + if(persistentUITimer[i] != INVALID_HANDLE) + { + KillTimer(persistentUITimer[i],false); //kill timer so changelevel doesn't break the plugin + } + } +} + public void OnPluginStart() { LogMessage("[TF2] Among Us - Initalizing! (v%s)", PLUGIN_VERSION); @@ -184,6 +243,7 @@ public void OnPluginStart() votingCount = CreateConVar("sm_amongus_votingtimer", "30", "Sets how many seconds a vote should last before ejection."); ejectionCount = CreateConVar("sm_amongus_ejectiontimer", "10", "Sets how many seconds ejection should last."); anonymousEjection = CreateConVar("sm_amongus_anonymousejection", "0", "Enable (1) or disable (0) anonymous ejection."); + emergencyButtonMaxUses = CreateConVar("sm_amongus_maxemergencies", "2", "Sets the maximum amount of emergencies a single player can call."); friendlyFire = FindConVar("mp_friendlyfire"); unbalanceLimit = FindConVar("mp_teams_unbalance_limit"); @@ -203,6 +263,9 @@ public void OnPluginStart() HookEvent("player_disconnect", Event_PlayerDisconnect, EventHookMode_Post); HookEvent("player_sapped_object", Event_Sapped, EventHookMode_Post); + HookEntityOutput("trigger_multiple", "OnStartTouch", OnTriggerMultiple); + HookEntityOutput("trigger_multiple", "OnEndTouch", OnTriggerMultipleEnd); + // --- Command Listeners AddCommandListener(Listener_Voice, "voicemenu"); @@ -220,6 +283,8 @@ public void OnPluginStart() // --- Misc. + voiceEnable.Flags &= ~FCVAR_NOTIFY; //disable serverwide "Server cvar ... changed to x" + SetConVarBool(friendlyFire,true); SetConVarBool(unbalanceLimit,false); SetConVarBool(forceAutoTeam,false); @@ -231,6 +296,134 @@ public void OnPluginStart() GetConVarString(versionCvar, oldVersion, sizeof(oldVersion)); if(strcmp(oldVersion, PLUGIN_VERSION, false)) PrintToServer("[TF2] Among Us - Your config may be outdated. Back up tf/cfg/sourcemod/AmongUs.cfg and delete it, this plugin will generate a new one that you can then modify to your original values."); + + //adding here for redundancy in case plugin is hotloaded + if(g_aSpawnPoints == null) + { + int ent = -1; + g_aSpawnPoints = new ArrayList(); + while((ent = FindEntityByClassname(ent, "info_player_teamspawn")) != -1) + { + g_aSpawnPoints.Push(ent); + } + } +} + +//venting for impostor +// https://forums.alliedmods.net/showpost.php?p=2258820&postcount=4 + +public void OnTriggerMultiple(const String:output[], caller, activator, Float:delay) { + char targetName[32]; + GetEntPropString(caller, Prop_Data, "m_iName", targetName, sizeof(targetName)); + if(StrContains(targetName, "trigger_emergencybutton", false) != -1 && IsValidClient(activator)) + { + if (ventState[activator] != VentState_InsideVent && startOfRound == RoundStart_Ongoing && playerState[activator] != State_Ghost && playerState[activator] != State_ImpostorGhost && TF2_GetClientTeam(activator) == TFTeam_Red) + { + emergencyButton[activator] = Emergency_NextToButton; + } + } + else if (StrContains(targetName, "vent_", false) != -1 && IsValidClient(activator)) + { + if (ventState[activator] != VentState_Crewmate && TF2_GetClientTeam(activator) == TFTeam_Red) + { + int ent = -1; + char ventDoor[MAX_NAME_LENGTH]; + char ventLoc1[MAX_NAME_LENGTH]; + char ventLoc2[MAX_NAME_LENGTH]; + ventState[activator] = VentState_OnTopOfVent; + GetCustomKeyValue(caller, "ventdoor", ventDoor, sizeof(ventDoor)); + GetCustomKeyValue(caller, "ventlocation1", ventLoc1, sizeof(ventLoc1)); + GetCustomKeyValue(caller, "ventlocation2", ventLoc2, sizeof(ventLoc2)); + GetCustomKeyValue(caller, "ventlocation1_name", g_ventLocation1Name[activator], MAX_NAME_LENGTH); + GetCustomKeyValue(caller, "ventlocation2_name", g_ventLocation2Name[activator], MAX_NAME_LENGTH); + while ((ent = FindEntityByClassname(ent, "func_door")) != -1) + { + char door[MAX_NAME_LENGTH]; + GetEntPropString(ent, Prop_Data, "m_iName", door, sizeof(door)); + if(StrEqual(door,ventDoor)) + g_ventDoors[activator] = ent; + } + while ((ent = FindEntityByClassname(ent, "info_teleport_destination")) != -1) + { + char tele[MAX_NAME_LENGTH]; + GetEntPropString(ent, Prop_Data, "m_iName", tele, sizeof(tele)); + if(StrEqual(tele,ventLoc1)) + g_ventLocation1[activator] = ent; + if(StrEqual(tele,ventLoc2)) + g_ventLocation2[activator] = ent; + } + } + } +} + +public void OnTriggerMultipleEnd(const String:output[], caller, activator, Float:delay) { + char targetName[32]; + GetEntPropString(caller, Prop_Data, "m_iName", targetName, sizeof(targetName)); + if(StrContains(targetName, "trigger_emergencybutton", false) != -1 && IsValidClient(activator)) + { + emergencyButton[activator] = Emergency_NotNearButton; + } + else if (StrContains(targetName, "vent_", false) != -1 && IsValidClient(activator)) + { + if (ventState[activator] == VentState_OnTopOfVent && TF2_GetClientTeam(activator) == TFTeam_Red) + { + ventState[activator] = VentState_NoVent; + g_ventDoors[activator] = -1; + g_ventLocation1[activator] = -1; + g_ventLocation2[activator] = -1; + } + } +} + +public int VentHandler1 (Menu menu, MenuAction action, int client, int param2) +{ + char info[MAX_NAME_LENGTH]; + menu.GetItem(param2, info, sizeof(info)); + if (action == MenuAction_Select) + { + int votedFor = StringToInt(info); + float seq1Origin[3]; + float seq1Angles[3]; + switch(votedFor) + { + case 1: + { + GetEntPropVector(g_ventLocation1[client], Prop_Send, "m_vecOrigin", seq1Origin); + GetEntPropVector(g_ventLocation1[client], Prop_Send, "m_angRotation", seq1Angles); + TeleportEntity(client,seq1Origin,seq1Angles,NULL_VECTOR); + } + case 2: + { + GetEntPropVector(g_ventLocation2[client], Prop_Send, "m_vecOrigin", seq1Origin); + GetEntPropVector(g_ventLocation2[client], Prop_Send, "m_angRotation", seq1Angles); + TeleportEntity(client,seq1Origin,seq1Angles,NULL_VECTOR); + } + default: + { + if(IsValidEntity(g_ventDoors[client])) + AcceptEntityInput(g_ventDoors[client], "Open", -1, -1, -1); + ventState[client] = VentState_OnTopOfVent; + SetEntityMoveType(client, MOVETYPE_WALK); + } + } + return 1; + } + return 0; +} + +public void DrawVentPanels(client) +{ + Menu panel = new Menu(VentHandler1); + panel.SetTitle("Vent"); + panel.AddItem("0", "Leave"); + panel.AddItem("1", g_ventLocation1Name[client]); + if(!StrEqual(g_ventLocation1Name[client],"")) + panel.AddItem("2", g_ventLocation2Name[client]); + panel.ExitButton = false; + if(IsValidClient(client) && ventState[client] == VentState_InsideVent) + { + panel.Display(client,1000); + } } //this is just base code for tasks when they get added @@ -238,57 +431,117 @@ public void OnPluginStart() public Action Event_Sapped(Handle:event, const String:name[], bool:dontBroadcast) { //ownerid is gonna be an invalid client because it's a map placed entity - new sapper = GetEventInt(event, "sapperid"); + int sapper = GetEventInt(event, "sapperid"); if(IsValidEntity(sapper)) AcceptEntityInput(sapper, "Kill"); } +//when players call medic or any other voice commands public Action Listener_Voice(client, const String:command[], argc) { if(playerState[client] == State_Ghost || playerState[client] == State_ImpostorGhost) return Plugin_Handled; - - int entity = GetClientAimTarget(client, false); - char targetname[128]; - int skin; - char classname[MAX_NAME_LENGTH]; - - if (IsValidEntity(entity)) + + switch(ventState[client]) { - GetEntPropString(entity, Prop_Data, "m_iClassname", classname, sizeof(classname)); - if(StrEqual(classname,"prop_dynamic")) + case VentState_OnTopOfVent: { - GetEntPropString(entity, Prop_Data, "m_iName", targetname, sizeof(targetname)); - skin = GetEntProp(entity, Prop_Data, "m_nSkin"); - if(StrEqual(targetname,"deadbody",true)) + if(IsValidEntity(g_ventDoors[client])) + AcceptEntityInput(g_ventDoors[client], "Open", -1, -1, -1); + ventState[client] = VentState_InsideVent; + SetEntityMoveType(client, MOVETYPE_NONE); + } + default: + { + switch(emergencyButton[client]) { - if(g_votingState == VotingState_NoVote) + case Emergency_NextToButton: { - AcceptEntityInput(entity, "ClearParent"); - AcceptEntityInput(entity, "Kill"); - StartMeeting(client, Reason_FoundBody, skin); + DrawEmergencyPanel(client); + } + default: + { + int entity = GetClientAimTarget(client, false); + char targetname[128]; + int skin; + char classname[MAX_NAME_LENGTH]; + + if (IsValidEntity(entity)) + { + GetEntPropString(entity, Prop_Data, "m_iClassname", classname, sizeof(classname)); + if(StrEqual(classname,"prop_dynamic")) + { + GetEntPropString(entity, Prop_Data, "m_iName", targetname, sizeof(targetname)); + skin = GetEntProp(entity, Prop_Data, "m_nSkin"); + if(StrEqual(targetname,"deadbody",true)) + { + if(g_votingState == VotingState_NoVote) + { + AcceptEntityInput(entity, "ClearParent"); + AcceptEntityInput(entity, "Kill"); + StartMeeting(client, Reason_FoundBody, skin); + } + } + } + } } } } } - return Plugin_Handled; } +//emergency button stuffz +public void DrawEmergencyPanel(client) +{ + Menu panel = new Menu(EmergencyHandler1); + char call[MAX_NAME_LENGTH] = ""; + if(emergencyUses[client] >= 1) + Format(call,sizeof(call),"Call emergency meeting (%d remaining)",emergencyUses[client]); + else + Format(call,sizeof(call),"Can't call an emergency meeting! (%d remaining)",emergencyUses[client]); + panel.SetTitle("Emergency Button"); + panel.AddItem("0", call); + panel.ExitButton = true; + if(IsValidClient(client)) + { + panel.Display(client,60); + } +} + +public int EmergencyHandler1 (Menu menu, MenuAction action, int client, int param2) +{ + char info[MAX_NAME_LENGTH]; + menu.GetItem(param2, info, sizeof(info)); + if (action == MenuAction_Select && playerState[client] != State_Ghost && playerState[client] != State_ImpostorGhost && ventState[client] != VentState_InsideVent && emergencyButton[client] == Emergency_NextToButton) + { + SetVariantString("push"); + if(IsValidEntity(mapEmergencyButtonId)) + AcceptEntityInput(mapEmergencyButtonId,"SetAnimation"); + StartMeeting(client, Reason_EmergencyButton, 0); + emergencyUses[client]--; + return 1; + } + return 0; +} + //make sure the round doesn't linger when people leave public Action Event_PlayerDisconnect(Handle:event, String:name[], bool:dontBroadcast) { new client = GetClientOfUserId(GetEventInt(event, "userid")); persistentUITimer[client] = null; - if(TF2_GetClientTeam(client) == TFTeam_Spectator) - return Plugin_Continue; - if(playerState[client] == State_Impostor) - activeImpostors--; - if(activeImpostors == 0) //player was last impostor - RoundWon(State_Crewmate); - else if(GetNonGhostTeamCount(TFTeam_Red)-1 <= 2) - RoundWon(State_Impostor); - + if(IsValidClient) + { + if(TF2_GetClientTeam(client) == TFTeam_Spectator) + return Plugin_Continue; + if(playerState[client] == State_Impostor) + activeImpostors--; + if(activeImpostors == 0) //player was last impostor + RoundWon(State_Crewmate); + else if(GetNonGhostTeamCount(TFTeam_Red)-1 <= 2) + RoundWon(State_Impostor); + } + return Plugin_Handled; } @@ -370,29 +623,71 @@ stock int GetTFTeamCount(TFTeam tfteam) //set player to spy upon spawn public Action OnPlayerSpawn(Handle hEvent, char[] strEventName, bool bDontBroadcast) { - int iClient = GetClientOfUserId(GetEventInt(hEvent, "userid")); - if (!IsValidClient(iClient)) return Plugin_Handled; - if(startOfRound == RoundStart_Ended || startOfRound == RoundStart_NotEnoughPlayers || GetTFTeamCount(TFTeam_Red) <= requiredToStart.IntValue || g_knifeCount[iClient] == -3) + int Client = GetClientOfUserId(GetEventInt(hEvent, "userid")); + char iSkinName[MAX_NAME_LENGTH]; + if (!IsValidClient(Client)) return Plugin_Handled; + if(GetClientCount(true) >= requiredToStart.IntValue && startOfRound == RoundStart_Ended) + startOfRound = RoundStart_Starting; + if(startOfRound == RoundStart_Starting || GetTFTeamCount(TFTeam_Red) <= requiredToStart.IntValue || g_knifeCount[Client] == -3) { - TF2_ChangeClientTeam(iClient,TFTeam_Red); - TF2_SetPlayerClass(iClient, TFClass_Spy, false, true); - TF2_RegeneratePlayer(iClient); - TF2_RemoveWeaponSlot(iClient,0); //revolver - TF2_RemoveWeaponSlot(iClient,3); //disguise kit? - TF2_RemoveWeaponSlot(iClient,4); //why are - TF2_RemoveWeaponSlot(iClient,5); //there seven - TF2_RemoveWeaponSlot(iClient,6); //weapon slots + TF2_RegeneratePlayer(Client); + g_knifeCount[Client] = -3; //crewmates shouldn't have a knife count + SetClientListeningFlags(Client, VOICE_MUTED); + TF2_ChangeClientTeam(Client,TFTeam_Red); + TF2_SetPlayerClass(Client, TFClass_Spy, false, true); + TF2_RemoveWeaponSlot(Client,0); //revolver + TF2_RemoveWeaponSlot(Client,3); //disguise kit? + TF2_RemoveWeaponSlot(Client,4); //why are + TF2_RemoveWeaponSlot(Client,5); //there seven + TF2_RemoveWeaponSlot(Client,6); //weapon slots + EmitSoundToClient(Client, SPAWN_SOUND); + voteStorage[Client] = 0; + emergencyUses[Client] = emergencyButtonMaxUses.IntValue; + ventState[Client] = VentState_Crewmate; + playerState[Client] = State_Crewmate; + SDKUnhook(Client, SDKHook_OnTakeDamage, OnTakeDamage); + SDKUnhook(Client,SDKHook_SetTransmit,Hook_SetTransmitVent); + SDKUnhook(Client,SDKHook_SetTransmit,Hook_SetTransmit); + SetVariantString(SPY_MODEL); //let's get our custom model in + AcceptEntityInput(Client, "SetCustomModel"); //yeah set it in place :) + SetEntProp(Client, Prop_Send, "m_bUseClassAnimations", 1); //enable animations otherwise you will be threatened by the living dead + SetEntProp(Client, Prop_Send, "m_bForcedSkin", 1); //enable changing the skin + SetEntProp(Client, Prop_Send, "m_nForcedSkin", iSkin); //set the skin + SkinSwitch(iSkin, Skin_NameWithSkin, iSkinName); + PrintCenterText(Client,"%t (%s)","state_crewmate",iSkinName); + SetEntityRenderMode(Client, RENDER_TRANSCOLOR); //allow for transparency + SetEntityRenderColor(Client, 255, 255, 255, 255); //set as opaque for now, maybe not a good idea this early but meh + g_playerSkin[Client] = iSkin; + int seq = g_aSpawnPoints.Get(iSkin); + if(seq > MaxClients && IsValidEntity(seq)) + { + float seqOrigin[3]; + float seqAngles[3]; + GetEntPropVector(seq, Prop_Send, "m_vecOrigin", seqOrigin); + GetEntPropVector(seq, Prop_Send, "m_angRotation", seqAngles); + TeleportEntity(Client,seqOrigin,seqAngles,NULL_VECTOR); //let's teleport the player to a sequential spawn point + } + if(iSkin < 11) + iSkin++; + else + iSkin = 0; //we don't want all subsequent colors to be default (red?) if there are more than 32 players, so reset the counter + SDKHook(Client, SDKHook_OnTakeDamage, OnTakeDamage); + if(persistentUITimer[Client] != INVALID_HANDLE) + { + KillTimer(persistentUITimer[Client],false); //kill or suffer the pain of eventual near-instant timers + } + persistentUITimer[Client] = CreateTimer(1.0, UITimer, GetClientUserId(Client), TIMER_REPEAT); //this should be the one and only UI timer for the client, for now } else if(startOfRound == RoundStart_NotEnoughPlayers && GetClientCount(true) >= requiredToStart.IntValue) RoundWon(State_Ghost); else { - TF2_ChangeClientTeam(iClient,TFTeam_Spectator); - PrintToChat(iClient,"%t","ongoing"); + TF2_ChangeClientTeam(Client,TFTeam_Spectator); + PrintToChat(Client,"%t","ongoing"); } return Plugin_Handled; } - + public int VoteHandler1 (Menu menu, MenuAction action, int param1, int param2) { char info[MAX_NAME_LENGTH]; @@ -440,7 +735,7 @@ public void DrawVotingPanels(client) votePlayerCorelation[i+1] = GetClientUserId(i); char name[MAX_NAME_LENGTH]; char itemnum[255]; - IntToString(i+1,itemnum,2); //this is causing some votes to count as "skipped" when they aren't? + IntToString(i+1,itemnum,32); //this is causing some votes to count as "skipped" when they aren't? char nameOfBody[MAX_NAME_LENGTH]; SkinSwitch(i, Skin_Name, nameOfBody); if((playerState[i] == State_Impostor && playerState[client] == State_Impostor) || (playerState[i] == State_ImpostorGhost && playerState[client] == State_ImpostorGhost)) @@ -468,7 +763,7 @@ public void StartMeeting(int announcer, Reason reason, int skinOfBody) return; if(reason == Reason_NoMeeting) return; - int iSkin = 0; //0 - 11 + iSkin = 0; char nameOfBody[MAX_NAME_LENGTH]; SkinSwitch(skinOfBody, Skin_NameWithSkin, nameOfBody); Format(voteAnnouncer,MAX_NAME_LENGTH,"%N",announcer); @@ -507,6 +802,7 @@ public void StartMeeting(int announcer, Reason reason, int skinOfBody) SetEntityMoveType(Client, MOVETYPE_NONE); } } + PrintToChatAll("%t","unmuted"); g_votingState = VotingState_PreVoting; CreateTimer(preVotingCount.FloatValue, VoteTimer); } @@ -525,6 +821,7 @@ public Action VoteTimer(Handle timer) DrawVotingPanels(i); SetEntityMoveType(i, MOVETYPE_NONE); voteCounter[i] = votingCount.IntValue; + SetClientListeningFlags(i, VOICE_NORMAL); } } CreateTimer(votingCount.FloatValue, VoteTimer); //can we do recursive? @@ -565,8 +862,10 @@ public Action VoteTimer(Handle timer) voteCounter[i] = ejectionCount.IntValue; alreadyVoted[i] = 0; voteStorage[i] = 0; + SetClientListeningFlags(i, VOICE_MUTED); } } + PrintToChatAll("%t","shh"); voteStorage[MAXPLAYERS+1] = 0; //clear skip votes SetConVarBool(voiceEnable,false); CreateTimer(ejectionCount.FloatValue, VoteTimer); //I don't feel so good... @@ -582,7 +881,10 @@ public Action VoteTimer(Handle timer) switch(playerState[i]) { case State_Impostor: + { g_knifeCount[i] = knifeConVarCount.IntValue; + SetEntityMoveType(i, MOVETYPE_WALK); + } case State_Ghost: SetEntityMoveType(i, MOVETYPE_NOCLIP); case State_ImpostorGhost: @@ -615,66 +917,17 @@ public Action GameStart(Handle event, char[] name, bool:Broadcast) { currentMeeting = Reason_NoMeeting; g_votingState = VotingState_NoVote; voteStorage[MAXPLAYERS+1] = 0; //clear skip votes - //we need to fill this table once more? - g_aSpawnPoints = new ArrayList(); - int ent = -1; - while((ent = FindEntityByClassname(ent, "info_player_teamspawn")) != -1) - { - g_aSpawnPoints.Push(ent); - } //find out who is the impostor if there are enough players //this is bad code if(GetClientCount(true) >= requiredToStart.IntValue) { - int iSkin = 0; //0 - 11 char iSkinName[MAX_NAME_LENGTH]; for(new Client = 1; Client <= MaxClients; Client++) { if(IsValidClient(Client)) { - SkinSwitch(Client, Skin_Name, iSkinName); - g_knifeCount[Client] = -3; //crewmates shouldn't have a knife count - SetClientListeningFlags(Client, VOICE_NORMAL); TF2_ChangeClientTeam(Client,TFTeam_Red); - TF2_SetPlayerClass(Client, TFClass_Spy, false, true); - TF2_RemoveWeaponSlot(Client,0); //revolver - TF2_RemoveWeaponSlot(Client,3); //disguise kit? - TF2_RemoveWeaponSlot(Client,4); //why are - TF2_RemoveWeaponSlot(Client,5); //there seven - TF2_RemoveWeaponSlot(Client,6); //weapon slots - EmitSoundToClient(Client, SPAWN_SOUND); - PrintCenterText(Client,"%t (%s)","state_crewmate",iSkinName); - voteStorage[Client] = 0; - playerState[Client] = State_Crewmate; - SDKUnhook(Client, SDKHook_OnTakeDamage, OnTakeDamage); - SDKUnhook(Client,SDKHook_SetTransmit,Hook_SetTransmit); - SetVariantString(SPY_MODEL); //let's get our custom model in - AcceptEntityInput(Client, "SetCustomModel"); //yeah set it in place :) - SetEntProp(Client, Prop_Send, "m_bUseClassAnimations", 1); //enable animations otherwise you will be threatened by the living dead - SetEntProp(Client, Prop_Send, "m_bForcedSkin", 1); //enable changing the skin - SetEntProp(Client, Prop_Send, "m_nForcedSkin", iSkin); //set the skin - SetEntityRenderMode(Client, RENDER_TRANSCOLOR); //allow for transparency - SetEntityRenderColor(Client, 255, 255, 255, 255); //set as opaque for now, maybe not a good idea this early but meh - g_playerSkin[Client] = iSkin; - int seq = g_aSpawnPoints.Get(iSkin); - if(seq > MaxClients && IsValidEntity(seq)) - { - float seqOrigin[3]; - float seqAngles[3]; - GetEntPropVector(seq, Prop_Send, "m_vecOrigin", seqOrigin); - GetEntPropVector(seq, Prop_Send, "m_angRotation", seqAngles); - TeleportEntity(Client,seqOrigin,seqAngles,NULL_VECTOR); //let's teleport the player to a sequential spawn point - } - if(iSkin < 11) - iSkin++; - else - iSkin = 0; //we don't want all subsequent colors to be default (red?) if there are more than 32 players, so reset the counter - SDKHook(Client, SDKHook_OnTakeDamage, OnTakeDamage); - if(persistentUITimer[Client] != INVALID_HANDLE) - { - KillTimer(persistentUITimer[Client],false); //kill or suffer the pain of eventual near-instant timers - } - persistentUITimer[Client] = CreateTimer(1.0, UITimer, GetClientUserId(Client), TIMER_REPEAT); //this should be the one and only UI timer for the client, for now + TF2_RespawnPlayer(Client); } } for(new Impostor = 1; Impostor <= impostorCount.IntValue; Impostor++) @@ -686,11 +939,13 @@ public Action GameStart(Handle event, char[] name, bool:Broadcast) { } while(!IsClientInGame(randomClient) || TF2_GetClientTeam(randomClient) != TFTeam_Red || playerState[randomClient] == State_Impostor); SkinSwitch(randomClient, Skin_Name, iSkinName); + ventState[randomClient] = VentState_NoVent; playerState[randomClient] = State_Impostor; PrintCenterText(randomClient,"%t (%s)","state_impostor",iSkinName); int glow = TF2_AttachBasicGlow(randomClient, TFTeam_Red); //impostors get a nice glow effect SetEntityRenderColor(glow, 255, 0, 0, 0); SDKHook(glow,SDKHook_SetTransmit,Hook_SetTransmitImpostor); + SDKHook(randomClient,SDKHook_SetTransmit,Hook_SetTransmitVent); } CreateTimer(5.0,TransitionToRoundStart); } @@ -797,22 +1052,59 @@ public Action UITimer(Handle timer, int userid) } default: { + int entity = GetClientAimTarget(client, false); + char targetname[128]; + char classname[MAX_NAME_LENGTH]; + char reportBody[MAX_NAME_LENGTH] = ""; + char emergency[MAX_NAME_LENGTH] = ""; + if (IsValidEntity(entity)) + { + GetEntPropString(entity, Prop_Data, "m_iClassname", classname, sizeof(classname)); + if(StrEqual(classname,"prop_dynamic")) + { + GetEntPropString(entity, Prop_Data, "m_iName", targetname, sizeof(targetname)); + if(StrEqual(targetname,"deadbody",true)) + Format(reportBody,sizeof(reportBody),"%t\n","reportbody"); + else + Format(reportBody,sizeof(reportBody),""); + } + } + switch(emergencyButton[client]) + { + case Emergency_NextToButton: + Format(emergency,sizeof(emergency),"%t\n","emergencybutton"); + default: + Format(emergency,sizeof(emergency),""); + } switch(playerState[client]) { case (State_Crewmate): { SetHudTextParams(0.15, 0.15, 3.0, 255, 255, 255, 255, 1, 6.0, 0.1, 0.1); - ShowSyncHudText(client, g_hHud, "%t","tasks"); + ShowSyncHudText(client, g_hHud, "%s%s%t",emergency,reportBody,"tasks"); } case (State_Impostor): { SetHudTextParams(0.15, 0.15, 3.0, 255, 0, 0, 255, 1, 6.0, 0.1, 0.1); + char ventHere[MAX_NAME_LENGTH] = ""; + switch(ventState[client]) + { + case VentState_InsideVent: + { + DrawVentPanels(client); + Format(ventHere,sizeof(ventHere),"%t\n","ventstate_insidevent"); + } + case VentState_OnTopOfVent: + Format(ventHere,sizeof(ventHere),"%t\n","ventstate_ontopofvent"); + default: + Format(ventHere,sizeof(ventHere),""); + } if (g_knifeCount[client] > 1 || g_knifeCount[client] == 0) - ShowSyncHudText(client, g_hHud, "%t\n%t\n%t","knifedelayplural",g_knifeCount[client],"impostor_description","faketasks"); + ShowSyncHudText(client, g_hHud, "%s%s%s%t\n%t\n%t",emergency,reportBody,ventHere,"knifedelayplural",g_knifeCount[client],"impostor_description","faketasks"); else if (g_knifeCount[client] >= 0) - ShowSyncHudText(client, g_hHud, "%t\n%t\n%t","knifedelay",g_knifeCount[client],"impostor_description","faketasks"); + ShowSyncHudText(client, g_hHud, "%s%s%s%t\n%t\n%t",emergency,reportBody,ventHere,"knifedelay",g_knifeCount[client],"impostor_description","faketasks"); else - ShowSyncHudText(client, g_hHud, "%t\n%t","impostor_description","faketasks"); + ShowSyncHudText(client, g_hHud, "%s%s%s%t\n%t",emergency,reportBody,ventHere,"impostor_description","faketasks"); } case (State_ImpostorGhost): { @@ -834,13 +1126,11 @@ public Action UITimer(Handle timer, int userid) //impostor has hurt someone! (friendly fire must be on) public Action OnTakeDamage(client, &attacker, &inflictor, &Float:damage, &damagetype) { - if(playerState[client] == State_Impostor) - return Plugin_Handled; - if(g_votingState != VotingState_NoVote) + if(playerState[client] == State_Impostor || g_votingState != VotingState_NoVote) return Plugin_Handled; if(IsValidClient(attacker)) { - if(playerState[attacker] != State_Impostor || g_knifeCount[attacker] > -2) + if(playerState[attacker] != State_Impostor || g_knifeCount[attacker] > -2 || ventState[attacker] == VentState_InsideVent) return Plugin_Handled; } new Float:vOrigin[3]; @@ -897,6 +1187,13 @@ public Action Hook_SetTransmitImpostor(entity, client) return Plugin_Handled; } +public Action Hook_SetTransmitVent(entity, client) +{ + if (ventState[entity] != VentState_InsideVent || entity == client) + return Plugin_Continue; + return Plugin_Handled; +} + public Action Hook_SetTransmit(entity, client) { if (TF2_GetClientTeam(client) == TFTeam_Spectator || entity == client || playerState[client] == State_Ghost || playerState[client] == State_ImpostorGhost) @@ -1018,6 +1315,7 @@ public Action Command_BecomeImpostor(int client, int args) for (int i = 0; i < target_count; i++) { LogAction(client, target_list[i], "\"%L\" set \"%L\" as an impostor!", client, target_list[i]); + ventState[target_list[i]] = VentState_NoVent; playerState[target_list[i]] = State_Impostor; g_knifeCount[target_list[i]] = 0; } diff --git a/addons/sourcemod/translations/amongus.phrases.txt b/addons/sourcemod/translations/amongus.phrases.txt index 1422dd4..7b5f985 100644 --- a/addons/sourcemod/translations/amongus.phrases.txt +++ b/addons/sourcemod/translations/amongus.phrases.txt @@ -44,10 +44,6 @@ { "en" "Orange" } - "color_orange" - { - "en" "Orange" - } "color_pink" { "en" "Pink" @@ -235,4 +231,24 @@ { "en" "You can't join right now! The round is ongoing." } + "ventstate_insidevent" + { + "en" "You are venting." + } + "ventstate_ontopofvent" + { + "en" "Medic! to vent here." + } + "reportbody" + { + "en" "Medic! to report this body." + } + "emergencybutton" + { + "en" "Medic! to call an emergency." + } + "unmuted" + { + "en" "All players have been unmuted during voting. Discuss!" + } } \ No newline at end of file diff --git a/maps/tfau_example.bsp b/maps/tfau_example.bsp new file mode 100644 index 0000000..6c518c8 Binary files /dev/null and b/maps/tfau_example.bsp differ diff --git a/mapsrc/tfau_example.vmf b/mapsrc/tfau_example.vmf new file mode 100644 index 0000000..752978d --- /dev/null +++ b/mapsrc/tfau_example.vmf @@ -0,0 +1,12419 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "8163" + "mapversion" "41" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "41" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites_2fort" + "detailvbsp" "detail_2fort.vbsp" + "maxpropscreenwidth" "-1" + "skyname" "sky_tf2_04" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-512 -192 64) (-512 256 64) (512 256 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-512 256 -25) (-512 -192 -25) (512 -192 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-512 -192 -25) (-512 256 -25) (-512 256 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(512 256 -25) (512 -192 -25) (512 -192 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(-512 256 -25) (512 256 -25) (512 256 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(512 -192 -25) (-512 -192 -25) (-512 -192 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 214 199" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1887" + side + { + "id" "2280" + "plane" "(512 -192 64) (256 -448 64) (-256 -448 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2279" + "plane" "(-512 -192 -25) (-256 -448 -25) (256 -448 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2278" + "plane" "(-256 -448 -25) (-512 -192 -25) (-512 -192 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2277" + "plane" "(512 -192 -25) (256 -448 -25) (256 -448 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2276" + "plane" "(-512 -192 -25) (512 -192 -25) (512 -192 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2275" + "plane" "(256 -448 -25) (-256 -448 -25) (-256 -448 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 214 199" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1902" + side + { + "id" "2311" + "plane" "(-512 256 320) (-512 -192 320) (-544 -256 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2312" + "plane" "(-512 -192 64) (-512 256 64) (-544 320 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2313" + "plane" "(-544 -256 320) (-544 -256 64) (-544 320 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2314" + "plane" "(-512 -192 64) (-512 -192 320) (-512 256 320)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2315" + "plane" "(-544 320 320) (-544 320 64) (-512 256 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2316" + "plane" "(-544 -256 64) (-544 -256 320) (-512 -192 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1908" + side + { + "id" "2328" + "plane" "(-256 512 320) (-512 256 320) (-544 320 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2327" + "plane" "(-512 256 64) (-256 512 64) (-320 544 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2326" + "plane" "(-544 320 320) (-544 320 64) (-320 544 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2325" + "plane" "(-512 256 64) (-512 256 320) (-256 512 320)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2324" + "plane" "(-320 544 320) (-320 544 64) (-256 512 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2323" + "plane" "(-544 320 64) (-544 320 320) (-512 256 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1923" + side + { + "id" "2364" + "plane" "(256 -448 320) (320 -480 320) (-320 -480 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2363" + "plane" "(-256 -448 64) (-320 -480 64) (320 -480 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2362" + "plane" "(320 -480 64) (-320 -480 64) (-320 -480 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2361" + "plane" "(256 -448 320) (-256 -448 320) (-256 -448 64)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2360" + "plane" "(-320 -480 64) (-256 -448 64) (-256 -448 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2359" + "plane" "(320 -480 320) (256 -448 320) (256 -448 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1924" + side + { + "id" "2370" + "plane" "(256 -448 320) (512 -192 320) (544 -256 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2369" + "plane" "(512 -192 64) (256 -448 64) (320 -480 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2368" + "plane" "(544 -256 320) (544 -256 64) (320 -480 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2367" + "plane" "(512 -192 64) (512 -192 320) (256 -448 320)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2366" + "plane" "(320 -480 320) (320 -480 64) (256 -448 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2365" + "plane" "(544 -256 64) (544 -256 320) (512 -192 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1925" + side + { + "id" "2376" + "plane" "(512 -192 320) (512 256 320) (544 320 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2375" + "plane" "(512 256 64) (512 -192 64) (544 -256 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2374" + "plane" "(544 320 320) (544 320 64) (544 -256 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2373" + "plane" "(512 256 64) (512 256 320) (512 -192 320)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2372" + "plane" "(544 -256 320) (544 -256 64) (512 -192 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2371" + "plane" "(544 320 64) (544 320 320) (512 256 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1936" + side + { + "id" "2388" + "plane" "(-512 -192 320) (-256 -448 320) (-320 -480 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2387" + "plane" "(-256 -448 64) (-512 -192 64) (-544 -256 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2386" + "plane" "(-320 -480 320) (-320 -480 64) (-544 -256 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2385" + "plane" "(-256 -448 64) (-256 -448 320) (-512 -192 320)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2384" + "plane" "(-544 -256 320) (-544 -256 64) (-512 -192 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2383" + "plane" "(-320 -480 64) (-320 -480 320) (-256 -448 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1940" + side + { + "id" "2400" + "plane" "(512 256 320) (256 512 320) (320 544 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2399" + "plane" "(256 512 64) (512 256 64) (544 320 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2398" + "plane" "(320 544 320) (320 544 64) (544 320 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2397" + "plane" "(256 512 64) (256 512 320) (512 256 320)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2396" + "plane" "(544 320 320) (544 320 64) (512 256 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2395" + "plane" "(320 544 64) (320 544 320) (256 512 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1990" + side + { + "id" "2442" + "plane" "(-512 -192 320) (-256 -448 320) (256 -448 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-0.707107 0.707107 0 -12.8645] 0.25" + "vaxis" "[-0.707107 -0.707107 0 12.8647] 0.25" + "rotation" "45" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2441" + "plane" "(-256 -448 384) (-512 -192 384) (512 -192 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2440" + "plane" "(256 -448 320) (256 -448 384) (512 -192 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2439" + "plane" "(-256 -448 384) (-256 -448 320) (-512 -192 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2438" + "plane" "(512 -192 320) (512 -192 384) (-512 -192 384)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2437" + "plane" "(256 -448 384) (256 -448 320) (-256 -448 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 214 199" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1988" + side + { + "id" "2448" + "plane" "(512 256 320) (256 512 320) (-256 512 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0.707107 -0.707107 0 40.1547] 0.25" + "vaxis" "[0.707107 0.707107 0 -40.1547] 0.25" + "rotation" "45" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2447" + "plane" "(256 512 384) (512 256 384) (-512 256 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2446" + "plane" "(-256 512 320) (-256 512 384) (-512 256 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2445" + "plane" "(256 512 384) (256 512 320) (512 256 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2444" + "plane" "(-512 256 320) (-512 256 384) (512 256 384)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2443" + "plane" "(-256 512 384) (-256 512 320) (256 512 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 214 199" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1989" + side + { + "id" "2454" + "plane" "(512 256 320) (-512 256 320) (-512 -192 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[-0.707107 -0.707107 0 0] 0.25" + "rotation" "45" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2453" + "plane" "(512 -192 384) (-512 -192 384) (-512 256 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2452" + "plane" "(512 256 320) (512 -192 320) (512 -192 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2451" + "plane" "(-512 256 384) (-512 -192 384) (-512 -192 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2450" + "plane" "(-512 256 320) (512 256 320) (512 256 384)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2449" + "plane" "(-512 -192 384) (512 -192 384) (512 -192 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 214 199" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4158" + side + { + "id" "2964" + "plane" "(232 352 64) (232 416 64) (296 416 64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 -42.6664] 0.1875" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2963" + "plane" "(232 416 63) (232 352 63) (296 352 63)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2962" + "plane" "(232 352 63) (232 416 63) (232 416 64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2961" + "plane" "(296 416 63) (296 352 63) (296 352 64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2960" + "plane" "(232 416 63) (296 416 63) (296 416 64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2959" + "plane" "(296 352 63) (232 352 63) (232 352 64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 129 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3819" + side + { + "id" "2994" + "plane" "(232 352 -25) (232 416 -25) (296 416 -25)" + "material" "METAL/METALVENT001A" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[1 0 0 -160] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2993" + "plane" "(232 416 -33) (232 352 -33) (296 352 -33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2992" + "plane" "(232 352 -33) (232 416 -33) (232 416 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2991" + "plane" "(296 416 -33) (296 352 -33) (296 352 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2990" + "plane" "(232 416 -33) (296 416 -33) (296 416 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2989" + "plane" "(296 352 -33) (232 352 -33) (232 352 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 214 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "134" + side + { + "id" "13" + "plane" "(-24 59 88) (-45 45 88) (-59 24 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "14" + "plane" "(0 64 96) (24 59 96) (45 45 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "15" + "plane" "(0 64 88) (24 59 88) (24 59 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16" + "plane" "(24 59 88) (45 45 88) (45 45 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "17" + "plane" "(45 45 88) (59 24 88) (59 24 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18" + "plane" "(59 24 88) (64 0 88) (64 0 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "19" + "plane" "(64 0 88) (59 -24 88) (59 -24 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20" + "plane" "(59 -24 88) (45 -45 88) (45 -45 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "21" + "plane" "(45 -45 88) (24 -59 88) (24 -59 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22" + "plane" "(24 -59 88) (0 -64 88) (0 -64 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23" + "plane" "(0 -64 88) (-24 -59 88) (-24 -59 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24" + "plane" "(-24 -59 88) (-45 -45 88) (-45 -45 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25" + "plane" "(-45 -45 88) (-59 -24 88) (-59 -24 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26" + "plane" "(-59 -24 88) (-64 0 88) (-64 0 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27" + "plane" "(-64 0 88) (-59 24 88) (-59 24 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28" + "plane" "(-59 24 88) (-45 45 88) (-45 45 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29" + "plane" "(-45 45 88) (-24 59 88) (-24 59 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "30" + "plane" "(-24 59 88) (0 64 88) (0 64 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "139" + side + { + "id" "66" + "plane" "(-18 44.25 64) (-33.75 33.75 64) (-44.25 18 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "65" + "plane" "(0 48 88) (18 44.25 88) (33.75 33.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "64" + "plane" "(0 48 64) (18 44.25 64) (18 44.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "63" + "plane" "(18 44.25 64) (33.75 33.75 64) (33.75 33.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62" + "plane" "(33.75 33.75 64) (44.25 18 64) (44.25 18 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61" + "plane" "(44.25 18 64) (48 0 64) (48 0 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60" + "plane" "(48 0 64) (44.25 -18 64) (44.25 -18 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59" + "plane" "(44.25 -18 64) (33.75 -33.75 64) (33.75 -33.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58" + "plane" "(33.75 -33.75 64) (18 -44.25 64) (18 -44.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57" + "plane" "(18 -44.25 64) (0 -48 64) (0 -48 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56" + "plane" "(0 -48 64) (-18 -44.25 64) (-18 -44.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55" + "plane" "(-18 -44.25 64) (-33.75 -33.75 64) (-33.75 -33.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54" + "plane" "(-33.75 -33.75 64) (-44.25 -18 64) (-44.25 -18 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "53" + "plane" "(-44.25 -18 64) (-48 0 64) (-48 0 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "52" + "plane" "(-48 0 64) (-44.25 18 64) (-44.25 18 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "51" + "plane" "(-44.25 18 64) (-33.75 33.75 64) (-33.75 33.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "50" + "plane" "(-33.75 33.75 64) (-18 44.25 64) (-18 44.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "49" + "plane" "(-18 44.25 64) (0 48 64) (0 48 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1191" + side + { + "id" "953" + "plane" "(-67.4999 67.4993 64) (-36.6848 88 64) (-36.6843 88 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "952" + "plane" "(-36.6845 88 64) (-0 -0 64) (0 -0 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "951" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "950" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "949" + "plane" "(27 66.375 80) (27 66.375 64) (-9.53674e-007 72 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1223" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1211" + side + { + "id" "958" + "plane" "(-94.3619 7.86349 64) (-88.5004 36 64) (-88.5005 36 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "957" + "plane" "(0 0 64) (-94.3607 7.86372 64) (-94.3615 7.86346 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "956" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "955" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "954" + "plane" "(-66.375 -27 80) (-66.375 -27 64) (-50.625 -50.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1223" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1213" + side + { + "id" "965" + "plane" "(-94.3619 7.86349 64) (-88.5004 36 64) (-88.5005 36 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "964" + "plane" "(-88.5002 36 64) (-67.5013 67.4974 64) (-67.4954 67.5018 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "963" + "plane" "(0 0 64) (-94.3607 7.86372 64) (-94.3615 7.86346 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "962" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "961" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "960" + "plane" "(-50.625 -50.625 64) (-66.375 -27 64) (-66.375 -27 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "959" + "plane" "(-72 -9.53674e-007 80) (-72 -9.53674e-007 64) (-66.375 -27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1223" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1215" + side + { + "id" "972" + "plane" "(-88.5002 36 64) (-67.5013 67.4974 64) (-67.4954 67.5018 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "971" + "plane" "(-67.4999 67.4993 64) (-36.6848 88 64) (-36.6843 88 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "970" + "plane" "(0 0 64) (-94.3607 7.86372 64) (-94.3615 7.86346 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "969" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "968" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "967" + "plane" "(-66.375 -27 64) (-72 -9.53674e-007 64) (-72 -9.53674e-007 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "966" + "plane" "(-66.375 27 80) (-66.375 27 64) (-72 -9.53674e-007 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1223" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1217" + side + { + "id" "979" + "plane" "(-67.4999 67.4993 64) (-36.6848 88 64) (-36.6843 88 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "978" + "plane" "(-36.6845 88 64) (-0 -0 64) (0 -0 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "977" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "976" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "975" + "plane" "(-9.53674e-007 72 64) (27 66.375 64) (27 66.375 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "974" + "plane" "(-72 -9.53674e-007 64) (-66.375 27 64) (-66.375 27 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "973" + "plane" "(-50.625 50.625 80) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1223" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1219" + side + { + "id" "984" + "plane" "(-36.6845 88 64) (-0 -0 64) (0 -0 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "983" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "982" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "981" + "plane" "(-66.375 27 64) (-50.625 50.625 64) (-50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "980" + "plane" "(-27 66.375 80) (-27 66.375 64) (-50.625 50.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1223" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1243" + side + { + "id" "899" + "plane" "(-36.6857 -88 64) (-67.4911 -67.5055 64) (-67.4953 -67.5007 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "898" + "plane" "(-0 -0 64) (-36.6849 -88 64) (-36.683 -88 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "897" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "896" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "895" + "plane" "(-9.53674e-007 -72 80) (-9.53674e-007 -72 64) (27 -66.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1261" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1245" + side + { + "id" "906" + "plane" "(-36.6857 -88 64) (-67.4911 -67.5055 64) (-67.4953 -67.5007 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "905" + "plane" "(-67.4965 -67.5038 64) (-88.4987 -36 64) (-88.4994 -36 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "904" + "plane" "(-0 -0 64) (-36.6849 -88 64) (-36.683 -88 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "903" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "902" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "901" + "plane" "(27 -66.375 64) (-9.53674e-007 -72 64) (-9.53674e-007 -72 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "900" + "plane" "(-27 -66.375 80) (-27 -66.375 64) (-9.53674e-007 -72 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1261" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1247" + side + { + "id" "913" + "plane" "(-67.4965 -67.5038 64) (-88.4987 -36 64) (-88.4994 -36 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "912" + "plane" "(-88.5001 -36 64) (-94.362 -7.8635 64) (-94.3628 -7.86356 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "911" + "plane" "(-0 -0 64) (-36.6849 -88 64) (-36.683 -88 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "910" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "909" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "908" + "plane" "(-9.53674e-007 -72 64) (-27 -66.375 64) (-27 -66.375 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "907" + "plane" "(-50.625 -50.625 80) (-50.625 -50.625 64) (-27 -66.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1261" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1249" + side + { + "id" "919" + "plane" "(-88.5001 -36 64) (-94.362 -7.8635 64) (-94.3628 -7.86356 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "918" + "plane" "(-94.3617 -7.86348 64) (-0 0 64) (0 0 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "917" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "916" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "915" + "plane" "(-27 -66.375 64) (-50.625 -50.625 64) (-50.625 -50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "914" + "plane" "(-66.375 -27 80) (-66.375 -27 64) (-50.625 -50.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1261" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1251" + side + { + "id" "924" + "plane" "(-94.3617 -7.86348 64) (-0 0 64) (0 0 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "923" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "922" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "921" + "plane" "(-50.625 -50.625 64) (-66.375 -27 64) (-66.375 -27 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "920" + "plane" "(-72 -9.53674e-007 80) (-72 -9.53674e-007 64) (-66.375 -27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1261" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1157" + side + { + "id" "803" + "plane" "(94.3619 -7.86349 64) (88.5008 -36 64) (88.5026 -36 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "802" + "plane" "(-0 -0 64) (94.3611 -7.86375 64) (94.3621 -7.86351 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "801" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "800" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "799" + "plane" "(66.375 27 80) (66.375 27 64) (50.625 50.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1159" + side + { + "id" "810" + "plane" "(94.3619 -7.86349 64) (88.5008 -36 64) (88.5026 -36 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "809" + "plane" "(88.4994 -36 64) (67.5113 -67.4896 64) (67.5024 -67.4978 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "808" + "plane" "(-0 -0 64) (94.3611 -7.86375 64) (94.3621 -7.86351 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "807" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "806" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "805" + "plane" "(50.625 50.625 64) (66.375 27 64) (66.375 27 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "804" + "plane" "(72 -9.53674e-007 80) (72 -9.53674e-007 64) (66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1161" + side + { + "id" "817" + "plane" "(88.4994 -36 64) (67.5113 -67.4896 64) (67.5024 -67.4978 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "816" + "plane" "(67.5064 -67.4926 64) (36.6842 -88 64) (36.6856 -88 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "815" + "plane" "(-0 -0 64) (94.3611 -7.86375 64) (94.3621 -7.86351 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "814" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "813" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "812" + "plane" "(66.375 27 64) (72 -9.53674e-007 64) (72 -9.53674e-007 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "811" + "plane" "(66.375 -27 80) (66.375 -27 64) (72 -9.53674e-007 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1163" + side + { + "id" "823" + "plane" "(67.5064 -67.4926 64) (36.6842 -88 64) (36.6856 -88 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "822" + "plane" "(36.6841 -88 64) (-0 -0 64) (0 -0 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "821" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "820" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "819" + "plane" "(72 -9.53674e-007 64) (66.375 -27 64) (66.375 -27 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "818" + "plane" "(50.625 -50.625 80) (50.625 -50.625 64) (66.375 -27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1165" + side + { + "id" "828" + "plane" "(36.6841 -88 64) (-0 -0 64) (0 -0 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "827" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "826" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "825" + "plane" "(66.375 -27 64) (50.625 -50.625 64) (50.625 -50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "824" + "plane" "(27 -66.375 80) (27 -66.375 64) (50.625 -50.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1115" + side + { + "id" "930" + "plane" "(36.6822 88 64) (67.5053 67.4935 64) (67.5074 67.4901 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "929" + "plane" "(67.506 67.4946 64) (88.5005 36 64) (88.5014 36 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "928" + "plane" "(0 0 64) (36.6831 88 64) (36.6831 88 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "927" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "926" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "925" + "plane" "(27 66.375 80) (27 66.375 64) (-9.53674e-007 72 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1117" + side + { + "id" "937" + "plane" "(67.506 67.4946 64) (88.5005 36 64) (88.5014 36 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "936" + "plane" "(88.5008 36 64) (94.3618 7.86349 64) (94.3624 7.86353 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "935" + "plane" "(0 0 64) (36.6831 88 64) (36.6831 88 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "934" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "933" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "932" + "plane" "(-9.53674e-007 72 64) (27 66.375 64) (27 66.375 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "931" + "plane" "(50.625 50.625 80) (50.625 50.625 64) (27 66.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1119" + side + { + "id" "943" + "plane" "(88.5008 36 64) (94.3618 7.86349 64) (94.3624 7.86353 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "942" + "plane" "(94.3619 7.86349 64) (-0 0 64) (0 0 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "941" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "940" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "939" + "plane" "(27 66.375 64) (50.625 50.625 64) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "938" + "plane" "(66.375 27 80) (66.375 27 64) (50.625 50.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1121" + side + { + "id" "948" + "plane" "(94.3619 7.86349 64) (-0 0 64) (0 0 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "947" + "plane" "(-27 66.375 64) (-50.625 50.625 64) (-66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "946" + "plane" "(-9.53674e-007 72 80) (27 66.375 80) (50.625 50.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "945" + "plane" "(50.625 50.625 64) (66.375 27 64) (66.375 27 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "944" + "plane" "(72 -9.53674e-007 80) (72 -9.53674e-007 64) (66.375 27 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1352" + side + { + "id" "1194" + "plane" "(-280 251 88) (-301 237 88) (-315 216 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1193" + "plane" "(-256 256 96) (-232 251 96) (-211 237 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1192" + "plane" "(-256 256 88) (-232 251 88) (-232 251 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1191" + "plane" "(-232 251 88) (-211 237 88) (-211 237 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1190" + "plane" "(-211 237 88) (-197 216 88) (-197 216 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1189" + "plane" "(-197 216 88) (-192 192 88) (-192 192 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1188" + "plane" "(-192 192 88) (-197 168 88) (-197 168 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1187" + "plane" "(-197 168 88) (-211 147 88) (-211 147 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1186" + "plane" "(-211 147 88) (-232 133 88) (-232 133 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1185" + "plane" "(-232 133 88) (-256 128 88) (-256 128 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1184" + "plane" "(-256 128 88) (-280 133 88) (-280 133 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1183" + "plane" "(-280 133 88) (-301 147 88) (-301 147 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1182" + "plane" "(-301 147 88) (-315 168 88) (-315 168 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1181" + "plane" "(-315 168 88) (-320 192 88) (-320 192 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1180" + "plane" "(-320 192 88) (-315 216 88) (-315 216 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1179" + "plane" "(-315 216 88) (-301 237 88) (-301 237 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1178" + "plane" "(-301 237 88) (-280 251 88) (-280 251 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1177" + "plane" "(-280 251 88) (-256 256 88) (-256 256 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1351" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1360" + side + { + "id" "1248" + "plane" "(-274 236.25 64) (-289.75 225.75 64) (-300.25 210 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1247" + "plane" "(-256 240 88) (-238 236.25 88) (-222.25 225.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1246" + "plane" "(-256 240 64) (-238 236.25 64) (-238 236.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1245" + "plane" "(-238 236.25 64) (-222.25 225.75 64) (-222.25 225.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1244" + "plane" "(-222.25 225.75 64) (-211.75 210 64) (-211.75 210 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1243" + "plane" "(-211.75 210 64) (-208 192 64) (-208 192 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1242" + "plane" "(-208 192 64) (-211.75 174 64) (-211.75 174 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1241" + "plane" "(-211.75 174 64) (-222.25 158.25 64) (-222.25 158.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1240" + "plane" "(-222.25 158.25 64) (-238 147.75 64) (-238 147.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1239" + "plane" "(-238 147.75 64) (-256 144 64) (-256 144 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1238" + "plane" "(-256 144 64) (-274 147.75 64) (-274 147.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1237" + "plane" "(-274 147.75 64) (-289.75 158.25 64) (-289.75 158.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1236" + "plane" "(-289.75 158.25 64) (-300.25 174 64) (-300.25 174 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1235" + "plane" "(-300.25 174 64) (-304 192 64) (-304 192 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1234" + "plane" "(-304 192 64) (-300.25 210 64) (-300.25 210 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1233" + "plane" "(-300.25 210 64) (-289.75 225.75 64) (-289.75 225.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1232" + "plane" "(-289.75 225.75 64) (-274 236.25 64) (-274 236.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1231" + "plane" "(-274 236.25 64) (-256 240 64) (-256 240 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1351" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1354" + side + { + "id" "1199" + "plane" "(-302.252 273.636 64) (-292.685 280 64) (-292.685 280 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1198" + "plane" "(-292.685 280 80) (-292.685 280 64) (-288.87 270.848 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1197" + "plane" "(-292.685 280 64) (-302.252 273.636 64) (-288.869 270.848 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1196" + "plane" "(-302.251 273.636 80) (-292.684 280 80) (-288.869 270.848 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1195" + "plane" "(-288.868 270.847 80) (-288.868 270.847 64) (-302.253 273.635 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1353" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1355" + side + { + "id" "1204" + "plane" "(-350.363 199.864 80) (-350.362 199.864 64) (-349.233 205.287 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1203" + "plane" "(-345.339 199.445 64) (-350.362 199.864 64) (-350.362 199.864 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1202" + "plane" "(-349.231 205.285 64) (-350.361 199.864 64) (-345.338 199.445 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1201" + "plane" "(-350.362 199.865 80) (-349.233 205.286 80) (-345.339 199.447 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1200" + "plane" "(-349.233 205.286 80) (-349.232 205.286 64) (-345.339 199.445 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1353" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1356" + side + { + "id" "1211" + "plane" "(-349.233 205.287 64) (-344.501 228 64) (-344.503 228 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1210" + "plane" "(-344.502 228 80) (-344.5 228 64) (-337.643 238.286 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1209" + "plane" "(-329.272 198.106 64) (-345.339 199.445 64) (-345.338 199.445 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1208" + "plane" "(-337.643 238.285 64) (-344.499 228 64) (-349.231 205.285 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1207" + "plane" "(-349.233 205.286 80) (-344.501 228 80) (-337.643 238.285 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1206" + "plane" "(-345.338 199.445 80) (-345.338 199.445 64) (-349.232 205.286 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1205" + "plane" "(-337.642 238.283 80) (-337.643 238.286 64) (-329.272 198.107 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1353" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1357" + side + { + "id" "1218" + "plane" "(-337.643 238.286 64) (-323.499 259.501 64) (-323.494 259.504 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1217" + "plane" "(-323.494 259.503 80) (-323.499 259.501 64) (-312.399 266.885 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1216" + "plane" "(-326.771 197.898 64) (-329.272 198.106 64) (-329.272 198.106 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1215" + "plane" "(-312.399 266.884 64) (-323.499 259.499 64) (-337.643 238.285 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1214" + "plane" "(-337.642 238.284 80) (-323.498 259.502 80) (-312.399 266.885 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1213" + "plane" "(-329.272 198.106 80) (-329.272 198.107 64) (-337.643 238.288 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1212" + "plane" "(-312.399 266.884 80) (-312.399 266.885 64) (-326.771 197.897 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1353" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1358" + side + { + "id" "1225" + "plane" "(-312.399 266.886 64) (-302.252 273.636 64) (-302.252 273.636 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1224" + "plane" "(-288.869 270.848 64) (-288.462 269.87 64) (-288.462 269.87 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1223" + "plane" "(-302.252 273.636 64) (-312.399 266.885 64) (-322.375 219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1222" + "plane" "(-312.399 266.885 80) (-302.252 273.636 80) (-288.868 270.847 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1221" + "plane" "(-302.253 273.636 80) (-302.254 273.636 64) (-288.869 270.847 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1220" + "plane" "(-322.375 219 64) (-312.398 266.886 64) (-312.399 266.885 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1219" + "plane" "(-288.462 269.87 80) (-288.462 269.87 64) (-322.375 219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1353" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1359" + side + { + "id" "1230" + "plane" "(-288.462 269.87 64) (-283.524 258 64) (-283.524 258 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1229" + "plane" "(-283.524 258 64) (-288.462 269.87 64) (-306.625 242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1228" + "plane" "(-288.462 269.87 80) (-283.524 258 80) (-306.625 242.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1227" + "plane" "(-306.625 242.625 64) (-288.461 269.871 64) (-288.461 269.871 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1226" + "plane" "(-283.524 258 80) (-283.524 258 64) (-306.625 242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1353" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1362" + side + { + "id" "1253" + "plane" "(-292.684 104 80) (-292.686 104 64) (-302.253 110.364 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1252" + "plane" "(-288.869 113.152 64) (-292.685 104 64) (-292.683 104 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1251" + "plane" "(-302.247 110.365 64) (-292.684 104 64) (-288.87 113.152 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1250" + "plane" "(-292.684 104 80) (-302.251 110.364 80) (-288.868 113.153 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1249" + "plane" "(-302.249 110.365 80) (-302.251 110.365 64) (-288.87 113.153 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1361" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1363" + side + { + "id" "1260" + "plane" "(-302.253 110.364 64) (-323.497 124.498 64) (-323.501 124.502 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1259" + "plane" "(-323.504 124.504 80) (-323.5 124.5 64) (-330.904 135.605 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1258" + "plane" "(-283.616 125.753 64) (-288.869 113.152 64) (-288.867 113.153 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1257" + "plane" "(-330.899 135.604 64) (-323.5 124.505 64) (-302.247 110.365 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1256" + "plane" "(-302.251 110.364 80) (-323.504 124.503 80) (-330.905 135.605 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1255" + "plane" "(-288.867 113.153 80) (-288.869 113.152 64) (-302.251 110.365 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1254" + "plane" "(-330.903 135.605 80) (-330.902 135.605 64) (-283.617 125.754 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1361" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1364" + side + { + "id" "1267" + "plane" "(-330.903 135.605 64) (-344.502 156 64) (-344.503 156 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1266" + "plane" "(-344.502 156 80) (-344.501 156 64) (-347.071 168.339 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1265" + "plane" "(-283.524 126 64) (-283.616 125.753 64) (-283.614 125.753 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1264" + "plane" "(-347.072 168.34 64) (-344.504 156 64) (-330.899 135.604 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1263" + "plane" "(-330.903 135.605 80) (-344.505 156 80) (-347.074 168.341 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1262" + "plane" "(-283.614 125.753 80) (-283.616 125.754 64) (-330.901 135.605 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1261" + "plane" "(-347.072 168.339 80) (-347.071 168.339 64) (-283.524 126 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1361" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1365" + side + { + "id" "1273" + "plane" "(-347.071 168.339 64) (-350.362 184.136 64) (-350.363 184.135 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1272" + "plane" "(-350.363 184.136 80) (-350.362 184.137 64) (-335.934 185.339 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1271" + "plane" "(-350.362 184.136 64) (-347.071 168.339 64) (-306.625 141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1270" + "plane" "(-347.073 168.34 80) (-350.364 184.136 80) (-335.934 185.339 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1269" + "plane" "(-306.625 141.375 64) (-347.073 168.34 64) (-347.074 168.341 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1268" + "plane" "(-335.934 185.339 80) (-335.934 185.339 64) (-306.624 141.374 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1361" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1366" + side + { + "id" "1278" + "plane" "(-335.934 185.339 64) (-326.771 186.102 64) (-326.771 186.102 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1277" + "plane" "(-326.771 186.102 64) (-335.934 185.339 64) (-322.375 165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1276" + "plane" "(-335.934 185.339 80) (-326.771 186.102 80) (-322.375 165 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1275" + "plane" "(-322.375 165 64) (-335.934 185.338 64) (-335.934 185.338 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1274" + "plane" "(-326.771 186.102 80) (-326.771 186.102 64) (-322.375 165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1361" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1368" + side + { + "id" "1283" + "plane" "(-162.767 178.713 80) (-161.637 184.137 80) (-161.639 184.137 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1282" + "plane" "(-166.661 184.555 64) (-161.638 184.136 64) (-161.636 184.136 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1281" + "plane" "(-162.767 178.713 64) (-161.637 184.136 64) (-166.661 184.555 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1280" + "plane" "(-161.638 184.135 80) (-162.767 178.714 80) (-166.661 184.553 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1279" + "plane" "(-162.766 178.711 80) (-162.767 178.713 64) (-166.662 184.555 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1367" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1369" + side + { + "id" "1290" + "plane" "(-167.499 156 64) (-167.495 156 80) (-162.767 178.713 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1289" + "plane" "(-167.494 156 80) (-167.499 156 64) (-174.357 145.714 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1288" + "plane" "(-182.728 185.894 64) (-166.661 184.555 64) (-166.662 184.555 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1287" + "plane" "(-174.357 145.714 64) (-167.497 156 64) (-162.767 178.713 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1286" + "plane" "(-162.767 178.714 80) (-167.497 156 80) (-174.358 145.716 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1285" + "plane" "(-166.662 184.555 80) (-166.662 184.555 64) (-162.767 178.713 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1284" + "plane" "(-174.358 145.717 80) (-174.357 145.713 64) (-182.728 185.895 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1367" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1370" + side + { + "id" "1297" + "plane" "(-174.357 145.714 64) (-188.49 124.51 64) (-188.497 124.504 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1296" + "plane" "(-188.498 124.502 80) (-188.491 124.508 64) (-199.601 117.116 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1295" + "plane" "(-185.229 186.102 64) (-182.728 185.894 64) (-182.728 185.894 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1294" + "plane" "(-199.601 117.117 64) (-188.492 124.508 64) (-174.357 145.715 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1293" + "plane" "(-174.358 145.72 80) (-188.498 124.504 80) (-199.601 117.117 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1292" + "plane" "(-182.728 185.895 80) (-182.728 185.894 64) (-174.357 145.713 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1291" + "plane" "(-199.601 117.116 80) (-199.601 117.117 64) (-185.229 186.103 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1367" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1371" + side + { + "id" "1303" + "plane" "(-199.601 117.116 64) (-219.315 104 64) (-219.315 104 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1302" + "plane" "(-219.316 104 80) (-219.316 104 64) (-223.539 114.13 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1301" + "plane" "(-223.539 114.129 64) (-219.317 104 64) (-199.6 117.119 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1300" + "plane" "(-199.601 117.114 80) (-219.317 104 80) (-223.54 114.127 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1299" + "plane" "(-189.625 165 64) (-199.601 117.118 64) (-199.601 117.117 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1298" + "plane" "(-223.538 114.129 80) (-223.538 114.129 64) (-189.625 165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1367" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1372" + side + { + "id" "1308" + "plane" "(-223.539 114.13 64) (-228.476 126 64) (-228.476 126 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1307" + "plane" "(-228.476 126 64) (-223.539 114.13 64) (-205.375 141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1306" + "plane" "(-223.539 114.13 80) (-228.476 126 80) (-205.375 141.375 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1305" + "plane" "(-205.375 141.375 64) (-223.537 114.131 64) (-223.537 114.131 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1304" + "plane" "(-228.476 126 80) (-228.476 126 64) (-205.375 141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1367" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1374" + side + { + "id" "1314" + "plane" "(-219.318 280 80) (-219.318 280 64) (-188.49 259.489 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1313" + "plane" "(-188.488 259.486 80) (-188.492 259.49 64) (-181.096 248.395 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1312" + "plane" "(-228.385 258.247 64) (-219.317 280 64) (-219.318 280 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1311" + "plane" "(-188.488 259.487 64) (-219.318 280 64) (-228.385 258.247 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1310" + "plane" "(-228.383 258.246 80) (-219.316 280 80) (-188.49 259.488 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1309" + "plane" "(-181.093 248.394 80) (-181.094 248.394 64) (-228.384 258.246 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1373" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1375" + side + { + "id" "1321" + "plane" "(-181.096 248.395 64) (-167.499 228 64) (-167.498 228 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1320" + "plane" "(-167.5 228 80) (-167.5 228 64) (-164.929 215.661 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1319" + "plane" "(-228.477 258 64) (-228.385 258.247 64) (-228.385 258.247 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1318" + "plane" "(-164.931 215.662 64) (-167.5 228 64) (-181.097 248.395 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1317" + "plane" "(-228.476 258 80) (-228.383 258.247 80) (-181.097 248.395 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1316" + "plane" "(-228.385 258.246 80) (-228.385 258.246 64) (-181.093 248.394 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1315" + "plane" "(-164.928 215.661 80) (-164.928 215.661 64) (-228.476 258 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1373" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1376" + side + { + "id" "1327" + "plane" "(-164.929 215.661 64) (-161.639 199.863 64) (-161.638 199.863 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1326" + "plane" "(-161.638 199.864 80) (-161.638 199.863 64) (-176.066 198.661 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1325" + "plane" "(-161.638 199.862 64) (-164.929 215.661 64) (-205.375 242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1324" + "plane" "(-205.375 242.625 80) (-164.93 215.662 80) (-161.639 199.863 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1323" + "plane" "(-205.375 242.624 64) (-164.929 215.661 64) (-164.928 215.66 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1322" + "plane" "(-176.066 198.661 80) (-176.066 198.661 64) (-205.375 242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1373" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1377" + side + { + "id" "1332" + "plane" "(-176.066 198.661 64) (-185.229 197.898 64) (-185.229 197.898 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1331" + "plane" "(-185.229 197.898 64) (-176.066 198.661 64) (-189.625 219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1330" + "plane" "(-176.066 198.661 80) (-185.229 197.898 80) (-189.625 219 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1329" + "plane" "(-189.625 219 64) (-176.066 198.661 64) (-176.066 198.661 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1328" + "plane" "(-185.229 197.897 80) (-185.229 197.897 64) (-189.626 219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1373" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1436" + side + { + "id" "1506" + "plane" "(232 251 88) (211 237 88) (197 216 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1505" + "plane" "(256 256 96) (280 251 96) (301 237 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1504" + "plane" "(256 256 88) (280 251 88) (280 251 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1503" + "plane" "(280 251 88) (301 237 88) (301 237 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1502" + "plane" "(301 237 88) (315 216 88) (315 216 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1501" + "plane" "(315 216 88) (320 192 88) (320 192 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1500" + "plane" "(320 192 88) (315 168 88) (315 168 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1499" + "plane" "(315 168 88) (301 147 88) (301 147 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1498" + "plane" "(301 147 88) (280 133 88) (280 133 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1497" + "plane" "(280 133 88) (256 128 88) (256 128 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1496" + "plane" "(256 128 88) (232 133 88) (232 133 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1495" + "plane" "(232 133 88) (211 147 88) (211 147 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1494" + "plane" "(211 147 88) (197 168 88) (197 168 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1493" + "plane" "(197 168 88) (192 192 88) (192 192 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1492" + "plane" "(192 192 88) (197 216 88) (197 216 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1491" + "plane" "(197 216 88) (211 237 88) (211 237 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1490" + "plane" "(211 237 88) (232 251 88) (232 251 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1489" + "plane" "(232 251 88) (256 256 88) (256 256 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1435" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1444" + side + { + "id" "1560" + "plane" "(238 236.25 64) (222.25 225.75 64) (211.75 210 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1559" + "plane" "(256 240 88) (274 236.25 88) (289.75 225.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1558" + "plane" "(256 240 64) (274 236.25 64) (274 236.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1557" + "plane" "(274 236.25 64) (289.75 225.75 64) (289.75 225.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1556" + "plane" "(289.75 225.75 64) (300.25 210 64) (300.25 210 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1555" + "plane" "(300.25 210 64) (304 192 64) (304 192 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1554" + "plane" "(304 192 64) (300.25 174 64) (300.25 174 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1553" + "plane" "(300.25 174 64) (289.75 158.25 64) (289.75 158.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1552" + "plane" "(289.75 158.25 64) (274 147.75 64) (274 147.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1551" + "plane" "(274 147.75 64) (256 144 64) (256 144 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1550" + "plane" "(256 144 64) (238 147.75 64) (238 147.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1549" + "plane" "(238 147.75 64) (222.25 158.25 64) (222.25 158.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1548" + "plane" "(222.25 158.25 64) (211.75 174 64) (211.75 174 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1547" + "plane" "(211.75 174 64) (208 192 64) (208 192 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1546" + "plane" "(208 192 64) (211.75 210 64) (211.75 210 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1545" + "plane" "(211.75 210 64) (222.25 225.75 64) (222.25 225.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1544" + "plane" "(222.25 225.75 64) (238 236.25 64) (238 236.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1543" + "plane" "(238 236.25 64) (256 240 64) (256 240 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1435" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1438" + side + { + "id" "1511" + "plane" "(209.748 273.636 64) (219.315 280 64) (219.315 280 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1510" + "plane" "(219.315 280 80) (219.315 280 64) (223.13 270.848 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1509" + "plane" "(219.315 280 64) (209.748 273.636 64) (223.131 270.848 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1508" + "plane" "(209.749 273.636 80) (219.316 280 80) (223.131 270.848 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1507" + "plane" "(223.132 270.847 80) (223.132 270.847 64) (209.747 273.635 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1437" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1439" + side + { + "id" "1516" + "plane" "(161.637 199.864 80) (161.638 199.864 64) (162.767 205.287 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1515" + "plane" "(166.661 199.445 64) (161.638 199.864 64) (161.638 199.864 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1514" + "plane" "(162.769 205.285 64) (161.639 199.864 64) (166.662 199.445 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1513" + "plane" "(161.638 199.865 80) (162.767 205.286 80) (166.661 199.447 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1512" + "plane" "(162.767 205.286 80) (162.768 205.286 64) (166.661 199.445 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1437" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1440" + side + { + "id" "1523" + "plane" "(162.767 205.287 64) (167.499 228 64) (167.497 228 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1522" + "plane" "(167.498 228 80) (167.5 228 64) (174.357 238.286 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1521" + "plane" "(182.728 198.106 64) (166.661 199.445 64) (166.662 199.445 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1520" + "plane" "(174.357 238.285 64) (167.501 228 64) (162.769 205.285 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1519" + "plane" "(162.767 205.286 80) (167.499 228 80) (174.357 238.285 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1518" + "plane" "(166.662 199.445 80) (166.662 199.445 64) (162.768 205.286 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1517" + "plane" "(174.358 238.283 80) (174.357 238.286 64) (182.728 198.107 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1437" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1441" + side + { + "id" "1530" + "plane" "(174.357 238.286 64) (188.501 259.501 64) (188.506 259.504 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1529" + "plane" "(188.506 259.503 80) (188.501 259.501 64) (199.601 266.885 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1528" + "plane" "(185.229 197.898 64) (182.728 198.106 64) (182.728 198.106 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1527" + "plane" "(199.601 266.884 64) (188.501 259.499 64) (174.357 238.285 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1526" + "plane" "(174.358 238.284 80) (188.502 259.502 80) (199.601 266.885 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1525" + "plane" "(182.728 198.106 80) (182.728 198.107 64) (174.357 238.288 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1524" + "plane" "(199.601 266.884 80) (199.601 266.885 64) (185.229 197.897 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1437" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1442" + side + { + "id" "1537" + "plane" "(199.601 266.886 64) (209.748 273.636 64) (209.748 273.636 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1536" + "plane" "(223.131 270.848 64) (223.538 269.87 64) (223.538 269.87 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1535" + "plane" "(209.748 273.636 64) (199.601 266.885 64) (189.625 219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1534" + "plane" "(199.601 266.885 80) (209.748 273.636 80) (223.132 270.847 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1533" + "plane" "(209.747 273.636 80) (209.746 273.636 64) (223.131 270.847 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1532" + "plane" "(189.625 219 64) (199.602 266.886 64) (199.601 266.885 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1531" + "plane" "(223.538 269.87 80) (223.538 269.87 64) (189.625 219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1437" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1443" + side + { + "id" "1542" + "plane" "(223.538 269.87 64) (228.476 258 64) (228.476 258 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1541" + "plane" "(228.476 258 64) (223.538 269.87 64) (205.375 242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1540" + "plane" "(223.538 269.87 80) (228.476 258 80) (205.375 242.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1539" + "plane" "(205.375 242.625 64) (223.539 269.871 64) (223.539 269.871 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1538" + "plane" "(228.476 258 80) (228.476 258 64) (205.375 242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1437" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1446" + side + { + "id" "1565" + "plane" "(219.316 104 80) (219.314 104 64) (209.747 110.364 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1564" + "plane" "(223.131 113.152 64) (219.315 104 64) (219.317 104 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1563" + "plane" "(209.753 110.365 64) (219.316 104 64) (223.13 113.152 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1562" + "plane" "(219.316 104 80) (209.749 110.364 80) (223.132 113.153 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1561" + "plane" "(209.751 110.365 80) (209.749 110.365 64) (223.13 113.153 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1445" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1447" + side + { + "id" "1572" + "plane" "(209.747 110.364 64) (188.503 124.498 64) (188.499 124.502 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1571" + "plane" "(188.496 124.504 80) (188.5 124.5 64) (181.096 135.605 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1570" + "plane" "(228.384 125.753 64) (223.131 113.152 64) (223.133 113.153 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1569" + "plane" "(181.101 135.604 64) (188.5 124.505 64) (209.753 110.365 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1568" + "plane" "(209.749 110.364 80) (188.496 124.503 80) (181.095 135.605 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1567" + "plane" "(223.133 113.153 80) (223.131 113.152 64) (209.749 110.365 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1566" + "plane" "(181.097 135.605 80) (181.098 135.605 64) (228.383 125.754 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1445" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1448" + side + { + "id" "1579" + "plane" "(181.097 135.605 64) (167.498 156 64) (167.497 156 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1578" + "plane" "(167.498 156 80) (167.499 156 64) (164.929 168.339 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1577" + "plane" "(228.476 126 64) (228.384 125.753 64) (228.386 125.753 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1576" + "plane" "(164.928 168.34 64) (167.496 156 64) (181.101 135.604 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1575" + "plane" "(181.097 135.605 80) (167.495 156 80) (164.926 168.341 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1574" + "plane" "(228.386 125.753 80) (228.384 125.754 64) (181.099 135.605 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1573" + "plane" "(164.928 168.339 80) (164.929 168.339 64) (228.476 126 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1445" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1449" + side + { + "id" "1585" + "plane" "(164.929 168.339 64) (161.638 184.136 64) (161.637 184.135 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1584" + "plane" "(161.637 184.136 80) (161.638 184.137 64) (176.066 185.339 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1583" + "plane" "(161.638 184.136 64) (164.929 168.339 64) (205.375 141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1582" + "plane" "(164.927 168.34 80) (161.636 184.136 80) (176.066 185.339 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1581" + "plane" "(205.375 141.375 64) (164.927 168.34 64) (164.926 168.341 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1580" + "plane" "(176.066 185.339 80) (176.066 185.339 64) (205.376 141.374 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1445" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1450" + side + { + "id" "1590" + "plane" "(176.066 185.339 64) (185.229 186.102 64) (185.229 186.102 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1589" + "plane" "(185.229 186.102 64) (176.066 185.339 64) (189.625 165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1588" + "plane" "(176.066 185.339 80) (185.229 186.102 80) (189.625 165 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1587" + "plane" "(189.625 165 64) (176.066 185.338 64) (176.066 185.338 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1586" + "plane" "(185.229 186.102 80) (185.229 186.102 64) (189.625 165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1445" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1452" + side + { + "id" "1595" + "plane" "(349.233 178.713 80) (350.363 184.137 80) (350.361 184.137 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1594" + "plane" "(345.339 184.555 64) (350.362 184.136 64) (350.364 184.136 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1593" + "plane" "(349.233 178.713 64) (350.363 184.136 64) (345.339 184.555 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1592" + "plane" "(350.362 184.135 80) (349.233 178.714 80) (345.339 184.553 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1591" + "plane" "(349.234 178.711 80) (349.233 178.713 64) (345.338 184.555 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1451" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1453" + side + { + "id" "1602" + "plane" "(344.501 156 64) (344.505 156 80) (349.233 178.713 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1601" + "plane" "(344.506 156 80) (344.501 156 64) (337.643 145.714 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1600" + "plane" "(329.272 185.894 64) (345.339 184.555 64) (345.338 184.555 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1599" + "plane" "(337.643 145.714 64) (344.503 156 64) (349.233 178.713 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1598" + "plane" "(349.233 178.714 80) (344.503 156 80) (337.642 145.716 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1597" + "plane" "(345.338 184.555 80) (345.338 184.555 64) (349.233 178.713 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1596" + "plane" "(337.642 145.717 80) (337.643 145.713 64) (329.272 185.895 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1451" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1454" + side + { + "id" "1609" + "plane" "(337.643 145.714 64) (323.51 124.51 64) (323.503 124.504 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1608" + "plane" "(323.502 124.502 80) (323.509 124.508 64) (312.399 117.116 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1607" + "plane" "(326.771 186.102 64) (329.272 185.894 64) (329.272 185.894 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1606" + "plane" "(312.399 117.117 64) (323.508 124.508 64) (337.643 145.715 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1605" + "plane" "(337.642 145.72 80) (323.502 124.504 80) (312.399 117.117 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1604" + "plane" "(329.272 185.895 80) (329.272 185.894 64) (337.643 145.713 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1603" + "plane" "(312.399 117.116 80) (312.399 117.117 64) (326.771 186.103 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1451" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1455" + side + { + "id" "1615" + "plane" "(312.399 117.116 64) (292.685 104 64) (292.685 104 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1614" + "plane" "(292.684 104 80) (292.684 104 64) (288.461 114.13 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1613" + "plane" "(288.461 114.129 64) (292.683 104 64) (312.4 117.119 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1612" + "plane" "(312.399 117.114 80) (292.683 104 80) (288.46 114.127 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1611" + "plane" "(322.375 165 64) (312.399 117.118 64) (312.399 117.117 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1610" + "plane" "(288.462 114.129 80) (288.462 114.129 64) (322.375 165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1451" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1456" + side + { + "id" "1620" + "plane" "(288.461 114.13 64) (283.524 126 64) (283.524 126 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1619" + "plane" "(283.524 126 64) (288.461 114.13 64) (306.625 141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1618" + "plane" "(288.461 114.13 80) (283.524 126 80) (306.625 141.375 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1617" + "plane" "(306.625 141.375 64) (288.463 114.131 64) (288.463 114.131 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1616" + "plane" "(283.524 126 80) (283.524 126 64) (306.625 141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1451" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1458" + side + { + "id" "1626" + "plane" "(292.682 280 80) (292.682 280 64) (323.51 259.489 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1625" + "plane" "(323.512 259.486 80) (323.508 259.49 64) (330.904 248.395 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1624" + "plane" "(283.615 258.247 64) (292.683 280 64) (292.682 280 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1623" + "plane" "(323.512 259.487 64) (292.682 280 64) (283.615 258.247 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1622" + "plane" "(283.617 258.246 80) (292.684 280 80) (323.51 259.488 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1621" + "plane" "(330.907 248.394 80) (330.906 248.394 64) (283.616 258.246 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1457" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1459" + side + { + "id" "1633" + "plane" "(330.904 248.395 64) (344.501 228 64) (344.502 228 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1632" + "plane" "(344.5 228 80) (344.5 228 64) (347.071 215.661 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1631" + "plane" "(283.523 258 64) (283.615 258.247 64) (283.615 258.247 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1630" + "plane" "(347.069 215.662 64) (344.5 228 64) (330.903 248.395 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1629" + "plane" "(283.524 258 80) (283.617 258.247 80) (330.903 248.395 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1628" + "plane" "(283.615 258.246 80) (283.615 258.246 64) (330.907 248.394 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1627" + "plane" "(347.072 215.661 80) (347.072 215.661 64) (283.524 258 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1457" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1460" + side + { + "id" "1639" + "plane" "(347.071 215.661 64) (350.361 199.863 64) (350.362 199.863 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1638" + "plane" "(350.362 199.864 80) (350.362 199.863 64) (335.934 198.661 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1637" + "plane" "(350.362 199.862 64) (347.071 215.661 64) (306.625 242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1636" + "plane" "(306.625 242.625 80) (347.07 215.662 80) (350.361 199.863 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1635" + "plane" "(306.625 242.624 64) (347.071 215.661 64) (347.072 215.66 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1634" + "plane" "(335.934 198.661 80) (335.934 198.661 64) (306.625 242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1457" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1461" + side + { + "id" "1644" + "plane" "(335.934 198.661 64) (326.771 197.898 64) (326.771 197.898 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1643" + "plane" "(326.771 197.898 64) (335.934 198.661 64) (322.375 219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1642" + "plane" "(335.934 198.661 80) (326.771 197.898 80) (322.375 219 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1641" + "plane" "(322.375 219 64) (335.934 198.661 64) (335.934 198.661 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1640" + "plane" "(326.771 197.897 80) (326.771 197.897 64) (322.374 219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1457" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548" + side + { + "id" "1974" + "plane" "(232 -133 88) (211 -147 88) (197 -168 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1973" + "plane" "(256 -128 96) (280 -133 96) (301 -147 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1972" + "plane" "(256 -128 88) (280 -133 88) (280 -133 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1971" + "plane" "(280 -133 88) (301 -147 88) (301 -147 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1970" + "plane" "(301 -147 88) (315 -168 88) (315 -168 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1969" + "plane" "(315 -168 88) (320 -192 88) (320 -192 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1968" + "plane" "(320 -192 88) (315 -216 88) (315 -216 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1967" + "plane" "(315 -216 88) (301 -237 88) (301 -237 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1966" + "plane" "(301 -237 88) (280 -251 88) (280 -251 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1965" + "plane" "(280 -251 88) (256 -256 88) (256 -256 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1964" + "plane" "(256 -256 88) (232 -251 88) (232 -251 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1963" + "plane" "(232 -251 88) (211 -237 88) (211 -237 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1962" + "plane" "(211 -237 88) (197 -216 88) (197 -216 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1961" + "plane" "(197 -216 88) (192 -192 88) (192 -192 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1960" + "plane" "(192 -192 88) (197 -168 88) (197 -168 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1959" + "plane" "(197 -168 88) (211 -147 88) (211 -147 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1958" + "plane" "(211 -147 88) (232 -133 88) (232 -133 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1957" + "plane" "(232 -133 88) (256 -128 88) (256 -128 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1547" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1556" + side + { + "id" "2028" + "plane" "(238 -147.75 64) (222.25 -158.25 64) (211.75 -174 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2027" + "plane" "(256 -144 88) (274 -147.75 88) (289.75 -158.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2026" + "plane" "(256 -144 64) (274 -147.75 64) (274 -147.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2025" + "plane" "(274 -147.75 64) (289.75 -158.25 64) (289.75 -158.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2024" + "plane" "(289.75 -158.25 64) (300.25 -174 64) (300.25 -174 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2023" + "plane" "(300.25 -174 64) (304 -192 64) (304 -192 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2022" + "plane" "(304 -192 64) (300.25 -210 64) (300.25 -210 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2021" + "plane" "(300.25 -210 64) (289.75 -225.75 64) (289.75 -225.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2020" + "plane" "(289.75 -225.75 64) (274 -236.25 64) (274 -236.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2019" + "plane" "(274 -236.25 64) (256 -240 64) (256 -240 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2018" + "plane" "(256 -240 64) (238 -236.25 64) (238 -236.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2017" + "plane" "(238 -236.25 64) (222.25 -225.75 64) (222.25 -225.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2016" + "plane" "(222.25 -225.75 64) (211.75 -210 64) (211.75 -210 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2015" + "plane" "(211.75 -210 64) (208 -192 64) (208 -192 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2014" + "plane" "(208 -192 64) (211.75 -174 64) (211.75 -174 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2013" + "plane" "(211.75 -174 64) (222.25 -158.25 64) (222.25 -158.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2012" + "plane" "(222.25 -158.25 64) (238 -147.75 64) (238 -147.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2011" + "plane" "(238 -147.75 64) (256 -144 64) (256 -144 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1547" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1550" + side + { + "id" "1979" + "plane" "(209.748 -110.364 64) (219.315 -104 64) (219.315 -104 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1978" + "plane" "(219.315 -104 80) (219.315 -104 64) (223.13 -113.152 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1977" + "plane" "(219.315 -104 64) (209.748 -110.364 64) (223.131 -113.152 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1976" + "plane" "(209.749 -110.364 80) (219.316 -104 80) (223.131 -113.152 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1975" + "plane" "(223.132 -113.153 80) (223.132 -113.153 64) (209.747 -110.365 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1549" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1551" + side + { + "id" "1984" + "plane" "(161.637 -184.136 80) (161.638 -184.136 64) (162.767 -178.713 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1983" + "plane" "(166.661 -184.555 64) (161.638 -184.136 64) (161.638 -184.136 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1982" + "plane" "(162.769 -178.715 64) (161.639 -184.136 64) (166.662 -184.555 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1981" + "plane" "(161.638 -184.135 80) (162.767 -178.714 80) (166.661 -184.553 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1980" + "plane" "(162.767 -178.714 80) (162.768 -178.714 64) (166.661 -184.555 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1549" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1552" + side + { + "id" "1991" + "plane" "(162.767 -178.713 64) (167.499 -156 64) (167.497 -156 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1990" + "plane" "(167.498 -156 80) (167.5 -156 64) (174.357 -145.714 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1989" + "plane" "(182.728 -185.894 64) (166.661 -184.555 64) (166.662 -184.555 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1988" + "plane" "(174.357 -145.715 64) (167.501 -156 64) (162.769 -178.715 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1987" + "plane" "(162.767 -178.714 80) (167.499 -156 80) (174.357 -145.715 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1986" + "plane" "(166.662 -184.555 80) (166.662 -184.555 64) (162.768 -178.714 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1985" + "plane" "(174.358 -145.717 80) (174.357 -145.714 64) (182.728 -185.893 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1549" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1553" + side + { + "id" "1998" + "plane" "(174.357 -145.714 64) (188.501 -124.499 64) (188.506 -124.496 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1997" + "plane" "(188.506 -124.497 80) (188.501 -124.499 64) (199.601 -117.115 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1996" + "plane" "(185.229 -186.102 64) (182.728 -185.894 64) (182.728 -185.894 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1995" + "plane" "(199.601 -117.116 64) (188.501 -124.501 64) (174.357 -145.715 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1994" + "plane" "(174.358 -145.716 80) (188.502 -124.498 80) (199.601 -117.115 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1993" + "plane" "(182.728 -185.894 80) (182.728 -185.893 64) (174.357 -145.712 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1992" + "plane" "(199.601 -117.116 80) (199.601 -117.115 64) (185.229 -186.103 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1549" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1554" + side + { + "id" "2005" + "plane" "(199.601 -117.114 64) (209.748 -110.364 64) (209.748 -110.364 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2004" + "plane" "(223.131 -113.152 64) (223.538 -114.13 64) (223.538 -114.13 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2003" + "plane" "(209.748 -110.364 64) (199.601 -117.115 64) (189.625 -165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2002" + "plane" "(199.601 -117.115 80) (209.748 -110.364 80) (223.132 -113.153 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2001" + "plane" "(209.747 -110.364 80) (209.746 -110.364 64) (223.131 -113.153 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2000" + "plane" "(189.625 -165 64) (199.602 -117.114 64) (199.601 -117.115 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1999" + "plane" "(223.538 -114.13 80) (223.538 -114.13 64) (189.625 -165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1549" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1555" + side + { + "id" "2010" + "plane" "(223.538 -114.13 64) (228.476 -126 64) (228.476 -126 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2009" + "plane" "(228.476 -126 64) (223.538 -114.13 64) (205.375 -141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2008" + "plane" "(223.538 -114.13 80) (228.476 -126 80) (205.375 -141.375 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2007" + "plane" "(205.375 -141.375 64) (223.539 -114.129 64) (223.539 -114.129 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2006" + "plane" "(228.476 -126 80) (228.476 -126 64) (205.375 -141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1549" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1558" + side + { + "id" "2033" + "plane" "(219.316 -280 80) (219.314 -280 64) (209.747 -273.636 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2032" + "plane" "(223.131 -270.848 64) (219.315 -280 64) (219.317 -280 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2031" + "plane" "(209.753 -273.635 64) (219.316 -280 64) (223.13 -270.848 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2030" + "plane" "(219.316 -280 80) (209.749 -273.636 80) (223.132 -270.847 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2029" + "plane" "(209.751 -273.635 80) (209.749 -273.635 64) (223.13 -270.847 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1557" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1559" + side + { + "id" "2040" + "plane" "(209.747 -273.636 64) (188.503 -259.502 64) (188.499 -259.498 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2039" + "plane" "(188.496 -259.496 80) (188.5 -259.5 64) (181.096 -248.395 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2038" + "plane" "(228.384 -258.247 64) (223.131 -270.848 64) (223.133 -270.847 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2037" + "plane" "(181.101 -248.396 64) (188.5 -259.495 64) (209.753 -273.635 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2036" + "plane" "(209.749 -273.636 80) (188.496 -259.497 80) (181.095 -248.395 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2035" + "plane" "(223.133 -270.847 80) (223.131 -270.848 64) (209.749 -273.635 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2034" + "plane" "(181.097 -248.395 80) (181.098 -248.395 64) (228.383 -258.246 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1557" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1560" + side + { + "id" "2047" + "plane" "(181.097 -248.395 64) (167.498 -228 64) (167.497 -228 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2046" + "plane" "(167.498 -228 80) (167.499 -228 64) (164.929 -215.661 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2045" + "plane" "(228.476 -258 64) (228.384 -258.247 64) (228.386 -258.247 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2044" + "plane" "(164.928 -215.66 64) (167.496 -228 64) (181.101 -248.396 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2043" + "plane" "(181.097 -248.395 80) (167.495 -228 80) (164.926 -215.659 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2042" + "plane" "(228.386 -258.247 80) (228.384 -258.246 64) (181.099 -248.395 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2041" + "plane" "(164.928 -215.661 80) (164.929 -215.661 64) (228.476 -258 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1557" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1561" + side + { + "id" "2053" + "plane" "(164.929 -215.661 64) (161.638 -199.864 64) (161.637 -199.865 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2052" + "plane" "(161.637 -199.864 80) (161.638 -199.863 64) (176.066 -198.661 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2051" + "plane" "(161.638 -199.864 64) (164.929 -215.661 64) (205.375 -242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2050" + "plane" "(164.927 -215.66 80) (161.636 -199.864 80) (176.066 -198.661 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2049" + "plane" "(205.375 -242.625 64) (164.927 -215.66 64) (164.926 -215.659 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2048" + "plane" "(176.066 -198.661 80) (176.066 -198.661 64) (205.376 -242.626 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1557" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1562" + side + { + "id" "2058" + "plane" "(176.066 -198.661 64) (185.229 -197.898 64) (185.229 -197.898 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2057" + "plane" "(185.229 -197.898 64) (176.066 -198.661 64) (189.625 -219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2056" + "plane" "(176.066 -198.661 80) (185.229 -197.898 80) (189.625 -219 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2055" + "plane" "(189.625 -219 64) (176.066 -198.662 64) (176.066 -198.662 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2054" + "plane" "(185.229 -197.898 80) (185.229 -197.898 64) (189.625 -219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1557" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1564" + side + { + "id" "2063" + "plane" "(349.233 -205.287 80) (350.363 -199.863 80) (350.361 -199.863 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2062" + "plane" "(345.339 -199.445 64) (350.362 -199.864 64) (350.364 -199.864 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2061" + "plane" "(349.233 -205.287 64) (350.363 -199.864 64) (345.339 -199.445 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2060" + "plane" "(350.362 -199.865 80) (349.233 -205.286 80) (345.339 -199.447 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2059" + "plane" "(349.234 -205.289 80) (349.233 -205.287 64) (345.338 -199.445 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1563" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1565" + side + { + "id" "2070" + "plane" "(344.501 -228 64) (344.505 -228 80) (349.233 -205.287 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2069" + "plane" "(344.506 -228 80) (344.501 -228 64) (337.643 -238.286 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2068" + "plane" "(329.272 -198.106 64) (345.339 -199.445 64) (345.338 -199.445 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2067" + "plane" "(337.643 -238.286 64) (344.503 -228 64) (349.233 -205.287 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2066" + "plane" "(349.233 -205.286 80) (344.503 -228 80) (337.642 -238.284 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2065" + "plane" "(345.338 -199.445 80) (345.338 -199.445 64) (349.233 -205.287 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2064" + "plane" "(337.642 -238.283 80) (337.643 -238.287 64) (329.272 -198.105 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1563" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1566" + side + { + "id" "2077" + "plane" "(337.643 -238.286 64) (323.51 -259.49 64) (323.503 -259.496 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2076" + "plane" "(323.502 -259.498 80) (323.509 -259.492 64) (312.399 -266.884 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2075" + "plane" "(326.771 -197.898 64) (329.272 -198.106 64) (329.272 -198.106 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2074" + "plane" "(312.399 -266.883 64) (323.508 -259.492 64) (337.643 -238.285 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2073" + "plane" "(337.642 -238.28 80) (323.502 -259.496 80) (312.399 -266.883 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2072" + "plane" "(329.272 -198.105 80) (329.272 -198.106 64) (337.643 -238.287 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2071" + "plane" "(312.399 -266.884 80) (312.399 -266.883 64) (326.771 -197.897 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1563" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567" + side + { + "id" "2083" + "plane" "(312.399 -266.884 64) (292.685 -280 64) (292.685 -280 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2082" + "plane" "(292.684 -280 80) (292.684 -280 64) (288.461 -269.87 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2081" + "plane" "(288.461 -269.871 64) (292.683 -280 64) (312.4 -266.881 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2080" + "plane" "(312.399 -266.886 80) (292.683 -280 80) (288.46 -269.873 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2079" + "plane" "(322.375 -219 64) (312.399 -266.882 64) (312.399 -266.883 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2078" + "plane" "(288.462 -269.871 80) (288.462 -269.871 64) (322.375 -219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1563" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1568" + side + { + "id" "2088" + "plane" "(288.461 -269.87 64) (283.524 -258 64) (283.524 -258 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2087" + "plane" "(283.524 -258 64) (288.461 -269.87 64) (306.625 -242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2086" + "plane" "(288.461 -269.87 80) (283.524 -258 80) (306.625 -242.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2085" + "plane" "(306.625 -242.625 64) (288.463 -269.869 64) (288.463 -269.869 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2084" + "plane" "(283.524 -258 80) (283.524 -258 64) (306.625 -242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1563" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1570" + side + { + "id" "2094" + "plane" "(292.682 -104 80) (292.682 -104 64) (323.51 -124.511 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2093" + "plane" "(323.512 -124.514 80) (323.508 -124.51 64) (330.904 -135.605 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2092" + "plane" "(283.615 -125.753 64) (292.683 -104 64) (292.682 -104 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2091" + "plane" "(323.512 -124.513 64) (292.682 -104 64) (283.615 -125.753 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2090" + "plane" "(283.617 -125.754 80) (292.684 -104 80) (323.51 -124.512 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2089" + "plane" "(330.907 -135.606 80) (330.906 -135.606 64) (283.616 -125.754 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1569" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1571" + side + { + "id" "2101" + "plane" "(330.904 -135.605 64) (344.501 -156 64) (344.502 -156 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2100" + "plane" "(344.5 -156 80) (344.5 -156 64) (347.071 -168.339 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2099" + "plane" "(283.523 -126 64) (283.615 -125.753 64) (283.615 -125.753 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2098" + "plane" "(347.069 -168.338 64) (344.5 -156 64) (330.903 -135.605 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2097" + "plane" "(283.524 -126 80) (283.617 -125.753 80) (330.903 -135.605 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2096" + "plane" "(283.615 -125.754 80) (283.615 -125.754 64) (330.907 -135.606 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2095" + "plane" "(347.072 -168.339 80) (347.072 -168.339 64) (283.524 -126 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1569" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1572" + side + { + "id" "2107" + "plane" "(347.071 -168.339 64) (350.361 -184.137 64) (350.362 -184.137 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2106" + "plane" "(350.362 -184.136 80) (350.362 -184.137 64) (335.934 -185.339 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2105" + "plane" "(350.362 -184.138 64) (347.071 -168.339 64) (306.625 -141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2104" + "plane" "(306.625 -141.375 80) (347.07 -168.338 80) (350.361 -184.137 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2103" + "plane" "(306.625 -141.376 64) (347.071 -168.339 64) (347.072 -168.34 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2102" + "plane" "(335.934 -185.339 80) (335.934 -185.339 64) (306.625 -141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1569" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1573" + side + { + "id" "2112" + "plane" "(335.934 -185.339 64) (326.771 -186.102 64) (326.771 -186.102 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2111" + "plane" "(326.771 -186.102 64) (335.934 -185.339 64) (322.375 -165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2110" + "plane" "(335.934 -185.339 80) (326.771 -186.102 80) (322.375 -165 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2109" + "plane" "(322.375 -165 64) (335.934 -185.339 64) (335.934 -185.339 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2108" + "plane" "(326.771 -186.103 80) (326.771 -186.103 64) (322.374 -165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1569" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1576" + side + { + "id" "2130" + "plane" "(-280 -133 88) (-301 -147 88) (-315 -168 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2129" + "plane" "(-256 -128 96) (-232 -133 96) (-211 -147 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2128" + "plane" "(-256 -128 88) (-232 -133 88) (-232 -133 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2127" + "plane" "(-232 -133 88) (-211 -147 88) (-211 -147 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2126" + "plane" "(-211 -147 88) (-197 -168 88) (-197 -168 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2125" + "plane" "(-197 -168 88) (-192 -192 88) (-192 -192 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2124" + "plane" "(-192 -192 88) (-197 -216 88) (-197 -216 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2123" + "plane" "(-197 -216 88) (-211 -237 88) (-211 -237 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2122" + "plane" "(-211 -237 88) (-232 -251 88) (-232 -251 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2121" + "plane" "(-232 -251 88) (-256 -256 88) (-256 -256 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2120" + "plane" "(-256 -256 88) (-280 -251 88) (-280 -251 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2119" + "plane" "(-280 -251 88) (-301 -237 88) (-301 -237 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2118" + "plane" "(-301 -237 88) (-315 -216 88) (-315 -216 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2117" + "plane" "(-315 -216 88) (-320 -192 88) (-320 -192 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2116" + "plane" "(-320 -192 88) (-315 -168 88) (-315 -168 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2115" + "plane" "(-315 -168 88) (-301 -147 88) (-301 -147 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2114" + "plane" "(-301 -147 88) (-280 -133 88) (-280 -133 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2113" + "plane" "(-280 -133 88) (-256 -128 88) (-256 -128 96)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1575" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1584" + side + { + "id" "2184" + "plane" "(-274 -147.75 64) (-289.75 -158.25 64) (-300.25 -174 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2183" + "plane" "(-256 -144 88) (-238 -147.75 88) (-222.25 -158.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2182" + "plane" "(-256 -144 64) (-238 -147.75 64) (-238 -147.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2181" + "plane" "(-238 -147.75 64) (-222.25 -158.25 64) (-222.25 -158.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2180" + "plane" "(-222.25 -158.25 64) (-211.75 -174 64) (-211.75 -174 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2179" + "plane" "(-211.75 -174 64) (-208 -192 64) (-208 -192 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2178" + "plane" "(-208 -192 64) (-211.75 -210 64) (-211.75 -210 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2177" + "plane" "(-211.75 -210 64) (-222.25 -225.75 64) (-222.25 -225.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2176" + "plane" "(-222.25 -225.75 64) (-238 -236.25 64) (-238 -236.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2175" + "plane" "(-238 -236.25 64) (-256 -240 64) (-256 -240 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2174" + "plane" "(-256 -240 64) (-274 -236.25 64) (-274 -236.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2173" + "plane" "(-274 -236.25 64) (-289.75 -225.75 64) (-289.75 -225.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2172" + "plane" "(-289.75 -225.75 64) (-300.25 -210 64) (-300.25 -210 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2171" + "plane" "(-300.25 -210 64) (-304 -192 64) (-304 -192 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2170" + "plane" "(-304 -192 64) (-300.25 -174 64) (-300.25 -174 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2169" + "plane" "(-300.25 -174 64) (-289.75 -158.25 64) (-289.75 -158.25 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2168" + "plane" "(-289.75 -158.25 64) (-274 -147.75 64) (-274 -147.75 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2167" + "plane" "(-274 -147.75 64) (-256 -144 64) (-256 -144 88)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1575" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1578" + side + { + "id" "2135" + "plane" "(-302.252 -110.364 64) (-292.685 -104 64) (-292.685 -104 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2134" + "plane" "(-292.685 -104 80) (-292.685 -104 64) (-288.87 -113.152 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2133" + "plane" "(-292.685 -104 64) (-302.252 -110.364 64) (-288.869 -113.152 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2132" + "plane" "(-302.251 -110.364 80) (-292.684 -104 80) (-288.869 -113.152 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2131" + "plane" "(-288.868 -113.153 80) (-288.868 -113.153 64) (-302.253 -110.365 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1577" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1579" + side + { + "id" "2140" + "plane" "(-350.363 -184.136 80) (-350.362 -184.136 64) (-349.233 -178.713 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2139" + "plane" "(-345.339 -184.555 64) (-350.362 -184.136 64) (-350.362 -184.136 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2138" + "plane" "(-349.231 -178.715 64) (-350.361 -184.136 64) (-345.338 -184.555 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2137" + "plane" "(-350.362 -184.135 80) (-349.233 -178.714 80) (-345.339 -184.553 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2136" + "plane" "(-349.233 -178.714 80) (-349.232 -178.714 64) (-345.339 -184.555 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1577" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1580" + side + { + "id" "2147" + "plane" "(-349.233 -178.713 64) (-344.501 -156 64) (-344.503 -156 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2146" + "plane" "(-344.502 -156 80) (-344.5 -156 64) (-337.643 -145.714 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2145" + "plane" "(-329.272 -185.894 64) (-345.339 -184.555 64) (-345.338 -184.555 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2144" + "plane" "(-337.643 -145.715 64) (-344.499 -156 64) (-349.231 -178.715 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2143" + "plane" "(-349.233 -178.714 80) (-344.501 -156 80) (-337.643 -145.715 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2142" + "plane" "(-345.338 -184.555 80) (-345.338 -184.555 64) (-349.232 -178.714 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2141" + "plane" "(-337.642 -145.717 80) (-337.643 -145.714 64) (-329.272 -185.893 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1577" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1581" + side + { + "id" "2154" + "plane" "(-337.643 -145.714 64) (-323.499 -124.499 64) (-323.494 -124.496 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2153" + "plane" "(-323.494 -124.497 80) (-323.499 -124.499 64) (-312.399 -117.115 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2152" + "plane" "(-326.771 -186.102 64) (-329.272 -185.894 64) (-329.272 -185.894 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2151" + "plane" "(-312.399 -117.116 64) (-323.499 -124.501 64) (-337.643 -145.715 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2150" + "plane" "(-337.642 -145.716 80) (-323.498 -124.498 80) (-312.399 -117.115 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2149" + "plane" "(-329.272 -185.894 80) (-329.272 -185.893 64) (-337.643 -145.712 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2148" + "plane" "(-312.399 -117.116 80) (-312.399 -117.115 64) (-326.771 -186.103 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1577" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1582" + side + { + "id" "2161" + "plane" "(-312.399 -117.114 64) (-302.252 -110.364 64) (-302.252 -110.364 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2160" + "plane" "(-288.869 -113.152 64) (-288.462 -114.13 64) (-288.462 -114.13 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2159" + "plane" "(-302.252 -110.364 64) (-312.399 -117.115 64) (-322.375 -165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2158" + "plane" "(-312.399 -117.115 80) (-302.252 -110.364 80) (-288.868 -113.153 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2157" + "plane" "(-302.253 -110.364 80) (-302.254 -110.364 64) (-288.869 -113.153 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2156" + "plane" "(-322.375 -165 64) (-312.398 -117.114 64) (-312.399 -117.115 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2155" + "plane" "(-288.462 -114.13 80) (-288.462 -114.13 64) (-322.375 -165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1577" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1583" + side + { + "id" "2166" + "plane" "(-288.462 -114.13 64) (-283.524 -126 64) (-283.524 -126 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2165" + "plane" "(-283.524 -126 64) (-288.462 -114.13 64) (-306.625 -141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2164" + "plane" "(-288.462 -114.13 80) (-283.524 -126 80) (-306.625 -141.375 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2163" + "plane" "(-306.625 -141.375 64) (-288.461 -114.129 64) (-288.461 -114.129 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2162" + "plane" "(-283.524 -126 80) (-283.524 -126 64) (-306.625 -141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1577" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1586" + side + { + "id" "2189" + "plane" "(-292.684 -280 80) (-292.686 -280 64) (-302.253 -273.636 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2188" + "plane" "(-288.869 -270.848 64) (-292.685 -280 64) (-292.683 -280 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2187" + "plane" "(-302.247 -273.635 64) (-292.684 -280 64) (-288.87 -270.848 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2186" + "plane" "(-292.684 -280 80) (-302.251 -273.636 80) (-288.868 -270.847 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2185" + "plane" "(-302.249 -273.635 80) (-302.251 -273.635 64) (-288.87 -270.847 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1585" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1587" + side + { + "id" "2196" + "plane" "(-302.253 -273.636 64) (-323.497 -259.502 64) (-323.501 -259.498 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2195" + "plane" "(-323.504 -259.496 80) (-323.5 -259.5 64) (-330.904 -248.395 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2194" + "plane" "(-283.616 -258.247 64) (-288.869 -270.848 64) (-288.867 -270.847 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2193" + "plane" "(-330.899 -248.396 64) (-323.5 -259.495 64) (-302.247 -273.635 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2192" + "plane" "(-302.251 -273.636 80) (-323.504 -259.497 80) (-330.905 -248.395 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2191" + "plane" "(-288.867 -270.847 80) (-288.869 -270.848 64) (-302.251 -273.635 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2190" + "plane" "(-330.903 -248.395 80) (-330.902 -248.395 64) (-283.617 -258.246 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1585" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1588" + side + { + "id" "2203" + "plane" "(-330.903 -248.395 64) (-344.502 -228 64) (-344.503 -228 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2202" + "plane" "(-344.502 -228 80) (-344.501 -228 64) (-347.071 -215.661 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2201" + "plane" "(-283.524 -258 64) (-283.616 -258.247 64) (-283.614 -258.247 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2200" + "plane" "(-347.072 -215.66 64) (-344.504 -228 64) (-330.899 -248.396 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2199" + "plane" "(-330.903 -248.395 80) (-344.505 -228 80) (-347.074 -215.659 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2198" + "plane" "(-283.614 -258.247 80) (-283.616 -258.246 64) (-330.901 -248.395 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2197" + "plane" "(-347.072 -215.661 80) (-347.071 -215.661 64) (-283.524 -258 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1585" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1589" + side + { + "id" "2209" + "plane" "(-347.071 -215.661 64) (-350.362 -199.864 64) (-350.363 -199.865 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2208" + "plane" "(-350.363 -199.864 80) (-350.362 -199.863 64) (-335.934 -198.661 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2207" + "plane" "(-350.362 -199.864 64) (-347.071 -215.661 64) (-306.625 -242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2206" + "plane" "(-347.073 -215.66 80) (-350.364 -199.864 80) (-335.934 -198.661 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2205" + "plane" "(-306.625 -242.625 64) (-347.073 -215.66 64) (-347.074 -215.659 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2204" + "plane" "(-335.934 -198.661 80) (-335.934 -198.661 64) (-306.624 -242.626 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1585" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1590" + side + { + "id" "2214" + "plane" "(-335.934 -198.661 64) (-326.771 -197.898 64) (-326.771 -197.898 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2213" + "plane" "(-326.771 -197.898 64) (-335.934 -198.661 64) (-322.375 -219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2212" + "plane" "(-335.934 -198.661 80) (-326.771 -197.898 80) (-322.375 -219 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2211" + "plane" "(-322.375 -219 64) (-335.934 -198.662 64) (-335.934 -198.662 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2210" + "plane" "(-326.771 -197.898 80) (-326.771 -197.898 64) (-322.375 -219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1585" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1592" + side + { + "id" "2219" + "plane" "(-162.767 -205.287 80) (-161.637 -199.863 80) (-161.639 -199.863 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2218" + "plane" "(-166.661 -199.445 64) (-161.638 -199.864 64) (-161.636 -199.864 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2217" + "plane" "(-162.767 -205.287 64) (-161.637 -199.864 64) (-166.661 -199.445 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2216" + "plane" "(-161.638 -199.865 80) (-162.767 -205.286 80) (-166.661 -199.447 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2215" + "plane" "(-162.766 -205.289 80) (-162.767 -205.287 64) (-166.662 -199.445 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1591" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1593" + side + { + "id" "2226" + "plane" "(-167.499 -228 64) (-167.495 -228 80) (-162.767 -205.287 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2225" + "plane" "(-167.494 -228 80) (-167.499 -228 64) (-174.357 -238.286 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2224" + "plane" "(-182.728 -198.106 64) (-166.661 -199.445 64) (-166.662 -199.445 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2223" + "plane" "(-174.357 -238.286 64) (-167.497 -228 64) (-162.767 -205.287 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2222" + "plane" "(-162.767 -205.286 80) (-167.497 -228 80) (-174.358 -238.284 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2221" + "plane" "(-166.662 -199.445 80) (-166.662 -199.445 64) (-162.767 -205.287 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2220" + "plane" "(-174.358 -238.283 80) (-174.357 -238.287 64) (-182.728 -198.105 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1591" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1594" + side + { + "id" "2233" + "plane" "(-174.357 -238.286 64) (-188.49 -259.49 64) (-188.497 -259.496 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2232" + "plane" "(-188.498 -259.498 80) (-188.491 -259.492 64) (-199.601 -266.884 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2231" + "plane" "(-185.229 -197.898 64) (-182.728 -198.106 64) (-182.728 -198.106 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2230" + "plane" "(-199.601 -266.883 64) (-188.492 -259.492 64) (-174.357 -238.285 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2229" + "plane" "(-174.358 -238.28 80) (-188.498 -259.496 80) (-199.601 -266.883 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2228" + "plane" "(-182.728 -198.105 80) (-182.728 -198.106 64) (-174.357 -238.287 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2227" + "plane" "(-199.601 -266.884 80) (-199.601 -266.883 64) (-185.229 -197.897 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1591" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1595" + side + { + "id" "2239" + "plane" "(-199.601 -266.884 64) (-219.315 -280 64) (-219.315 -280 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2238" + "plane" "(-219.316 -280 80) (-219.316 -280 64) (-223.539 -269.87 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2237" + "plane" "(-223.539 -269.871 64) (-219.317 -280 64) (-199.6 -266.881 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2236" + "plane" "(-199.601 -266.886 80) (-219.317 -280 80) (-223.54 -269.873 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2235" + "plane" "(-189.625 -219 64) (-199.601 -266.882 64) (-199.601 -266.883 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2234" + "plane" "(-223.538 -269.871 80) (-223.538 -269.871 64) (-189.625 -219 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1591" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1596" + side + { + "id" "2244" + "plane" "(-223.539 -269.87 64) (-228.476 -258 64) (-228.476 -258 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2243" + "plane" "(-228.476 -258 64) (-223.539 -269.87 64) (-205.375 -242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2242" + "plane" "(-223.539 -269.87 80) (-228.476 -258 80) (-205.375 -242.625 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2241" + "plane" "(-205.375 -242.625 64) (-223.537 -269.869 64) (-223.537 -269.869 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2240" + "plane" "(-228.476 -258 80) (-228.476 -258 64) (-205.375 -242.625 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1591" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1598" + side + { + "id" "2250" + "plane" "(-219.318 -104 80) (-219.318 -104 64) (-188.49 -124.511 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2249" + "plane" "(-188.488 -124.514 80) (-188.492 -124.51 64) (-181.096 -135.605 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2248" + "plane" "(-228.385 -125.753 64) (-219.317 -104 64) (-219.318 -104 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2247" + "plane" "(-188.488 -124.513 64) (-219.318 -104 64) (-228.385 -125.753 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2246" + "plane" "(-228.383 -125.754 80) (-219.316 -104 80) (-188.49 -124.512 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2245" + "plane" "(-181.093 -135.606 80) (-181.094 -135.606 64) (-228.384 -125.754 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1597" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1599" + side + { + "id" "2257" + "plane" "(-181.096 -135.605 64) (-167.499 -156 64) (-167.498 -156 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2256" + "plane" "(-167.5 -156 80) (-167.5 -156 64) (-164.929 -168.339 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2255" + "plane" "(-228.477 -126 64) (-228.385 -125.753 64) (-228.385 -125.753 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2254" + "plane" "(-164.931 -168.338 64) (-167.5 -156 64) (-181.097 -135.605 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2253" + "plane" "(-228.476 -126 80) (-228.383 -125.753 80) (-181.097 -135.605 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2252" + "plane" "(-228.385 -125.754 80) (-228.385 -125.754 64) (-181.093 -135.606 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2251" + "plane" "(-164.928 -168.339 80) (-164.928 -168.339 64) (-228.476 -126 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1597" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1600" + side + { + "id" "2263" + "plane" "(-164.929 -168.339 64) (-161.639 -184.137 64) (-161.638 -184.137 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2262" + "plane" "(-161.638 -184.136 80) (-161.638 -184.137 64) (-176.066 -185.339 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2261" + "plane" "(-161.638 -184.138 64) (-164.929 -168.339 64) (-205.375 -141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2260" + "plane" "(-205.375 -141.375 80) (-164.93 -168.338 80) (-161.639 -184.137 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2259" + "plane" "(-205.375 -141.376 64) (-164.929 -168.339 64) (-164.928 -168.34 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2258" + "plane" "(-176.066 -185.339 80) (-176.066 -185.339 64) (-205.375 -141.375 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1597" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1601" + side + { + "id" "2268" + "plane" "(-176.066 -185.339 64) (-185.229 -186.102 64) (-185.229 -186.102 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2267" + "plane" "(-185.229 -186.102 64) (-176.066 -185.339 64) (-189.625 -165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2266" + "plane" "(-176.066 -185.339 80) (-185.229 -186.102 80) (-189.625 -165 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2265" + "plane" "(-189.625 -165 64) (-176.066 -185.339 64) (-176.066 -185.339 80)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2264" + "plane" "(-185.229 -186.103 80) (-185.229 -186.103 64) (-189.626 -165 64)" + "material" "DEV/DEV_MEASUREGENERIC01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 101 0" + "groupid" "1597" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2065" + side + { + "id" "2466" + "plane" "(-512 256 64) (-512 256 -25) (-256 512 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2465" + "plane" "(-32 256 -25) (-512 256 -25) (-512 256 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2464" + "plane" "(-256 512 64) (-256 512 -25) (-32 512 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2463" + "plane" "(-32 256 64) (-512 256 64) (-256 512 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2462" + "plane" "(-32 512 -25) (-256 512 -25) (-512 256 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2461" + "plane" "(-32 512 64) (-32 512 -25) (-32 256 -25)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "2073" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3727" + side + { + "id" "2892" + "plane" "(232 256 -25) (-32 256 -25) (-32 256 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2891" + "plane" "(-32 512 64) (-32 512 -25) (232 512 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2890" + "plane" "(-32 256 64) (-32 256 -25) (-32 512 -25)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2889" + "plane" "(232 256 64) (-32 256 64) (-32 512 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2888" + "plane" "(232 512 -25) (-32 512 -25) (-32 256 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2887" + "plane" "(232 512 64) (232 512 -25) (232 256 -25)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "3735" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3729" + side + { + "id" "2897" + "plane" "(296 472 -25) (512 256 -25) (512 256 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2896" + "plane" "(512 256 64) (512 256 -25) (296 256 -25)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2895" + "plane" "(296 472 64) (512 256 64) (296 256 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2894" + "plane" "(512 256 -25) (296 472 -25) (296 256 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2893" + "plane" "(296 256 64) (296 256 -25) (296 472 -25)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "3735" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3733" + side + { + "id" "2910" + "plane" "(296 256 -25) (232 256 -25) (232 256 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2909" + "plane" "(296 256 64) (232 256 64) (232 352 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2908" + "plane" "(232 352 -25) (232 256 -25) (296 256 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2907" + "plane" "(232 256 64) (232 256 -25) (232 352 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2906" + "plane" "(296 352 -25) (296 256 -25) (296 256 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2905" + "plane" "(232 352 -25) (296 352 -25) (296 352 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "3735" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4229" + side + { + "id" "2970" + "plane" "(232 512 -25) (256 512 -25) (256 512 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2969" + "plane" "(232 416 64) (232 512 64) (256 512 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2968" + "plane" "(256 512 -25) (232 512 -25) (232 416 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2967" + "plane" "(232 416 -25) (232 512 -25) (232 512 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2966" + "plane" "(256 416 -25) (232 416 -25) (232 416 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2965" + "plane" "(256 512 64) (256 512 -25) (256 416 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "3735" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4230" + side + { + "id" "2976" + "plane" "(256 512 64) (256 512 -25) (296 472 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2975" + "plane" "(256 512 64) (296 472 64) (296 416 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2974" + "plane" "(296 472 -25) (256 512 -25) (256 416 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2973" + "plane" "(296 472 64) (296 472 -25) (296 416 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2972" + "plane" "(296 416 -25) (256 416 -25) (256 416 64)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2971" + "plane" "(256 416 -25) (256 512 -25) (256 512 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "3735" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814" + side + { + "id" "3018" + "plane" "(-320 544 320) (320 544 320) (256 512 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3017" + "plane" "(-256 512 64) (256 512 64) (320 544 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3016" + "plane" "(-320 544 64) (320 544 64) (320 544 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3015" + "plane" "(256 512 64) (-256 512 64) (-256 512 320)" + "material" "DEV/DEV_MEASUREWALL01D" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3014" + "plane" "(320 544 64) (256 512 64) (256 512 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3013" + "plane" "(-256 512 64) (-320 544 64) (-320 544 320)" + "material" "DEV/DEV_MEASUREGENERIC01B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1320" + editor + { + "color" "188 101 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1292" + editor + { + "color" "188 101 0" + "groupid" "1320" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1223" + editor + { + "color" "188 101 0" + "groupid" "1292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1261" + editor + { + "color" "188 101 0" + "groupid" "1292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185" + editor + { + "color" "188 101 0" + "groupid" "1292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1147" + editor + { + "color" "188 101 0" + "groupid" "1292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1350" + editor + { + "color" "188 101 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1351" + editor + { + "color" "188 101 0" + "groupid" "1350" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1353" + editor + { + "color" "188 101 0" + "groupid" "1351" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1361" + editor + { + "color" "188 101 0" + "groupid" "1351" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1367" + editor + { + "color" "188 101 0" + "groupid" "1351" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1373" + editor + { + "color" "188 101 0" + "groupid" "1351" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1434" + editor + { + "color" "188 101 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1435" + editor + { + "color" "188 101 0" + "groupid" "1434" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1437" + editor + { + "color" "188 101 0" + "groupid" "1435" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1445" + editor + { + "color" "188 101 0" + "groupid" "1435" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1451" + editor + { + "color" "188 101 0" + "groupid" "1435" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1457" + editor + { + "color" "188 101 0" + "groupid" "1435" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1546" + editor + { + "color" "188 101 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1547" + editor + { + "color" "188 101 0" + "groupid" "1546" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1549" + editor + { + "color" "188 101 0" + "groupid" "1547" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1557" + editor + { + "color" "188 101 0" + "groupid" "1547" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1563" + editor + { + "color" "188 101 0" + "groupid" "1547" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1569" + editor + { + "color" "188 101 0" + "groupid" "1547" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1574" + editor + { + "color" "188 101 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1575" + editor + { + "color" "188 101 0" + "groupid" "1574" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1577" + editor + { + "color" "188 101 0" + "groupid" "1575" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1585" + editor + { + "color" "188 101 0" + "groupid" "1575" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1591" + editor + { + "color" "188 101 0" + "groupid" "1575" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1597" + editor + { + "color" "188 101 0" + "groupid" "1575" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2073" + editor + { + "color" "220 220 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3735" + editor + { + "color" "220 220 220" + "groupid" "2073" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "3" + "classname" "info_player_teamspawn" + "angles" "0 270 0" + "TeamNum" "2" + "origin" "0 192 64.9954" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "21" + "classname" "info_player_teamspawn" + "angles" "0 225 0" + "TeamNum" "2" + "origin" "64 128 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "33" + "classname" "info_player_teamspawn" + "angles" "0 0 0" + "TeamNum" "2" + "origin" "-192 0 64.9954" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "35" + "classname" "info_player_teamspawn" + "angles" "0 45 0" + "TeamNum" "2" + "origin" "-64 -128 64.9908" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "59" + "classname" "info_player_teamspawn" + "angles" "0 315 0" + "TeamNum" "2" + "origin" "-64 128 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "67" + "classname" "info_player_teamspawn" + "angles" "0 180 0" + "TeamNum" "2" + "origin" "192 0 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "75" + "classname" "info_player_teamspawn" + "angles" "0 135 0" + "TeamNum" "2" + "origin" "128 -64 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "83" + "classname" "info_player_teamspawn" + "angles" "0 90 0" + "TeamNum" "2" + "origin" "0 -192 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "107" + "classname" "info_player_teamspawn" + "angles" "0 315 0" + "TeamNum" "2" + "origin" "-128 64 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "113" + "classname" "info_player_teamspawn" + "angles" "0 45 0" + "TeamNum" "2" + "origin" "-128 -64 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "119" + "classname" "info_player_teamspawn" + "angles" "0 225 0" + "TeamNum" "2" + "origin" "128 64 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "125" + "classname" "info_player_teamspawn" + "angles" "0 135 0" + "TeamNum" "2" + "origin" "64 -128 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2003" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 255 1000" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "0 0 192" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3802" + "classname" "trigger_multiple" + "origin" "264 384 71.5" + "spawnflags" "1" + "StartDisabled" "0" + "targetname" "vent_cafe" + "ventdoor" "ventdoor_cafe" + "ventlocation1" "ventloc_hall" + "ventlocation1_name" "Right Hallway" + "ventlocation2" "ventloc_admin" + "ventlocation2_name" "Admin" + "wait" "1" + solid + { + "id" "3800" + side + { + "id" "2928" + "plane" "(232 352 80) (232 416 80) (296 416 80)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2927" + "plane" "(232 416 63) (232 352 63) (296 352 63)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2926" + "plane" "(232 352 63) (232 416 63) (232 416 80)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2925" + "plane" "(296 416 63) (296 352 63) (296 352 80)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2924" + "plane" "(232 416 63) (296 416 63) (296 416 80)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2923" + "plane" "(296 352 63) (232 352 63) (232 352 80)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -7268]" + } +} +entity +{ + "id" "4032" + "classname" "info_teleport_destination" + "angles" "0 0 0" + "targetname" "ventloc_cafe" + "origin" "264 384 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6268]" + } +} +entity +{ + "id" "4114" + "classname" "func_door" + "disablereceiveshadows" "0" + "disableshadows" "0" + "dmg" "0" + "forceclosed" "0" + "health" "0" + "ignoredebris" "0" + "lip" "1" + "locked_sentence" "0" + "loopmovesound" "0" + "movedir" "0 0 0" + "origin" "264 384 59" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "spawnflags" "0" + "spawnpos" "0" + "speed" "1000" + "targetname" "ventdoor_cafe" + "unlocked_sentence" "0" + "wait" "-1" + connections + { + "OnFullyOpen" "ventdoor_cafe,Close,,0,-1" + } + solid + { + "id" "3794" + side + { + "id" "2952" + "plane" "(232 352 63) (232 416 63) (296 416 63)" + "material" "METAL/METALVENT001A" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[1 0 0 -160] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2951" + "plane" "(232 416 55) (232 352 55) (296 352 55)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2950" + "plane" "(232 352 55) (232 416 55) (232 416 63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2949" + "plane" "(296 416 55) (296 352 55) (296 352 63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2948" + "plane" "(232 416 55) (296 416 55) (296 416 63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2947" + "plane" "(296 352 55) (232 352 55) (232 352 63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4458" + "classname" "prop_dynamic" + "angles" "0 0 0" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "MaxAnimTime" "10" + "maxdxlevel" "0" + "MinAnimTime" "5" + "mindxlevel" "0" + "model" "models/props_dock/emergency_button01.mdl" + "modelscale" "1.0" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "targetname" "emergency_button" + "origin" "0 0 96" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "4662" + "classname" "env_fog_controller" + "angles" "0 0 0" + "farz" "-1" + "fogblend" "0" + "fogcolor" "0 0 0" + "fogcolor2" "0 0 0" + "fogdir" "1 0 0" + "fogenable" "1" + "fogend" "500.0" + "foglerptime" "0" + "fogmaxdensity" "1" + "fogstart" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "spawnflags" "0" + "use_angles" "0" + "origin" "0 32 192" + editor + { + "color" "255 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "4699" + "classname" "light_environment" + "_ambient" "200 202 230 60" + "_ambientHDR" "-1 -1 -1 1" + "_AmbientScaleHDR" "1" + "_light" "216 207 194 700" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "angles" "0 0 0" + "pitch" "0" + "SunSpreadAngle" ".5" + "origin" "0 -32 192" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "4775" + "classname" "info_teleport_destination" + "angles" "0 0 0" + "targetname" "ventloc_hall" + "origin" "264 384 144" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6268]" + } +} +entity +{ + "id" "4802" + "classname" "info_teleport_destination" + "angles" "0 0 0" + "targetname" "ventloc_admin" + "origin" "264 384 224" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6268]" + } +} +entity +{ + "id" "4537" + "classname" "trigger_multiple" + "origin" "-0 0 112" + "spawnflags" "1" + "StartDisabled" "0" + "targetname" "trigger_emergencybutton" + "wait" "1" + connections + { + "OnStartTouch" "emergency_button,SetAnimation,open,0.25,-1" + "OnStartTouch" "emergency_button,SetPlaybackRate,1,0,-1" + "OnStartTouch" "emergency_button,SetPlaybackRate,0,1,-1" + "OnEndTouchAll" "emergency_button,SetAnimation,close,0.25,-1" + "OnEndTouchAll" "emergency_button,SetPlaybackRate,1,0,-1" + "OnEndTouchAll" "emergency_button,SetAnimation,idle,1,-1" + } + solid + { + "id" "4533" + side + { + "id" "3006" + "plane" "(-112 112 160) (112 112 160) (112 -112 160)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3005" + "plane" "(-112 -112 64) (112 -112 64) (112 112 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3004" + "plane" "(-112 112 160) (-112 -112 160) (-112 -112 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3003" + "plane" "(112 112 64) (112 -112 64) (112 -112 160)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3002" + "plane" "(112 112 160) (-112 112 160) (-112 112 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3001" + "plane" "(112 -112 64) (-112 -112 64) (-112 -112 160)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordon +{ + "mins" "(-1024 -1024 -1024)" + "maxs" "(1024 1024 1024)" + "active" "0" +}